/* ================= ROOT & RESET ================= */
:root {
  --primary: #000926;
  --secondary: #0F52BA;
  --accent: #A6C5D7;
  --light: #D6E6F3;
  --dark: #000926;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: #fff;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ================= GLOBAL ================= */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.container {
  width: 1200px;
  max-width: 92%;
  margin: auto;
}

.center { text-align: center; }

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.btn {
  background: var(--accent);
  color: var(--dark);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
  transition: .35s ease;
}

.btn:hover {
  transform: translateY(-4px);
  background: #8fb6cf;
}

/* ================= PATTERN ================= */
.pattern-overlay {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}

.blur-pattern {
  filter: blur(4px);
  opacity: .08;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ================= SLIDER ================= */
.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
}

/* ================= OVERLAY ================= */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,9,38,.75),
    rgba(15,82,186,.65),
    rgba(0,9,38,.85)
  );
  z-index: 2;

  pointer-events: none; /* 🔥 KUNCI AGAR NAVBAR BISA DIKLIK */
}

/* isi content bacround */
/* ================= HERO CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 5; /* di atas overlay & slider */
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #ffffff;

  padding: 0 24px;
}

/* ================= TITLE ================= */
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 32px;

  text-shadow:
    0 6px 30px rgba(0,0,0,.45);
}

.hero-content h1 span {
  display: inline-block;
  margin-top: 10px;

  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: .5px;

  color: #A6C5D7;
}

/* ================= EXPERIENCE ================= */
.hero-exp {
  margin-top: 20px;

  display: flex;
  align-items: center;
  gap: 18px;

  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 14px 22px;
  border-radius: 999px;

  box-shadow:
    0 10px 30px rgba(0,0,0,.25);
}

/* ================= AVATARS ================= */
.avatars {
  display: flex;
  align-items: center;
}

.avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid #ffffff;
  margin-left: -14px;

  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

.avatars img:first-child {
  margin-left: 0;
}

/* ================= TEXT EXPERIENCE ================= */
.hero-exp strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .3px;
}

.hero-exp p {
  font-size: 13px;
  opacity: .9;
  margin-top: 2px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content h1 span {
    font-size: 34px;
  }

  .hero-exp {
    flex-direction: column;
    gap: 10px;
    padding: 16px 22px;
  }
}


/* ================= NAVBAR ================= */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar-inner {
  max-width: 1400px;
  margin: 24px auto;
  padding: 16px 36px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
}

/* LOGO */
.logo {
  background: #fff;
  padding: 10px 16px;
  border-radius: 14px;
}

