@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* --- Reset & Global Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

/* --- Popup Promosi Styles --- */

/* Lapisan latar belakang gelap */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;

  /* State awal untuk animasi */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* State saat popup aktif */
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Kotak konten popup */
.popup-content {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  max-width: 500px; /* Lebar maksimum popup */
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  /* State awal untuk animasi */
  transform: scale(0.9);
  transition: transform 0.4s ease;
}

.popup-overlay.show .popup-content {
  transform: scale(1);
}

/* Tombol tutup (close) */
.close-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 35px;
  height: 35px;
  background-color: #333;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.close-btn:hover {
  background-color: #e74c3c;
}

.popup-body {
  padding: 15px;
}

.popup-body img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Tombol CTA di dalam popup */
.popup-cta-btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 15px;
  background-color: #e74c3c; /* Warna merah utama */
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.popup-cta-btn:hover {
  background-color: #c0392b; /* Warna merah lebih gelap saat hover */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Header --- */
.header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #e74c3c; /* Red color */
  margin-top: -50px;
  margin-bottom: -50px;
}

.logo img {
  height: 150px;
  width: 150px;
  margin-right: 10px;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin: 0 20px;
}

.main-nav a {
  font-weight: 500;
  color: #555;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #e74c3c;
}

.header-right {
  display: flex;
  align-items: center;
}

.search-btn,
.menu-toggle {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
  color: #555;
}

.menu-toggle {
  display: none; /* Hidden on desktop */
}

/* --- Global & Container --- */
body {
  font-family: "Poppins", sans-serif; /* Contoh font, bisa disesuaikan */
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Kontainer Utama */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  z-index: 2; /* Pastikan konten di atas background */
}

/* Bentuk Latar Belakang SVG */
.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Agar tidak bisa diklik */
}

/* Konten Hero */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex-basis: 55%;
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

h1 {
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

h1 span {
  display: block;
}

h1 .text-red {
  color: #a11f1f;
}

h1 .text-dark {
  color: #212529;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
}

/* Tombol Aksi */
.action-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.btn {
  padding: 12px 30px;
  border-radius: 50px; /* Membuat bentuk kapsul */
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: #a11f1f;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(161, 31, 31, 0.4);
}

.btn-secondary {
  background-color: white;
  color: #a11f1f;
  border: 2px solid #a11f1f;
}

.btn-secondary:hover {
  background-color: #a11f1f;
  color: white;
  transform: translateY(-3px);
}

/* Info Kontak */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #495057;
}

