/* =====================================================
   AL-HARMAIN TOURS & TRAVEL - CLIENT STORE LANDING PAGE
   Islamic Gold & Emerald Luxury Aesthetics
===================================================== */

:root {
  --ah-emerald: #022c22;
  --ah-surface: #064e3b;
  --ah-card: #043e2f;
  --ah-gold: #f59e0b;
  --ah-gold-dark: #d97706;
  --ah-border: rgba(245, 158, 11, 0.25);
  --ah-text: #f8fafc;
  --ah-muted: #94a3b8;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--ah-emerald);
  color: var(--ah-text);
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.ah-container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

/* Top Legal Bar */
.ah-top-bar {
  background: #021f18;
  border-bottom: 1px solid var(--ah-border);
  padding: 10px 0;
  font-size: 12px;
  color: var(--ah-muted);
}

.ah-top-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ah-top-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-weight: 600;
}

.ah-top-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ah-top-contact strong {
  color: var(--ah-gold);
}

.ah-divider {
  opacity: 0.3;
}

/* Navbar */
.ah-navbar {
  background: rgba(2, 44, 34, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--ah-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 18px 0;
}

.ah-navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ah-navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
}

.ah-logo-emblem {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ah-gold);
  color: #022c22;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(245, 158, 11, 0.45);
}

.ah-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ah-gold);
  line-height: 1.1;
}

.brand-sub {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ah-muted);
}

.ah-navbar__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ah-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.ah-nav-link:hover,
.ah-nav-link.active {
  color: var(--ah-gold);
}

.ah-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ah-gold);
  color: #022c22;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease;
}

.ah-btn-wa:hover {
  background: #fbbf24;
}

/* HERO SECTION WITH REAL MASJID BACKGROUND PHOTO & GRADIENT OVERLAY */
.ah-hero-centered {
  padding: 105px 0 95px;
  position: relative;
  background:
    linear-gradient(180deg, rgba(2, 44, 34, 0.40) 0%, rgba(2, 44, 34, 0.78) 35%, rgba(2, 44, 34, 0.96) 70%, rgba(2, 44, 34, 1) 100%),
    url('https://images.unsplash.com/photo-1565552070098-0073a846c4b9?w=1600&auto=format&fit=crop&q=80') center top / cover no-repeat;
  text-align: center;
  border-bottom: 1px solid var(--ah-border);
}

.ah-hero-center-head {
  max-width: 860px;
  margin: 0 auto 48px;
}

.ah-calligraphy-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Amiri', serif;
  font-size: 20px;
  color: var(--ah-gold);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--ah-border);
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.ah-calligraphy-badge small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.ah-hero-center-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 24px;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ah-hero-center-title span {
  color: var(--ah-gold);
  display: block;
}

.ah-hero-center-desc {
  font-size: 16.5px;
  color: #cbd5e1;
  line-height: 1.75;
  margin: 0 auto 32px;
  max-width: 720px;
}

/* Trust Badges Row */
.ah-trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ah-t-badge {
  background: rgba(6, 78, 59, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--ah-border);
  color: #e2e8f0;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ah-t-badge i {
  color: var(--ah-gold);
}

/* Hero Embedded Search Console (Floating Box) */
.ah-hero-console {
  background: #021f18;
  border: 1px solid var(--ah-border);
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 1080px;
  margin: 0 auto 56px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.ah-console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ah-border);
  flex-wrap: wrap;
  gap: 10px;
}

.ah-console-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ah-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ah-console-sub {
  font-size: 12.5px;
  color: var(--ah-muted);
}

.ah-console-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 18px;
  align-items: flex-end;
}

.ah-c-field label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.ah-c-field label i {
  color: var(--ah-gold);
  margin-right: 4px;
}

.ah-c-select {
  width: 100%;
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  color: #ffffff;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 13px;
  outline: none;
}

.ah-c-btn {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #022c22;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.ah-c-btn:hover {
  background: #fbbf24;
}

/* 3-Card Horizontal Highlight Destinations Inside Hero */
.ah-hero-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

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

  .ah-hero-cards-row {
    grid-template-columns: 1fr;
  }
}

.ah-h-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ah-h-card-img {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.ah-h-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ah-h-card:hover img {
  transform: scale(1.06);
}

.ah-h-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9.5px;
  font-weight: 800;
  color: #022c22;
  background: var(--ah-gold);
  padding: 4px 10px;
  border-radius: 4px;
}

.ah-h-badge.blue {
  background: #38bdf8;
  color: #000000;
}

.ah-h-badge.gold {
  background: #fbbf24;
  color: #000000;
}

.ah-h-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.ah-h-card-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #ffffff;
  margin: 0;
}

.ah-h-card-content p {
  font-size: 12.5px;
  color: #cbd5e1;
  margin: 0 0 8px;
}

.ah-h-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--ah-border);
}

.ah-h-card-price small {
  display: block;
  font-size: 9.5px;
  color: var(--ah-muted);
}