.logo img {
  height: 44px;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-menu a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  position: relative;
    font-size: 20px;        /* ⬅️ INI YANG MEMPERBESAR */
  letter-spacing: 0.5px; /* opsional, biar lebih elegan */
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #A6C5D7;
  border-radius: 4px;
  transform: translateX(-50%);
  transition: .3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* BUTTON */
.btn-nav {
  background: linear-gradient(135deg, #A6C5D7, #0F52BA);
  padding: 10px 18px;
  border-radius: 12px;
  color: #000926 !important;
}

/* ================= HERO CONTENT ================= */
.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1.15;
}

.hero h1 span {
  color: #A6C5D7;
}

/* ================= SCROLL OFFSET ================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

/* ================= ABOUT ================= */
.about-left,
.about-center,
.about-right {
  opacity: 0;
  transition: 
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ARAH ANIMASI */
.about-left {
  transform: translateX(80px);   /* kanan → kiri */
}

.about-center {
  transform: translateY(80px);   /* bawah → atas */
}

.about-right {
  transform: translateX(-80px);  /* kiri → kanan */
}

/* STATE AKTIF (SETELAH MASUK VIEWPORT) */
.about.animate-active .about-left,
.about.animate-active .about-center,
.about.animate-active .about-right {
  opacity: 1;
  transform: translate(0, 0);
}

/* DELAY BERTAHAP (SEPERTI VIDEO) */
.about.animate-active .about-left {
  transition-delay: 0s;
}

.about.animate-active .about-center {
  transition-delay: 0.15s;
}

.about.animate-active .about-right {
  transition-delay: 0.3s;
}

.about {
  background: #fff;
  position: relative;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.about-left h2 {
  font-size: 44px;
  line-height: 1.2;
  margin: 15px 0 30px;
}

.about-features {
  list-style: none;
  margin-bottom: 40px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
}

.about-features .icon {
  width: 38px;
  height: 38px;
  background: rgba(10,143,136,0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

/* CTA CARD */
.about-cta {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  padding: 30px;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-cta h3 {
  font-size: 22px;
  line-height: 1.3;
}

.btn-circle {
  width: 52px;
  height: 52px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: bold;
}

/* CENTER IMAGE */
.about-center img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
}

/* RIGHT */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* VIDEO CARD */
.about-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.about-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  background: #ffc107;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  z-index: 5;
}


/* PROGRESS CARD */
.about-progress-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.about-progress-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.progress-item {
  margin-bottom: 18px;
}

.progress-item span {
  font-size: 14px;
  display: block;
  margin-bottom: 6px;
}

.progress-bar {
  background: #eee;
  border-radius: 20px;
  overflow: hidden;
}

.progress-fill {
  background: var(--secondary);
  color: #fff;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-center img {
    height: 380px;
  }
}

/* ================= SERVICES ================= */
.services {
  background: var(--light); /* Ice Blue */
  position: relative;
}

.services-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.3;
  margin: 15px 0 70px;
  color: var(--primary); /* Deep Navy */
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.service-box {
  background: linear-gradient(
    180deg,
    var(--secondary), /* Sapphire */
    var(--primary)    /* Deep Navy */
  );
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: 0 30px 60px rgba(0,9,38,.25);

  /* ANIMASI AWAL */
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.9s cubic-bezier(.22,1,.36,1);
}

/* AKTIF */
.service-box.active {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.service-head {
  padding: 40px 35px 25px;
  text-align: center;
}

.service-head h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-head p {
  font-size: 16px;
  opacity: 0.9;
  color: var(--light); /* Ice Blue */
}

/* IMAGE */
.service-image {
  height: 260px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BUTTON */
.service-btn {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent); /* Powder Blue */
  color: var(--primary);     /* Deep Navy */
  padding: 14px 34px;
  border-radius: 12px;
  font-weight: 600;
  transition: .3s ease;
}

.service-btn:hover {
  background: #8fb6cf; /* Powder Blue lebih gelap */
  transform: translateX(-50%) translateY(-4px);
}

/* DELAY */
.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 30px;
  }
}


/* ================= HOW WE WORK ================= */
.how-work {
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* GRID */
.how-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ================= LEFT TEXT ================= */
.how-text h2 {
  font-size: 42px;
  line-height: 1.25;
  margin: 20px 0 40px;
}

/* STEPS WRAPPER */
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* STEP ITEM */
.how-step {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* ICON + LINE */
.step-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border: 2px solid var(--secondary);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

.step-line {
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: var(--secondary);
  opacity: 0.3;
}

/* STEP CONTENT */
.step-content .step-number {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 26px;
  text-align: center;
  margin-bottom: 8px;
}

.step-content h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 16px;
  opacity: 0.85;
}

/* ================= RIGHT IMAGES ================= */
.how-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.how-img {
  border-radius: 22px;
  overflow: hidden;
  background: #eee;
}

.how-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* IMAGE SIZE */
.how-img.big {
  grid-column: span 2;
  height: 320px;
}

.how-img.small {
  height: 220px;
}

/* ================= ANIMATION ================= */
/* TEXT: kanan ke kiri */
.animate-how-text {
  opacity: 0;
  transform: translateX(80px);
  transition: 1s ease;
}

.animate-how-text.active {
  opacity: 1;
  transform: translateX(0);
}

/* IMAGES: timbul dari dalam */
.animate-how-images .how-img {
  opacity: 0;
  transform: scale(0.9);
  transition: 1s ease;
}

.animate-how-images.active .how-img {
  opacity: 1;
  transform: scale(1);
}

/* DELAY */
.animate-how-images.active .how-img:nth-child(1) {
  transition-delay: 0.2s;
}
.animate-how-images.active .how-img:nth-child(2) {
  transition-delay: 0.4s;
}
.animate-how-images.active .how-img:nth-child(3) {
  transition-delay: 0.6s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-text h2 {
    font-size: 32px;
  }

  .how-img.big {
    height: 260px;
  }
}

/* ===== ANIMATION STATES ===== */
.animate-how-text {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s ease;
}

.animate-how-text.active {
  opacity: 1;
  transform: translateX(0);
}

.animate-how-images.active .how-img {
  opacity: 1;
  transform: scale(1);
}

.animate-how-images.active .how-img:nth-child(1) {
  transition-delay: .1s;
}
.animate-how-images.active .how-img:nth-child(2) {
  transition-delay: .25s;
}
.animate-how-images.active .how-img:nth-child(3) {
  transition-delay: .4s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

  .how-text h2 {
    font-size: 30px;
  }
}

/* ================= PACKAGES ================= */
.packages {
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #D6E6F3 100%);
}

.section-label {
  display: block;
  text-align: center;
  color: #0F52BA;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.packages h2 {
  text-align: center;
  margin: 0 0 90px;
  font-size: 36px;
  line-height: 1.3;
  color: #000926;
}

/* ================= WRAPPER (KUNCI SEJAJAR) ================= */
.packages-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; /* 🔥 KUNCI UTAMA */
}

/* ================= CARD BASE ================= */
.package-card {
  border-radius: 28px;
  box-sizing: border-box;
}

/* ================= CENTER CARD ================= */
.package-card.featured {
  position: relative;
  width: 400px;
  padding: 56px 52px;
  border-radius: 30px;

  background: linear-gradient(180deg, #0F52BA 0%, #000926 100%);
  color: #ffffff;

  box-shadow:
    0 45px 120px rgba(15,82,186,.45),
    0 10px 30px rgba(0,0,0,.25);

  z-index: 5;
}

/* Badge */
.package-card.featured::before {
  content: "⭐ Paling Populer";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #A6C5D7;
  color: #000926;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}

/* Glow */
.package-card.featured::after {
  content: "";
  position: absolute;
  inset: -28px;
  background: radial-gradient(
    circle at center,
    rgba(15,82,186,.35),
    transparent 70%
  );
  filter: blur(32px);
  z-index: -1;
}

/* ================= SIDE CARDS (AWAL DI TENGAH) ================= */
.package-card.side {
  position: absolute;
  top: 50%; /* 🔥 KUNCI SEJAJAR */
  left: 50%;
  transform: translate(-50%, -50%) scale(.88);

  width: 360px;
  padding: 48px 44px;
  border-radius: 26px;

  background: #ffffff;
  color: #000926;

  box-shadow:
    0 30px 70px rgba(0,0,0,.12),
    0 8px 18px rgba(0,0,0,.06);

  opacity: 0;

  transition:
    transform .9s cubic-bezier(.22,1,.36,1),
    opacity .6s ease,
    box-shadow .3s ease;
}

/* ================= POSISI FINAL (SEJAJAR 100%) ================= */
.package-card.side.left.show {
  opacity: 1;
  transform: translate(calc(-50% - 460px), -50%) scale(1);
}

.package-card.side.right.show {
  opacity: 1;
  transform: translate(calc(-50% + 460px), -50%) scale(1);
}

/* ================= CONTENT ================= */
.package-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.package-card .desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
  margin-bottom: 28px;
}

/* PRICE */
.price {
  margin-bottom: 32px;
}

.price .amount {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1px;
}

.price .unit {
  font-size: 14px;
  opacity: .75;
}

/* BENEFITS */
.benefits {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  padding: 10px 0;
}

/* ================= BUTTON ================= */
.btn-primary {
  margin-top: 24px;
  width: 100%;
  padding: 15px 18px;
  border-radius: 16px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #A6C5D7, #8fb6cf);
  color: #000926;
  font-weight: 700;

  box-shadow: 0 10px 25px rgba(166,197,215,.55);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(166,197,215,.65);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .packages-wrapper {
    flex-direction: column;
  }

  .package-card.side {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    opacity: 1 !important;
    margin-top: 28px;
    width: 100%;
    max-width: 420px;
  }

  .package-card.featured {
    width: 100%;
    max-width: 420px;
  }
}





/* ================= TESTIMONIAL ================= */
.testimonial-section {
  position: relative;
  padding: 120px 0;

  /* FOTO KA'BAH */
  background: url("https://images.unsplash.com/photo-1548013146-72479768bada?q=80&w=2000")
    center / cover no-repeat;

  color: #fff;

  overflow: hidden; /* ⬅️ WAJIB: stop background tembus */
}

/* OVERLAY */
.testimonial-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(0, 9, 38, 0.95),   /* Deep Navy */
    rgba(15, 82, 186, 0.75), /* Sapphire */
    rgba(166, 197, 215, 0.35) /* Powder Blue */
  );
}


/* CONTAINER */
.testimonial-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT TEXT */
.testimonial-label {
  color: #facc15;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial-text h2 {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0;
}

.testimonial-text p {
  max-width: 420px;
  opacity: 0.9;
}

/* ================= CARD ================= */
.testimonial-card-wrapper {
  position: relative;

  min-height: 320px; /* ⬅️ KUNCI TINGGI SECTION */
}

.testimonial-card {
  background: #fff;
  color: #222;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);

  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;

  position: absolute;
  inset: 0;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
}

/* STARS */
.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 15px;
}