.contact-info p {
  margin: 0;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #a11f1f;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

/* Placeholder Gambar */
.hero-image-placeholder {
  flex-basis: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-box {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 4 / 3; /* Rasio gambar 4:3 */
  background-color: #e9ecef;
  border: 2px dashed #ced4da;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-weight: 600;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
}

.contact-info {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  font-size: 14px;
  color: #555;
}

.contact-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- BAGIAN BARU & MODIFIKASI GAMBAR --- */

.hero-image {
  flex: 1;
  position: relative; /* Diperlukan untuk memposisikan bentuk abstrak */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bentuk abstrak merah di belakang */
.hero-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #a11f1f;
  /* Membuat bentuk blob/abstrak dengan border-radius */
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  opacity: 0.15; /* Membuatnya sedikit transparan */
  /* Animasi sederhana agar bentuknya bergerak perlahan */
  animation: morph 8s ease-in-out infinite;
  transform: rotate(-10deg);
}

@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Style untuk gambar utama */
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px; /* Memberikan sudut tumpul pada gambar */
  position: relative; /* Memastikan gambar berada di atas bentuk abstrak */
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Opsional: menambah bayangan */
}

.contact-info i {
  color: #e74c3c;
  margin-right: 8px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: 400px;
  width: 400px;
}

/* --- Clients Section --- */
.clients-section {
  background-color: #a11f1f;
  padding: 30px 0;
  color: #fff;
}

.clients-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.client-logo {
  font-size: 24px;
  font-weight: 600;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* About */
/* --- About Section Styles (Tambahkan ini di akhir file style.css) --- */

.about-section {
  padding: 100px 0;
  background-color: #f8f9fa; /* Warna latar belakang sedikit abu-abu */
  position: relative;
  overflow: hidden; /* Untuk menyembunyikan bagian dari elemen dekoratif */
}

/* Elemen dekoratif gradasi di pojok kanan atas */
.about-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: linear-gradient(180deg, #a11f1f, #ba2a1a);
  transform: rotate(45deg);
  z-index: 0;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative; /* Agar konten berada di atas elemen dekoratif */
  z-index: 2;
}

.about-text-content {
  flex: 1.2; /* Beri sedikit lebih banyak ruang untuk teks */
}

.about-text-content h2 {
  font-size: 40px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about-text-content p {
  color: #555;
  margin-bottom: 20px;
}

.quote {
  margin-top: 30px;
  padding-left: 50px;
  position: relative;
  font-style: italic;
  color: #777;
}

.quote .fa-quote-left {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: #a11f1f;
  opacity: 0.2;
}

.about-image-content {
  flex: 1;
}

.image-frame {
  background-color: #fff;
  padding: 15px;
  border-bottom: 15px solid #a11f1f;
  border-right: 15px solid #a11f1f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-frame img {
  width: 100%;
  display: block;
}

.decorative-dots {
  width: 100px;
  height: 50px;
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
  /* Membuat pola titik menggunakan background gradient */
  background-image: radial-gradient(#a11f1f 2px, transparent 2px);
  background-size: 16px 16px;
}

/* service section */
/* --- Services Section Styles (Tambahkan ini di akhir file style.css) --- */

.services-section {
  padding: 100px 0;
  background-color: #fff; /* Latar belakang putih bersih */
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  color: #e74c3c;
  font-weight: 600;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: #a62124;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 kolom */
  gap: 30px;
}

/* --- Flip Card Styles --- */

/* 1. Kontainer utama kartu, mengatur perspektif 3D */
.service-card {
  background-color: transparent;
  height: 280px;
  perspective: 1000px; /* Penting untuk efek 3D */
}

/* 2. Kontainer dalam yang akan melakukan animasi putaran */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d; /* Wajib, agar elemen anak berada di ruang 3D */
}

/* 3. Memicu animasi putaran saat di-hover */
.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* 4. Menata sisi depan dan belakang kartu */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Wajib, untuk menyembunyikan sisi yang membelakangi */
  backface-visibility: hidden;
  border-radius: 8px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 5. Gaya spesifik untuk sisi depan */
.card-front {
  background-color: #a62124; /* Warna biru gelap */
  color: white;
}

/* Gaya untuk kartu yang "featured" (warna merah) */
.card-front.featured {
  background: linear-gradient(145deg, #e74c3c, #c0392b);
}

.card-front i {
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.card-front h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* 6. Gaya spesifik untuk sisi belakang */
.card-back {
  background-color: #2c3e50; /* Fallback jika gambar tidak termuat */
  color: white;
  transform: rotateY(180deg); /* Mulai dalam keadaan terbalik */
  background-size: cover;
  background-position: center;
}

/* banner section */
/* --- CTA Banner Section Styles --- */
.cta-banner-section {
  background-color: #a62124;
  color: #fff;
  padding: 30px 0;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-text h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 600;
}

.cta-contact p {
  margin: 5px 0;
}

.cta-contact i {
  color: #e74c3c;
  margin-right: 10px;
}

.cta-action {
  position: relative;
  width: 250px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
      to right,
      rgba(231, 76, 60, 0.8),
      rgba(192, 57, 43, 0.8)
    ),
    url("https://i.imgur.com/meeting-background.jpg");
  background-size: cover;
  background-position: center;
}

.video-play-button {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #e74c3c;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.video-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
}

/* --- Solution Section Styles --- */
.solution-section {
  padding: 100px 0;
}

.solution-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-image-column {
  flex: 1;
}

.solution-image-wrapper {
  position: relative;
}

.solution-image-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.decorative-dots-top {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  z-index: -1;
  background-image: radial-gradient(#e74c3c 2px, transparent 2px);
  background-size: 16px 16px;
}

.image-quote {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #a62124;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  text-align: center;
  font-style: italic;
  border-left: none;
}

.image-quote footer {
  margin-top: 10px;
  font-style: normal;
  font-weight: 600;
  opacity: 0.8;
}

.solution-text-column {
  flex: 1.1;
  padding-left: 20px;
}

.solution-text-column h2 {
  font-size: 40px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  margin-top: 10px;
}

.feature-list {
  list-style: none;
  margin-top: 30px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  font-size: 24px;
  color: #a62124;
  margin-right: 20px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fbecec;
}

.feature-text h3 {
  font-size: 20px;
  color: #34495e;
  margin-bottom: 5px;
}

/* --- Video Popup Styles --- */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: none; /* Diubah oleh JS */
  justify-content: center;
  align-items: center;
}

.video-popup.show {
  display: flex;
}

.close-video-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.video-popup-inner {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  width: 85%;
  max-width: 960px;
}

.video-popup-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Product */
.product-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h1 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: #e0e0e0;
}

.filter-btn.active {
  background-color: #a62124;
  color: #fff;
  border-color: #a62124;
}

/* Grid Produk */
/* .product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
} */

/* === CSS BARU UNTUK SLIDER PRODUK === */

/* Pastikan slide memiliki tinggi yang konsisten */
.swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  width: 100%; /* Membuat kartu produk mengisi seluruh slide */
}

/* Style untuk tombol navigasi (panah) */
.swiper-button-prev,
.swiper-button-next {
  color: #a62124 !important; /* Warna merah sesuai tema Anda */
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 44px !important;
  height: 44px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Mengatur ukuran ikon panah di dalamnya */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}

/* Style untuk pagination (titik-titik) */
.swiper-pagination-bullet-active {
  background-color: #a62124 !important; /* Warna merah sesuai tema Anda */
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  animation: fadeIn 0.5s;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Container Gambar dan Efek Hover */
.product-image-container {
  position: relative;
  cursor: pointer;
}

.product-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay yang muncul saat hover */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease-in-out;
}

.product-image-container:hover .product-overlay {
  opacity: 1;
  transform: scale(1);
}

.overlay-btn {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.overlay-btn:hover {
  background-color: #c0392b;
}

.overlay-btn.details {
  background-color: #fff;
  color: #333;
}

.overlay-btn.details:hover {
  background-color: #f0f0f0;
}

/* Info Produk */
.product-info {
  padding: 20px;
}

.product-category {
  font-size: 12px;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
}

.product-name {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 5px 0 10px;
}

.product-price {
  font-size: 16px;
  font-weight: 600;
  color: #a62124;
}

/* Detail Product */
/* === CSS UNTUK HALAMAN DETAIL PRODUK === */

.detail-section {
  padding: 60px 0;
  font-family: "Poppins", sans-serif;
}

.detail-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

/* Kolom Kiri (Gambar) */
.detail-left-column {
  flex: 1;
  min-width: 300px;
}

.product-main-image {
  width: 100%;
  border-radius: 8px;
  background-color: #f8f9fa; /* Warna latar jika gambar transparan */
}

/* Kolom Kanan (Info) */
.detail-right-column {
  flex: 1;
  min-width: 300px;
}

.product-category-detail {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.product-name-detail {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 16px;
}

.product-price-detail {
  font-size: 28px;
  font-weight: 600;
  color: #a62124; /* Warna merah tema */
  margin-bottom: 30px;
}

.size-selection {
  margin-bottom: 30px;
}

.size-selection label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.size-selection select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.add-to-cart-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 25px;
  background-color: #2c3e50; /* Warna gelap */
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.add-to-cart-btn:hover {
  background-color: #a62124; /* Warna merah tema saat hover */
}

.product-description h3 {
  font-size: 18px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.product-description p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* portfolio */
/* --- Portfolio Section --- */
.portfolio-section {
  padding: 100px 0;
  background-color: #fff;
}

.portfolio-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Penataan Grid */
.item-large {
  grid-column: 1 / 2;
  grid-row: 1 / 5; /* Memanjang 4 baris */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Konten di bawah */
}

.item-small {
  grid-row: span 2; /* Setiap item kecil memakan 2 baris */
}

.item-highlight {
  grid-column: 2 / 4; /* Memanjang 2 kolom */
  grid-row: 3 / 5; /* Mulai dari baris ke-3, memanjang 2 baris */
  background-color: #a62124;
  color: #fff;
}

/* Konten di dalam kartu */
.portfolio-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #fff;
}

.portfolio-content h3 {
  margin-bottom: 10px;
}

.btn-project {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
}

.portfolio-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: #fff;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
}

.portfolio-caption h4 {
  margin: 0;
  color: #333;
  font-size: 16px;
}

.highlight-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 40px;
}

.project-count {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}
.project-label {
  font-size: 18px;
  margin-bottom: 20px;
}
.project-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.project-link i {
  margin-left: 8px;
}

/* maps */
/* --- Map & Awards Section --- */
.map-awards-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.map-awards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-column iframe {
  width: 100%;
  height: 450px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.awards-column {
  position: relative;
  padding-left: 20px;
}

.awards-column h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.awards-column p {
  color: #555;
  margin-bottom: 30px;
}

.awards-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.award-logo {
  flex: 1;
  min-width: 100px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.award-logo img {
  max-width: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.award-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- Penyesuaian Responsif untuk Bagian Baru --- */

@media (max-width: 992px) {
  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .item-large {
    grid-column: 1 / 3;
    grid-row: span 2;
  }
  .item-highlight {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  /* Map & Awards */
  .map-awards-container {
    grid-template-columns: 1fr;
  }
}

/* footer */
/* --- Footer Styles --- */
.site-footer {
  background-color: #a62124;
  color: #bdc3c7; /* Warna teks abu-abu terang */
  padding-top: 80px;
  font-size: 15px;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #4a627a; /* Garis pemisah */
}

.footer-column {
  flex: 1;
  min-width: 220px; /* Lebar minimum sebelum kolom turun baris */
}

.footer-column h4 {
  color: #fff;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-column p {
  line-height: 1.7;
}

.footer-about .footer-logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

.footer-about .footer-logo img {
  height: 35px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* Membuat logo jadi putih jika aslinya berwarna */
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  background-color: #4a627a;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #e74c3c; /* Warna merah saat hover */
}

.footer-contact .view-map {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 10px;
}

.links-wrapper {
  display: flex;
  gap: 40px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Menggunakan kembali style tombol dari section sebelumnya */
.footer-schedule .btn-primary {
  margin-top: 15px;
  display: inline-block;
  text-decoration: none;
}

/* Bagian bawah footer */
.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  color: #95a5a6;
}

/* Services */
/* --- Services Page Styles --- */

.page-hero {
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
}

.page-hero .subtitle {
  font-weight: 600;
  letter-spacing: 1px;
}

.page-hero h1 {
  font-size: 48px;
  max-width: 800px;
  margin: 10px auto 0;
}

.services-hero {
  background-image: linear-gradient(
      rgba(249, 58, 37, 0.85),
      rgba(151, 22, 8, 0.85)
    ),
    url("https://i.imgur.com/your-chart-background.jpg"); /* Ganti dengan gambar chart Anda */
  background-size: cover;
  background-position: center;
}

.services-content-section {
  padding: 100px 0;
  background-color: #fff;
}

.services-content-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.services-left-col {
  position: relative;
}

.decorative-dots-services {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  z-index: 0;
  background-image: radial-gradient(#a62124 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.5;
}

.image-frame-services {
  border-left: 10px solid #a62124;
  border-bottom: 10px solid #a62124;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.image-frame-services img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.services-quote {
  background-color: #a62124;
  color: #fff;
  padding: 30px 30px 30px 60px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  border-radius: 8px;
  width: 90%;
}

.services-quote .fa-quote-left {
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 24px;
  opacity: 0.5;
}

.services-right-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-box {
  border-radius: 8px;
  padding: 30px;
  color: #fff;
}

.download-box {
  background-color: #a62124;
  display: flex;
  align-items: center;
  gap: 20px;
}

.download-box .fa-file-alt {
  font-size: 40px;
  opacity: 0.8;
}

.download-box .subtitle {
  font-size: 14px;
  opacity: 0.9;
}

.download-box h3 {
  margin: 5px 0 10px;
}

.download-box a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-box {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200"); /* Ganti dengan gambar gedung Anda */
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.info-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.85);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-box .fa-comments {
  font-size: 32px;
  margin-bottom: 15px;
}
.contact-box h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
.contact-box .contact-detail {
  margin: 5px 0;
}

/* service grid */
/* --- Services Grid Section Styles --- */
.services-grid-section {
  padding: 100px 0;
  background-color: #f8f9fa; /* Warna latar sedikit abu-abu */
}

.services-grid-section .section-header h2 {
  font-size: 36px;
  color: #2c3e50;
  max-width: 500px; /* Batasi lebar judul jika terlalu panjang */
  margin-left: auto;
  margin-right: auto;
}

.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.service-card-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card-item .card-image img {
  width: 100%;
  height: 200px; /* Beri tinggi yang sama untuk semua gambar */
  object-fit: cover; /* Agar gambar tidak gepeng */
  display: block;
}

.service-card-item .card-content {
  padding: 25px;
}

.service-card-item .card-content h3 {
  font-size: 20px;
  color: #2c3e50;
  margin: 0 0 10px;
}

.service-card-item .card-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-link {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.read-more-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.read-more-link:hover i {
  transform: translateX(5px);
}

/* process section */
/* --- Process Section Styles --- */
.process-section {
  padding: 80px 0;
  background-color: #34495e; /* Warna biru gelap */
  background-image: linear-gradient(
      rgba(237, 47, 47, 0.95),
      rgba(135, 19, 19, 0.95)
    ),
    url("https://i.imgur.com/your-office-background.jpg"); /* Ganti dengan gambar latar Anda */
  background-size: cover;
  background-position: center;
  color: #fff;
}

.process-section .section-header h2 {
  color: #fff;
}

.process-steps-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  text-align: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  background-color: #e74c3c;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step p {
  color: #bdc3c7;
  font-size: 15px;
  line-height: 1.7;
}

.arrow-wrapper {
  flex-shrink: 0;
  margin-top: 30px;
}

/* --- Testimonial Section Styles --- */
.testimonial-section {
  padding: 100px 0;
  background-color: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  position: relative; /* Wajib untuk animasi */
  overflow: hidden; /* Wajib untuk animasi */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Kotak merah untuk animasi hover */
.card-bg-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0; /* Awalnya tinggi 0 (tidak terlihat) */
  background-color: #a62124;
  z-index: 1;
  transition: height 0.5s ease-in-out; /* Animasi naik dari bawah */
}

/* Konten testimonial */
.testimonial-content {
  position: relative; /* Agar selalu di atas background */
  z-index: 2;
  transition: color 0.5s ease;
}

.quote-icon {
  font-size: 48px;
  color: #e74c3c;
  opacity: 0.2;
  transition: color 0.5s ease;
}

.client-logo {
  max-height: 40px;
  margin: 20px 0;
  transition: filter 0.5s ease;
}

.testimonial-card hr {
  border: 0;
  height: 1px;
  background-color: #eee;
  margin: 25px 0;
  transition: background-color 0.5s ease;
}

.testimonial-card h4 {
  margin: 0;
  font-size: 16px;
}

/* Efek saat hover pada kartu testimonial */
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.2);
}

.testimonial-card:hover .card-bg-hover {
  height: 100%; /* Saat dihover, tinggi menjadi 100% */
}

.testimonial-card:hover .testimonial-content,
.testimonial-card:hover .testimonial-content h4 {
  color: #fff; /* Ubah warna teks jadi putih */
}

.testimonial-card:hover .quote-icon {
  color: #fff;
  opacity: 0.5;
}

.testimonial-card:hover .client-logo {
  filter: brightness(0) invert(1); /* Ubah logo jadi putih */
}

.testimonial-card:hover hr {
  background-color: rgba(255, 255, 255, 0.3);
}

/* contact */
/* --- Contact Page Styles --- */

/* Hero Section untuk Halaman Kontak */
.contact-hero {
  /* Menggunakan kembali style dari .services-hero */
  background-image: linear-gradient(
      rgba(238, 26, 26, 0.85),
      rgba(146, 8, 8, 0.9)
    ),
    url("https://i.imgur.com/your-chart-background.jpg"); /* Ganti dengan gambar latar Anda */
}

/* Bagian Info Kontak */
.contact-info-section {
  padding: 100px 0;
  background-color: #fff;
}

.contact-info-section .section-header p {
  max-width: 600px;
  margin: 15px auto 0;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.contact-card {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 50px 30px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.contact-card.highlighted {
  border: 2px solid #e74c3c;
}

.card-icon {
  font-size: 36px;
  color: #e74c3c;
  margin-bottom: 25px;
}

.contact-card h3 {
  font-size: 22px;
  color: #2c3e50;
  margin: 0 0 15px;
}

.contact-card p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* tracking */
/* --- Tracking Page Styles --- */
.tracking-section {
  padding: 100px 0;
  background-color: #fff;
  border-top: 4px solid #e74c3c; /* Garis merah di atas */
}

.tracking-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tracking-form-col h2 {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.tracking-form-col p {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group input[type="text"] {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="text"]:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.tracking-form-col .btn-primary {
  padding: 14px 40px;
  font-size: 16px;
}

.tracking-image-col img {
  max-width: 100%;
  height: auto;
}

/* portfolio */
/* --- Portfolio Page Layout Styles --- */
.portfolio-page-wrapper {
  display: flex;
}

.portfolio-sidebar {
  width: 260px;
  height: 100vh; /* Tinggi penuh layar */
  position: fixed; /* Tetap di posisi saat scroll */
  top: 0;
  left: 0;
  background-color: #fff;
  border-right: 1px solid #f0f0f0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001; /* Di atas konten lain */
}

.sidebar-logo img {
  max-width: 100px;
  margin-bottom: 40px;
}

.portfolio-categories ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-categories a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #555;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.portfolio-categories a:hover {
  background-color: #f8f9fa;
  color: #000;
}

.portfolio-categories a.active {
  background-color: #fbecec;
  color: #e74c3c;
}

.sidebar-bottom .back-to-main {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-decoration: none;
}

.social-links-sidebar {
  display: flex;
  gap: 15px;
}
.social-links-sidebar a {
  color: #888;
  font-size: 18px;
}

/* Konten Utama Portfolio */
.portfolio-main-content {
  /* Beri margin kiri seukuran lebar sidebar */
  margin-left: 260px;
  /* Lebar sisa */
  width: calc(100% - 260px);
  padding: 40px;
}

.portfolio-item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-grid-item {
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: block; /* Untuk filter */
  animation: fadeIn 0.5s;
}

.portfolio-grid-item img {
  width: 100%;
  display: block;
}

.item-caption {
  padding: 20px;
  background-color: #fff;
}
.item-caption h4 {
  margin: 0;
  color: #333;
}

/* Tombol Promo Melayang (FAB) */
.promo-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #e74c3c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
  z-index: 1002;
}

/* --- Penyesuaian Responsif untuk Halaman Portfolio --- */
@media (max-width: 992px) {
  .portfolio-page-wrapper {
    flex-direction: column; /* Ubah layout jadi vertikal */
  }

  .portfolio-sidebar {
    position: relative; /* Hapus 'fixed' */
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .portfolio-main-content {
    margin-left: 0; /* Hapus margin */
    width: 100%;
  }
}

@media (max-width: 768px) {
  .portfolio-item-grid {
    grid-template-columns: 1fr; /* 1 kolom di mobile */
  }
}

/* --- Penyesuaian Responsif untuk Halaman Tracking --- */
@media (max-width: 992px) {
  .tracking-container {
    grid-template-columns: 1fr;
  }

  .tracking-image-col {
    order: -1; /* Pindahkan gambar ke atas di layar kecil */
    margin-bottom: 50px;
  }
}

/* --- Penyesuaian Responsif untuk Halaman Kontak --- */
@media (max-width: 992px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Penyesuaian Responsif --- */
@media (max-width: 992px) {
  .arrow-wrapper {
    display: none;
  } /* Sembunyikan panah di tablet & mobile */
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Penyesuaian Responsif untuk Grid Layanan --- */
@media (max-width: 992px) {
  /* Ubah grid menjadi 2 kolom di layar tablet */
  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Ubah grid menjadi 1 kolom di layar mobile */
  .services-grid-container {
    grid-template-columns: 1fr;
  }
}

/* --- Penyesuaian Responsif untuk Halaman Layanan --- */
@media (max-width: 992px) {
  .services-content-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr; /* Semua jadi 1 kolom */
  }
  .item-large,
  .item-small,
  .item-highlight {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
  }
}

/* --- Penyesuaian Responsif untuk Services Section --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet */
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr; /* 1 kolom di mobile */
  }
}

/* --- Penyesuaian Responsif untuk About Section --- */

@media (max-width: 992px) {
  .about-section::before {
    /* Sembunyikan atau kecilkan elemen dekoratif pada tablet */
    display: none;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text-content {
    order: 2; /* Teks muncul di bawah gambar */
  }

  .about-image-content {
    order: 1; /* Gambar muncul di atas teks */
    width: 80%; /* Agar gambar tidak terlalu besar */
    margin-bottom: 40px;
  }

  .quote {
    padding-left: 0;
    text-align: center;
  }

  .quote .fa-quote-left {
    position: static; /* Kembalikan posisi ikon kutipan */
    display: block;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .about-text-content h2 {
    font-size: 32px;
  }
  .about-image-content {
    width: 100%; /* Gunakan lebar penuh pada mobile */
  }
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .hero-text h1 {
    font-size: 42px;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    order: 2;
  }
  .hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  .hero-buttons,
  .contact-info {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none; /* Hide nav on mobile */
    position: absolute;
    top: 70px; /* Height of header */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .main-nav.active {
    display: block; /* Show nav when active */
  }
  .main-nav ul {
    flex-direction: column;
  }
  .main-nav li {
    text-align: center;
    margin: 0;
  }
  .main-nav a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  .menu-toggle {
    display: block; /* Show hamburger icon */
  }

  .clients-container {
    flex-wrap: wrap;
    gap: 20px;
  }
  .client-logo {
    flex-basis: 40%;
    justify-content: center;
  }
}

/* cta-container */
@media (max-width: 768px) {
  .cta-container {
    /* Mengubah susunan dari horizontal ke vertikal */
    flex-direction: column;

    /* Memberi jarak antar elemen agar tidak terlalu rapat */
    gap: 25px;

    /* Membuat semua teks di dalamnya menjadi rata tengah agar rapi */
    text-align: center;
  }

  /* Sedikit menyesuaikan ukuran font judul agar tidak terlalu besar di HP */
  .cta-text h2 {
    font-size: 24px;
  }

  /* PENTING: Membuat area tombol play menjadi fleksibel */
  .cta-action {
    /* Menghapus lebar tetap yang mungkin ada dari style desktop */
    width: auto;
    /* Memberi padding agar terlihat seimbang */
    padding: 20px;
    /* Menjaga tinggi minimum */
    min-height: 100px;
  }
}

/* solution container */
@media (max-width: 768px) {
  /* Pastikan kontainer utama tersusun vertikal */
  .solution-container {
    flex-direction: column;
    gap: 0; /* Jarak diatur per elemen */
  }

  /* Beri jarak bawah pada kolom gambar agar tidak terlalu dekat dengan teks fitur */
  .solution-image-column {
    margin-bottom: 80px; /* Jarak ini memberi ruang untuk kutipan */
  }

  /* KUNCI PERBAIKAN: Mengatur ulang posisi kutipan */
  .image-quote {
    /* 1. Kembalikan posisi ke alur normal dokumen */
    position: relative;

    /* 2. Hapus semua offset dari style desktop */
    bottom: auto;
    left: auto;
    transform: none;

    /* 3. Atur agar rapi di posisi barunya */
    width: 100%; /* Gunakan lebar penuh */
    margin-top: 25px; /* Beri jarak dari gambar di atasnya */
  }

  /* Menghapus padding tambahan di kolom teks agar rata */
  .solution-text-column {
    padding-left: 0;
  }
}