.ah-h-card-price strong {
  font-size: 16px;
  color: var(--ah-gold);
}

.ah-h-btn {
  background: #ffffff;
  color: #022c22;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
}

.ah-h-btn.gold {
  background: var(--ah-gold);
}

/* INCREASED PADDING FOR ALL SECTIONS (TIDAK MEPE T) */
.ah-pillars {
  padding: 110px 0 90px;
}

.ah-section-head {
  margin-bottom: 56px;
}

.ah-head-gold {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ah-gold);
  display: block;
  margin-bottom: 10px;
}

.ah-head-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  color: #ffffff;
  margin: 0 0 14px;
}

.ah-head-title span {
  color: var(--ah-gold);
}

.ah-head-desc {
  font-size: 15px;
  color: var(--ah-muted);
  max-width: 660px;
  margin: 0;
  text-align: left !important;
}

.ah-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ah-pillar-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ah-pillar-ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid var(--ah-border);
  color: var(--ah-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ah-pillar-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #ffffff;
  margin: 0;
}

.ah-pillar-card p {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

/* Packages Grid (Increased Section Padding) */
.ah-packages {
  padding: 110px 0;
  background: #021f18;
  border-top: 1px solid var(--ah-border);
  border-bottom: 1px solid var(--ah-border);
}

.ah-pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

@media (max-width: 1100px) {
  .ah-pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.ah-pkg-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ah-pkg-card.featured {
  border-color: var(--ah-gold);
}

.ah-pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  background: #0284c7;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
}

.ah-pkg-badge.gold {
  background: var(--ah-gold);
  color: #022c22;
}

.ah-pkg-img {
  height: 230px;
  position: relative;
  overflow: hidden;
}

.ah-pkg-img-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.ah-pkg-card:hover .ah-pkg-img-tag {
  transform: scale(1.06);
}

.ah-pkg-hotel-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 10px;
  border-radius: 100px;
}

.ah-pkg-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.ah-pkg-meta {
  font-size: 12px;
  color: var(--ah-gold);
  font-weight: 600;
}

.ah-pkg-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}

.ah-pkg-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
}

.ah-pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--ah-border);
}

.ah-pkg-price small {
  display: block;
  font-size: 9.5px;
  color: var(--ah-muted);
}

.ah-pkg-price strong {
  font-size: 18px;
  color: var(--ah-gold);
}

.ah-pkg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: #022c22;
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.ah-pkg-btn.gold {
  background: var(--ah-gold);
}

/* Partners Section (Increased Section Padding) */
.ah-partners {
  padding: 100px 0;
}

.ah-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.ah-partner-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ah-partner-card i {
  font-size: 36px;
  color: var(--ah-gold);
}

.ah-partner-card strong {
  color: #ffffff;
  font-size: 15.5px;
}

.ah-partner-card small {
  color: var(--ah-muted);
  font-size: 12.5px;
}

/* Tracker Section (Increased Section Padding) */
.ah-tracker {
  padding: 110px 0;
  background: #021f18;
}

.ah-tracker-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 26px;
  padding: 54px 42px;
  max-width: 920px;
  margin: 0 auto;
}

.ah-tracker-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 36px;
}

.ah-tracker-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 36px);
  color: #ffffff;
  margin: 8px 0 12px;
}

.ah-tracker-head p {
  font-size: 14px;
  color: var(--ah-muted);
}

.ah-tracker-input-group {
  display: flex;
  align-items: center;
  background: #021f18;
  border: 1px solid var(--ah-border);
  border-radius: 14px;
  padding: 8px 8px 8px 20px;
  gap: 14px;
  max-width: 660px;
  margin: 0 auto;
}

.ah-tracker-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
}

.ah-tracker-btn {
  background: var(--ah-gold);
  color: #022c22;
  border: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.ah-tracker-result {
  background: #021f18;
  border: 1px solid var(--ah-border);
  border-radius: 18px;
  padding: 28px;
  margin-top: 36px;
}

.ah-result-badge.green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.ah-result-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.ah-result-grid small {
  display: block;
  font-size: 10px;
  color: var(--ah-muted);
  margin-bottom: 4px;
}

.ah-result-grid strong {
  color: #ffffff;
  font-size: 14.5px;
}

/* Sleek & Simple Download Brosur Button */
.ah-simple-brosur-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--ah-gold);
  color: var(--ah-gold);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ah-simple-brosur-btn i:first-child {
  font-size: 17px;
  color: #ef4444;
  transition: color 0.25s ease;
}