/* PROFILE */
.profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.profile img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.profile h4 {
  margin: 0;
}

.profile span {
  font-size: 14px;
  color: #666;
}

/* DOTS */
.dots {
  display: flex;
  gap: 8px;
  margin-top: 25px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
}

.dot.active {
  background: #0f766e;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .testimonial-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-text p {
    margin: auto;
  }

  .testimonial-card-wrapper {
    min-height: 360px;
  }
}

/* ================= FAQ ================= */
.faq-section {
  position: relative;
  padding: 140px 0;
  background: #f8faf9;
  overflow: hidden; /* ⬅️ KUNCI PEMISAH */
}

/* ISLAMIC PATTERN BACKGROUND */
.faq-pattern {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
  opacity: 0.05;
  z-index: 1;
}

/* CONTAINER */
.faq-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

/* LABEL */
.faq-label {
  color: #0f3576;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* TITLE */
.faq-title {
  font-size: 42px;
  margin: 15px 0 40px;
}

/* ================= TABS ================= */
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 10px 22px;
  border-radius: 12px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  cursor: pointer;
  font-weight: 500;
}

.faq-tab.active {
  background: hsl(216, 73%, 57%);
  color: #fff;
}

/* ================= FAQ ITEMS ================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,.08);

  opacity: 0;
  transform: translateY(30px);
  transition: .5s ease;
}

.animate-faq .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  transition: transform .3s ease;
}

/* ANSWER */
.faq-answer {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  display: none;
  color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .faq-title {
    font-size: 34px;
  }
}
/* ================= CONTACT SECTION ================= */
.contact-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #D6E6F3 100%
  );
}

