/* ==========================================================================
   Luxway Travel — Design System
   Navy + Gold (luxury) / WhatsApp Green (primary conversion action)
   ========================================================================== */

:root {
  --navy-950: #0a0f1c;
  --navy-900: #0d1526;
  --navy-800: #131d33;
  --navy-700: #1b2743;
  --gold-500: #c9a24d;
  --gold-400: #d9b866;
  --gold-100: #f6ecd3;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --white: #ffffff;
  --off-white: #f8f6f1;
  --ink-900: #12161f;
  --ink-700: #3d4552;
  --ink-500: #6b7280;
  --ink-300: #b7bec8;
  --line: #e7e4db;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 8px 26px rgba(13, 21, 38, 0.07);
  --shadow-strong: 0 24px 60px rgba(13, 21, 38, 0.18);
  --shadow-gold: 0 10px 30px rgba(201, 162, 77, 0.28);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy-900);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 76px 0;
}

.section-tight { padding: 48px 0; }

@media (max-width: 720px) {
  .section { padding: 52px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}

.eyebrow-plain::before {
  content: none;
  display: none;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-500);
  font-size: 16.5px;
}

.section-head.align-left {
  margin: 0 0 40px;
  text-align: left;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15.5px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}

.btn-outline-dark:hover {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}

.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 16.5px; }

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo .mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.logo .accent { color: var(--gold-400); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-desktop a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-desktop a:hover { color: var(--white); }
.nav-desktop a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.lang-switch a {
  padding: 5px 9px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.lang-switch a.active {
  color: var(--navy-950);
  background: var(--gold-400);
}

.lang-switch a:not(.active):hover { color: var(--white); }

.header-call {
  display: none;
}

.burger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .burger { display: flex; }
}

@media (max-width: 560px) {
  .header-inner {
    height: 60px;
  }

  .header-actions .btn-whatsapp {
    display: none;
  }

  .logo {
    font-size: 20px;
    gap: 6px;
  }

  .logo .mark {
    width: 35px;
    height: 35px;
  }

  .lang-switch a {
    padding: 6px 8px;
  }

  .lang-switch .lang-label {
    display: none;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  padding: 24px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-nav-close { color: var(--white); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }

.mobile-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 26px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav .btn-whatsapp { margin-top: 28px; }

.mobile-nav-lang {
  margin-top: auto;
  display: flex;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ---------- Hero ---------- */

.hero {
  background-image:
    linear-gradient(180deg, rgba(10, 15, 28, 0.7) 0%, rgba(10, 15, 28, 0.52) 45%, rgba(10, 15, 28, 0.8) 100%),
    url("/images/hero-mosque.jpg");
  background-size: cover, cover;
  background-position: center, 44% 45%;
  background-repeat: no-repeat, no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
}

@media (max-width: 720px) {
  .hero {
    background-image: none;
    background-color: var(--navy-950);
  }

  .hero {
    padding-bottom: 24px;
  }

  .hero-text {
    margin: -56px -20px 0;
    padding: 14px 20px 10px;
    min-height: 340px;
    background-image:
      linear-gradient(180deg, rgba(10, 15, 28, 0.6) 0%, rgba(10, 15, 28, 0.38) 40%, rgba(10, 15, 28, 0.9) 100%),
      url("/images/hero-mosque-mobile.jpg");
    background-size: cover, cover;
    background-position: center, 42% 35%;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-badge { margin-bottom: 10px; }
  .hero h1 { font-size: 28px; margin-bottom: 10px; }
  .hero-sub { margin-bottom: 14px; }
  .hero-cta-row { margin-bottom: 4px; gap: 10px; }

  .hero-cta-row .btn {
    padding: 12px 22px;
    font-size: 14.5px;
  }

  .hero-cta-row .btn-whatsapp {
    background: transparent;
    color: var(--whatsapp);
    border: 1.5px solid var(--whatsapp);
    box-shadow: none;
  }

  .hero-cta-row .btn-whatsapp:hover {
    background: rgba(37, 211, 102, 0.14);
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,77,0.18), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 18px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-100);
  margin-bottom: 22px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.hero h1 {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 54px);
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 620px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-400);
}

.hero-sub {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 30px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.hero-trust svg { color: var(--gold-400); flex-shrink: 0; }

/* Booking form card */

.book-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-strong);
  position: relative;
}

.book-card-head { margin-bottom: 18px; }

.book-card-head h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.book-card-head p {
  color: var(--ink-500);
  font-size: 14px;
}

.book-card-head .wa-inline {
  color: var(--whatsapp-dark);
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row .field {
  min-width: 0;
}

.field { margin-bottom: 14px; }

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}

.field select,
.field input {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--ink-900);
  background: var(--off-white);
  transition: border-color 0.2s, background 0.2s;
}

.field input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
}