.ah-simple-brosur-btn i:last-child {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.ah-simple-brosur-btn:hover {
  background: var(--ah-gold);
  color: #022c22;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}

.ah-simple-brosur-btn:hover i:first-child {
  color: #022c22;
}

.ah-simple-brosur-btn:hover i:last-child {
  transform: translateY(2px);
}

.ah-pdf-icon {
  font-size: 24px;
  color: #ef4444;
  transition: color 0.3s ease;
}

.ah-download-brosur-btn:hover .ah-pdf-icon {
  color: #022c22;
}

.ah-brosur-text strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.ah-brosur-text small {
  display: block;
  font-size: 11px;
  color: var(--ah-muted);
  margin-top: 2px;
}

.ah-download-brosur-btn:hover .ah-brosur-text small {
  color: rgba(2, 44, 34, 0.85);
}

.ah-dl-icon {
  font-size: 16px;
  color: var(--ah-gold);
  margin-left: 6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ah-download-brosur-btn:hover .ah-dl-icon {
  color: #022c22;
  transform: translateY(3px);
}

/* Reviews Section */
.ah-reviews {
  padding: 100px 0;
  background: var(--ah-emerald);
}

.ah-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  text-align: left;
}

.ah-reviews-summary-badge {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 18px;
  padding: 16px 24px;
  text-align: right;
  white-space: nowrap;
  flex-shrink: 0;
}

.ah-sum-score {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--ah-gold);
  line-height: 1;
}

.ah-sum-score span {
  font-size: 16px;
  color: var(--ah-muted);
  font-weight: 600;
}

.ah-sum-stars {
  color: var(--ah-gold);
  font-size: 13px;
  margin: 6px 0 4px;
  display: flex;
  justify-content: flex-end;
  gap: 3px;
}

.ah-reviews-summary-badge small {
  font-size: 11.5px;
  color: var(--ah-muted);
}

.ah-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .ah-reviews-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ah-reviews-summary-badge {
    text-align: left;
    width: 100%;
  }

  .ah-sum-stars {
    justify-content: flex-start;
  }

  .ah-reviews-grid {
    grid-template-columns: 1fr;
  }
}

.ah-rev-card {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ah-rev-rating {
  color: var(--ah-gold);
  font-size: 15px;
  display: flex;
  gap: 4px;
}

.ah-rev-text {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

.ah-rev-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--ah-border);
}

.ah-rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ah-gold);
  color: #022c22;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ah-rev-user strong {
  display: block;
  font-size: 13.5px;
  color: #ffffff;
}

.ah-rev-user small {
  font-size: 11px;
  color: var(--ah-muted);
}

/* FAQ Accordion Section */
.ah-faq {
  padding: 100px 0;
  background: #021f18;
  border-top: 1px solid var(--ah-border);
  border-bottom: 1px solid var(--ah-border);
}

.ah-faq .ah-section-head {
  max-width: 860px;
  margin: 0 auto 36px;
  text-align: center;
}

.ah-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ah-faq-item {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.ah-faq-item.active {
  border-color: var(--ah-gold);
}

.ah-faq-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.ah-faq-trigger i {
  color: var(--ah-gold);
  transition: transform 0.3s ease;
}

.ah-faq-item.active .ah-faq-trigger i {
  transform: rotate(180deg);
}

.ah-faq-content {
  display: none;
  padding: 0 24px 22px;
}

.ah-faq-item.active .ah-faq-content {
  display: block;
}

.ah-faq-content p {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.7;
  margin: 0;
}

/* Spacious Luxury Footer */
.ah-footer {
  background: #011410;
  border-top: 1px solid var(--ah-border);
  padding: 105px 0 45px;
}

.ah-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 42px;
  margin-bottom: 64px;
}

.ah-foot-desc {
  font-size: 13.5px;
  color: var(--ah-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.ah-foot-socials {
  display: flex;
  gap: 12px;
}

.ah-foot-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  color: var(--ah-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.25s ease;
}

.ah-foot-socials a:hover {
  background: var(--ah-gold);
  color: #022c22;
  transform: translateY(-2px);
}

.ah-foot-col h4 {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ah-gold);
  margin: 0 0 22px;
}

.ah-foot-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ah-foot-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ah-foot-links a i {
  font-size: 11px;
  color: var(--ah-gold);
}

.ah-foot-links a:hover {
  color: var(--ah-gold);
  transform: translateX(4px);
}

.ah-foot-office-item p {
  font-size: 12.5px;
  color: var(--ah-muted);
  line-height: 1.6;
  margin: 4px 0 0;
}

.ah-foot-office-item strong {
  font-size: 12px;
  letter-spacing: 0.04em;
}

.ah-foot-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #cbd5e1;
}

.ah-foot-hotline {
  background: var(--ah-surface);
  border: 1px solid var(--ah-border);
  border-radius: 14px;
  padding: 14px 18px;
}

.ah-foot-hotline small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ah-gold);
  margin-bottom: 2px;
}

.ah-foot-hotline strong {
  font-size: 16px;
  color: #ffffff;
}

.ah-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
  border-top: 1px solid var(--ah-border);
  font-size: 13px;
  color: var(--ah-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.ah-dev-credit a {
  color: var(--ah-gold);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .ah-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ah-navbar__menu {
    display: none;
  }

  .ah-footer-grid {
    grid-template-columns: 1fr;
  }
}