/* ================= BACKGROUND IMAGE ================= */
.contact-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1548013146-72479768bada?q=80&w=2000")
    center / cover no-repeat;
  z-index: 0;
}

/* ================= OVERLAY (BLUE GRADIENT) ================= */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.96) 0%,
    rgba(214,230,243,0.88) 45%,
    rgba(15,82,186,0.55) 100%
  );
  z-index: 1;
}

/* ================= CONTAINER ================= */
.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* ================= LEFT INFO ================= */
.contact-label {
  display: inline-block;
  color: #0F52BA;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.contact-info h2 {
  font-size: 46px;
  line-height: 1.25;
  margin-bottom: 18px;
  color: #000926;
}

.contact-info p {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

/* ================= CONTACT DETAILS ================= */
.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 44px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-details .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  background: linear-gradient(
    135deg,
    #A6C5D7,
    #0F52BA
  );
  color: #ffffff;
  font-size: 20px;

  box-shadow: 0 10px 25px rgba(15,82,186,.35);
}

/* ================= FORM WRAPPER ================= */
.contact-form-wrapper {
  position: relative;
  z-index: 5;

  background: linear-gradient(
    180deg,
    #0F52BA,
    #000926
  );
  padding: 44px;
  border-radius: 26px;

  box-shadow:
    0 40px 100px rgba(15,82,186,.45),
    0 10px 30px rgba(0,0,0,.25);

  transform: translateX(120px);
  opacity: 0;
  transition:
    transform .8s cubic-bezier(.22,1,.36,1),
    opacity .8s ease;
}

/* ================= ANIMATION ACTIVE ================= */
.animate-contact.active .contact-form-wrapper {
  transform: translateX(0);
  opacity: 1;
}

/* ================= FORM ================= */
.contact-form label {
  display: block;
  color: #E0F2FE;
  font-size: 14px;
  font-weight: 500;
  margin-top: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;

  background: #ffffff;
  color: #000926;
  font-size: 15px;

  box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* ================= FORM ROW ================= */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================= SUBMIT BUTTON ================= */
.btn-submit {
  margin-top: 28px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 14px;
  border: none;
  cursor: pointer;

  background: linear-gradient(
    135deg,
    #A6C5D7,
    #8fb6cf
  );
  color: #000926;
  font-weight: 700;
  font-size: 16px;

  box-shadow: 0 12px 30px rgba(166,197,215,.55);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(166,197,215,.65);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info h2 {
    font-size: 34px;
  }

  .contact-form-wrapper {
    transform: none;
    opacity: 1;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    transform: none;
    opacity: 1;
  }

  .contact-overlay {
    background: rgba(15,118,110,0.85);
  }
}

/* ================= FOOTER ================= */
footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .navbar { padding: 20px 30px; }
  .hero h1 { font-size: 48px; }
  .about-layout,
  .services-grid,
  .packages-wrapper {
    grid-template-columns: 1fr;
  }
}