.field select:focus,
.field input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: var(--white);
}

.field-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-option {
  border: 1.5px solid var(--line);
  border-radius: 50px;
  padding: 9px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--off-white);
  transition: all 0.2s;
}

.chip-option.selected,
.chip-option:hover {
  border-color: var(--gold-500);
  background: var(--gold-100);
  color: var(--navy-900);
}

.book-card .btn-whatsapp {
  margin-top: 6px;
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row.form-row-compact { grid-template-columns: 1fr 1fr; }
}

/* ---------- Trust strip ---------- */

.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
}

.trust-strip-item svg { color: var(--gold-500); flex-shrink: 0; }

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 780px) {
  .steps { grid-template-columns: 1fr; gap: 46px; }
}

.step-card {
  position: relative;
  padding: 34px 26px 30px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--gold-500);
  opacity: 0.55;
  margin-bottom: 10px;
}

.step-card h3 { font-size: 19px; margin-bottom: 8px; }
.step-card p { color: var(--ink-500); font-size: 14.5px; }

.step-arrow {
  position: absolute;
  top: 40px;
  right: -34px;
  color: var(--whatsapp);
  opacity: 0.45;
}

@media (max-width: 780px) {
  .step-card {
    padding: 20px 18px 18px;
  }

  .step-num {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .step-card h3 { font-size: 17px; margin-bottom: 6px; }
  .step-card p { font-size: 13.5px; }

  .step-arrow {
    top: auto;
    right: auto;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* ---------- Services ---------- */

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

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  padding: 32px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
  border-color: transparent;
}

.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}

.service-card h3 { font-size: 19.5px; margin-bottom: 10px; }
.service-card p { color: var(--ink-500); font-size: 14.5px; margin-bottom: 14px; }

.service-card ul li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-700);
  padding: 4px 0;
}

.service-card ul li svg { color: var(--gold-500); flex-shrink: 0; margin-top: 3px; }

/* ---------- Fleet ---------- */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.fleet-media {
  height: 190px;
  background: linear-gradient(135deg, var(--off-white), var(--gold-100));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px;
}

.fleet-media img { width: 100%; height: 100%; object-fit: contain; }

.fleet-year {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold-500);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 11px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.fleet-body { padding: 22px 24px 26px; }

.fleet-body .cat {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 4px;
}

.fleet-body h3 { font-size: 21px; margin-bottom: 12px; }

.fleet-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.fleet-specs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-700);
  font-weight: 500;
}

.fleet-specs svg { color: var(--gold-500); }

/* ---------- Why us ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
  text-align: center;
  padding: 30px 20px;
}

.why-icon {
  width: 60px; height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
}

.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { color: var(--ink-500); font-size: 13.5px; }

/* ---------- Stats ---------- */

.stats {
  background: var(--navy-950);
  color: var(--white);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; } }

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 44px);
  color: var(--gold-400);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Testimonials ---------- */

.video-showcase {
  position: relative;
  max-width: 380px;
  margin: 44px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  background: var(--navy-950);
  aspect-ratio: 1 / 1;
}

.video-showcase-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s;
}

.video-play-btn svg { margin-left: 3px; }

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--white);
}

.video-showcase.playing .video-play-btn {
  display: none;
}

.testi-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 980px) {
  .testi-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin: 0 -20px;
    padding: 4px 20px 10px;
  }
  .testi-card { min-width: 82vw; scroll-snap-align: start; }
}

.testi-card {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.testi-stars {
  color: var(--gold-500);
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.testi-card p.quote {
  font-size: 14.5px;
  color: var(--ink-700);
  margin-bottom: 18px;
  min-height: 84px;
}

.testi-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head h2 .num-accent {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--gold-500);
}

.testi-person .name { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.testi-person .loc { font-size: 12px; color: var(--ink-500); }

/* ---------- Instagram band ---------- */

.insta-band {
  background: linear-gradient(120deg, var(--gold-100), var(--off-white));
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.insta-band h3 { font-size: 24px; margin-bottom: 6px; }
.insta-band p { color: var(--ink-700); font-size: 14.5px; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--navy-900);
  font-family: var(--font-heading);
}

.faq-q .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-q .icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-a p {
  padding: 0 4px 22px;
  color: var(--ink-500);
  font-size: 14.5px;
  max-width: 660px;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: radial-gradient(120% 160% at 85% 0%, #1b2743 0%, var(--navy-950) 60%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 { color: var(--white); font-size: clamp(24px, 3.6vw, 34px); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 26px; }

.cta-banner .btn-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 34px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 18px; }

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }

.footer h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer ul li { margin-bottom: 11px; font-size: 14px; }
.footer ul li a:hover { color: var(--gold-400); }

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact svg { color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 12.5px;
}

.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 700;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37,211,102,0.45);
  transition: transform 0.25s var(--ease);
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wa-ping 2.4s infinite;
  z-index: -1;
}

@keyframes wa-ping {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

.wa-float:hover { transform: scale(1.08); }

.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Blog ---------- */

.blog-hero {
  background: var(--navy-950);
  color: var(--white);
  padding: 60px 0 50px;
  text-align: center;
}

.blog-hero h1 { color: var(--white); font-size: clamp(30px, 5vw, 46px); margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

.blog-card-media {
  height: 160px;
  background: linear-gradient(135deg, var(--gold-100), var(--off-white));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-media svg { width: 54px; height: 54px; color: var(--gold-500); }

.blog-card-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }

.blog-card .tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
}

.blog-card h3 { font-size: 18.5px; margin-bottom: 10px; }
.blog-card p { color: var(--ink-500); font-size: 14px; margin-bottom: 16px; flex: 1; }
.blog-card .read-more { font-size: 13.5px; font-weight: 700; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; }

/* Blog post */

.post {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 20px 70px;
}

.post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--ink-500);
  font-size: 13px;
  margin-bottom: 16px;
}

.post h1 { font-size: clamp(28px, 4.4vw, 40px); margin-bottom: 20px; }

.post h2 { font-size: 24px; margin: 36px 0 14px; }
.post h3 { font-size: 19px; margin: 26px 0 10px; }

.post p { color: var(--ink-700); font-size: 16px; margin-bottom: 16px; }

.post ul, .post ol { margin: 0 0 18px 20px; color: var(--ink-700); font-size: 16px; }
.post li { margin-bottom: 8px; }
.post ul { list-style: disc; }
.post ol { list-style: decimal; }

.post .post-cta {
  margin: 34px 0;
  padding: 26px;
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.post .post-cta p { margin-bottom: 14px; }

.breadcrumb {
  font-size: 13px;
  color: var(--ink-500);
  margin-bottom: 10px;
}

.breadcrumb a:hover { color: var(--gold-500); }

/* ---------- Misc ---------- */

.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
