/* ============================================================
   ALHIJAZ INDO WISATA — Main Stylesheet
   File: css/style.css
   ============================================================ */

/* ===== RESET & CSS CUSTOM PROPERTIES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Brand Colors */
  --red:        #D40000;
  --red-dark:   #A00000;
  --red-light:  #E83030;
  --gold:       #C4922A;
  --gold-light: #E8C06A;
  --gold-pale:  #FBF4E4;

  /* Neutrals */
  --cream:      #FAF7F2;
  --ink:        #1C1811;
  --ink-mid:    #3D3629;
  --ink-soft:   #7A6F61;
  --white:      #FFFFFF;

  /* Utility */
  --border:     rgba(196, 146, 42, 0.18);
  --shadow-sm:  0 2px 12px rgba(28, 24, 17, 0.08);
  --shadow-md:  0 6px 32px rgba(28, 24, 17, 0.12);
  --shadow-lg:  0 16px 64px rgba(28, 24, 17, 0.14);

  /* Border Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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


/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

.serif { font-family: 'Cormorant Garamond', serif; }

.eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-light);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 12px;
  line-height: 1.75;
}


/* ============================================================
   LAYOUT
   ============================================================ */

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

.section-pad    { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

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

.section-header-left {
  max-width: 620px;
  margin-bottom: 48px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 146, 42, 0.4);
}
.btn-primary:hover {
  background: #A87820;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 146, 42, 0.5);
}

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

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 0, 0, 0.35);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}
.btn-wa:hover {
  background: #1EAF56;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}


/* ============================================================
   NAVBAR
   ============================================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}

#navbar.scrolled {
  background: var(--red-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text { line-height: 1.15; }

.nav-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

.nav-logo-tagline {
  font-size: 0.62rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(196, 146, 42, 0.12);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--red-dark);
  padding: 16px 24px 24px;
  z-index: 8999;
  border-top: 1px solid rgba(196, 146, 42, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold-light); }

.mobile-menu .btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}


/* ============================================================
   HERO SECTION
   ============================================================ */

#hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--red-dark) 0%, #7a0000 55%, #4a0000 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196,146,42,0.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(212,0,0,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(196,146,42,0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(196,146,42,0.06) 0%, transparent 40%);
  pointer-events: none;
}

.hero-geo {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.04;
  pointer-events: none;
}

/* Hero content */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 140px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,146,42,0.15);
  border: 1px solid rgba(196,146,42,0.4);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-arabic {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: rgba(232,192,106,0.7);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  direction: rtl;
  text-align: left;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--gold-light); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

/* Hero stats row */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero right card */
.hero-visual { position: relative; }

.hero-card-stack {
  position: relative;
  max-width: 380px;
  margin-left: auto;
}

.hero-img-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 28px;
}

.hero-img-box {
  width: 100%;
  height: 220px;
  border-radius: var(--r-md);
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border: 1px solid rgba(196,146,42,0.25);
}

/* fallback placeholder when no image */
.hero-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, rgba(196,146,42,0.25), rgba(212,0,0,0.2));
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 3.5rem;
  border: 1px solid rgba(196,146,42,0.25);
  margin-bottom: 20px;
}

.hero-img-label {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-align: center;
  font-style: italic;
}

.hero-mini-stat {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-mini-stat-item { text-align: center; }

.hero-mini-stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-mini-stat-lbl {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-float-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(196,146,42,0.5);
  white-space: nowrap;
}


/* ============================================================
   TRUST STRIP
   ============================================================ */

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

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-mid);
  white-space: nowrap;
}

.trust-item .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.trust-item span { color: var(--red); }
.trust-sep { color: var(--border); font-size: 1.2rem; }


/* ============================================================
   PACKAGES SECTION
   ============================================================ */

#packages { background: var(--cream); }

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

/* Package card */
.pkg-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(196,146,42,0.2);
}

.pkg-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

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

.pkg-header { padding: 28px 28px 0; }

.pkg-tier {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pkg-tier.economy { color: var(--ink-soft); }
.pkg-tier.reguler { color: var(--red); }
.pkg-tier.vip     { color: var(--gold); }

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.pkg-duration {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* Package image */
.pkg-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Fallback colored box if no image */
.pkg-img-placeholder {
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
}

.pkg-img-placeholder.economy-bg { background: linear-gradient(135deg, #e8e0d0, #d8cdb8); }
.pkg-img-placeholder.reguler-bg { background: linear-gradient(135deg, #fdf0f0, #f0d8d8); }
.pkg-img-placeholder.vip-bg     { background: linear-gradient(135deg, #fdf8ec, #f0e4c0); }

/* Package body */
.pkg-body {
  padding: 20px 28px;
  flex: 1;
}

.pkg-features { list-style: none; margin-bottom: 20px; }

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-bottom: 1px solid #F4EFE8;
}

.pkg-features li:last-child { border-bottom: none; }
.pkg-features li .ck {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 3px;
}

.pkg-price-box {
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.pkg-price-box.red-tint {
  background: rgba(212,0,0,0.05);
  border-color: rgba(212,0,0,0.15);
}

.pkg-price-box.gold-tint {
  background: rgba(196,146,42,0.08);
  border-color: rgba(196,146,42,0.2);
}

.pkg-price-from {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.pkg-price.gold { color: var(--gold); }

.pkg-price-note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.pkg-footer {
  padding: 0 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pkg-seats {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 600;
}

.seat-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ============================================================
   HAJJ SECTION
   ============================================================ */

#hajj { background: var(--white); }

.hajj-card {
  background: linear-gradient(135deg, var(--red-dark) 0%, #7a0000 100%);
  border-radius: var(--r-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hajj-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(196,146,42,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hajj-eyebrow { color: var(--gold-light); }

.hajj-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hajj-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.75;
}

.hajj-features { list-style: none; margin-bottom: 32px; }

.hajj-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hajj-features li .ck { color: var(--gold-light); }

.hajj-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Hajj photo */
.hajj-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--r-md);
  display: block;
  border: 1px solid rgba(196,146,42,0.3);
}

.hajj-stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 20px 24px;
}

.hajj-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hajj-stat-lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.hajj-stat-card.warning {
  background: rgba(196,146,42,0.12);
  border-color: rgba(196,146,42,0.2);
}

.hajj-stat-card.warning .hajj-stat-num {
  font-size: 1.5rem;
  color: var(--gold-light);
}


/* ============================================================
   WHY US SECTION
   ============================================================ */

#why-us { background: var(--cream); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

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

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red-light));
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}

.why-desc {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}


/* ============================================================
   ABOUT SECTION
   ============================================================ */

#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-area { position: relative; }

.about-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
  border: 1px solid var(--border);
}

/* fallback */
.about-main-img-placeholder {
  border-radius: var(--r-lg);
  height: 420px;
  background: linear-gradient(135deg, #f0e4c0, #e8cca0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: white;
  padding: 16px 20px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}

.about-badge-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 36px 0;
}

.about-stat-box {
  background: var(--gold-pale);
  border-radius: var(--r-md);
  padding: 20px;
  border: 1px solid var(--border);
}

.about-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-lbl {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.cert-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mid);
}

.cert-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

#testimonials { background: var(--cream); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

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

.testi-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
  opacity: 0.6;
}

.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.star { color: var(--gold); font-size: 0.9rem; }

.testi-text {
  font-size: 0.92rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.testi-author { display: flex; align-items: center; gap: 14px; }

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.testi-pkg  { font-size: 0.75rem; color: var(--ink-soft); }

.testi-verified {
  margin-left: auto;
  font-size: 0.65rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Google Rating Strip */
.google-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  box-shadow: var(--shadow-sm);
}

.g-logo { font-size: 1.8rem; font-weight: 700; font-family: 'DM Sans', sans-serif; }
.g-logo span:nth-child(1) { color: #4285F4; }
.g-logo span:nth-child(2) { color: #EA4335; }
.g-logo span:nth-child(3) { color: #FBBC04; }
.g-logo span:nth-child(4) { color: #4285F4; }
.g-logo span:nth-child(5) { color: #34A853; }
.g-logo span:nth-child(6) { color: #EA4335; }

.g-rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.g-stars-label { font-size: 0.8rem; color: var(--ink-soft); margin-top: 4px; }

.g-sep { width: 1px; height: 48px; background: var(--border); }

.g-text { font-size: 0.9rem; color: var(--ink-soft); max-width: 320px; }
.g-text strong { color: var(--ink); }


/* ============================================================
   PROCESS / JOURNEY
   ============================================================ */

#process { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 16px 32px;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 64px;
  height: 64px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(212,0,0,0.3);
  border: 4px solid var(--cream);
}

.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 0.8rem;
  color: var(--ink-soft);
  line-height: 1.6;
}


/* ============================================================
   FAQ
   ============================================================ */

#faq { background: var(--cream); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  transition: background 0.2s;
}

.faq-q:hover       { background: var(--gold-pale); }
.faq-q.open        { background: var(--gold-pale); color: var(--red); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-q.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 16px 24px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-a.open { display: block; }


/* ============================================================
   CONTACT
   ============================================================ */

#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 3px;
}

.contact-item-val {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Form */
.contact-form-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid var(--border);
}

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

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E8E0D4;
  border-radius: var(--r-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,146,42,0.12);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

select.form-control { appearance: none; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-submit {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

/* Map placeholder */
.map-area {
  margin-top: 32px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    /* warm vignette overlay — keeps text readable */
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(250,247,242,0.72) 0%, rgba(240,232,216,0.55) 50%, rgba(224,212,190,0.35) 100%),
    /* stylised street-grid SVG */
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='200' viewBox='0 0 420 200'%3E%3Cdefs%3E%3ClinearGradient id='bg' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0%25' stop-color='%23f0e8d8'/%3E%3Cstop offset='100%25' stop-color='%23dfd0b4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='420' height='200' fill='url(%23bg)'/%3E%3C!-- horizontal roads --%3E%3Crect x='0' y='44' width='420' height='8' rx='2' fill='%23e2d0b0' opacity='.9'/%3E%3Crect x='0' y='90' width='420' height='12' rx='2' fill='%23d8c4a0' opacity='.85'/%3E%3Crect x='0' y='138' width='420' height='8' rx='2' fill='%23e2d0b0' opacity='.9'/%3E%3Crect x='0' y='172' width='420' height='6' rx='2' fill='%23e8d8bc' opacity='.7'/%3E%3C!-- vertical roads --%3E%3Crect x='68' y='0' width='8' height='200' rx='2' fill='%23e2d0b0' opacity='.9'/%3E%3Crect x='148' y='0' width='12' height='200' rx='2' fill='%23d8c4a0' opacity='.85'/%3E%3Crect x='240' y='0' width='8' height='200' rx='2' fill='%23e2d0b0' opacity='.9'/%3E%3Crect x='320' y='0' width='8' height='200' rx='2' fill='%23e8d8bc' opacity='.7'/%3E%3Crect x='380' y='0' width='6' height='200' rx='2' fill='%23ecddc8' opacity='.6'/%3E%3C!-- city blocks --%3E%3Crect x='76' y='0' width='72' height='44' rx='4' fill='%23e8dcc8' opacity='.5'/%3E%3Crect x='76' y='52' width='72' height='38' rx='4' fill='%23ecddc8' opacity='.45'/%3E%3Crect x='76' y='102' width='72' height='36' rx='4' fill='%23e8dcc8' opacity='.5'/%3E%3Crect x='76' y='146' width='72' height='26' rx='4' fill='%23ecddc8' opacity='.4'/%3E%3Crect x='160' y='0' width='80' height='44' rx='4' fill='%23ecddc8' opacity='.45'/%3E%3Crect x='160' y='52' width='80' height='38' rx='4' fill='%23e8dcc8' opacity='.5'/%3E%3Crect x='160' y='102' width='80' height='36' rx='4' fill='%23ecddc8' opacity='.45'/%3E%3Crect x='160' y='146' width='80' height='26' rx='4' fill='%23e8dcc8' opacity='.4'/%3E%3Crect x='248' y='0' width='72' height='44' rx='4' fill='%23e8dcc8' opacity='.5'/%3E%3Crect x='248' y='52' width='72' height='38' rx='4' fill='%23ecddc8' opacity='.45'/%3E%3Crect x='248' y='102' width='72' height='36' rx='4' fill='%23e8dcc8' opacity='.5'/%3E%3Crect x='248' y='146' width='72' height='26' rx='4' fill='%23ecddc8' opacity='.4'/%3E%3Crect x='328' y='0' width='52' height='44' rx='4' fill='%23ecddc8' opacity='.4'/%3E%3Crect x='328' y='52' width='52' height='38' rx='4' fill='%23e8dcc8' opacity='.4'/%3E%3Crect x='328' y='102' width='52' height='36' rx='4' fill='%23ecddc8' opacity='.35'/%3E%3Crect x='0' y='0' width='68' height='44' rx='4' fill='%23e8dcc8' opacity='.4'/%3E%3Crect x='0' y='52' width='68' height='38' rx='4' fill='%23ecddc8' opacity='.4'/%3E%3Crect x='0' y='102' width='68' height='36' rx='4' fill='%23e8dcc8' opacity='.4'/%3E%3Crect x='0' y='146' width='68' height='26' rx='4' fill='%23ecddc8' opacity='.35'/%3E%3C!-- map pin shadow --%3E%3Cellipse cx='210' cy='118' rx='9' ry='3.5' fill='%23b09060' opacity='.25'/%3E%3C!-- map pin body --%3E%3Cpath d='M210 58 C198 58 188 68 188 80 C188 98 210 118 210 118 C210 118 232 98 232 80 C232 68 222 58 210 58 Z' fill='%23C4922A'/%3E%3C!-- pin inner circle --%3E%3Ccircle cx='210' cy='80' r='9' fill='%23FAF7F2'/%3E%3C!-- pin dot --%3E%3Ccircle cx='210' cy='80' r='4' fill='%23C4922A'/%3E%3C/svg%3E")
    center / cover no-repeat;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  position: relative;
}

.map-area > * {
  position: relative;
  z-index: 1;
}

.map-area strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

/* Success message */
#formSuccess {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: var(--r-sm);
  color: var(--ink);
}


/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-strip {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,146,42,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-text .eyebrow { color: var(--gold-light); }

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.cta-desc { color: rgba(255,255,255,0.7); max-width: 420px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--ink);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Footer Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
}

.footer-logo-sub {
  font-size: 0.6rem;
  color: var(--gold-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover {
  background: var(--gold);
  color: white;
  border-color: transparent;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-links { list-style: none; }

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-cert { display: flex; flex-direction: column; gap: 8px; }

.cert-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.cert-row .ck { color: var(--gold-light); }

/* Footer Bottom Bar */
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

.footer-copy a { color: var(--gold-light); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--gold-light); }


/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-tooltip {
  background: var(--ink);
  color: white;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeInUp 0.4s ease;
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 24px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--ink);
}

.wa-btn {
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

.wa-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease-in-out infinite;
}

.wa-btn svg { width: 30px; height: 30px; fill: white; }

/* Mobile sticky bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8998;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes waPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 0;   }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */

@media (max-width: 1024px) {
  .about-grid      { grid-template-columns: 1fr; }
  .about-img-area  { display: none; }
  .hajj-card       { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-inner  { padding: 110px 0 60px; }
  .hero-visual { display: none; }

  /* Grids */
  .packages-grid { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .faq-grid      { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }

  /* CTA strip */
  .cta-inner { text-align: center; justify-content: center; }
  .cta-btns  { justify-content: center; }

  /* Mobile sticky bar */
  .mobile-cta-bar { display: flex; }
  .wa-float       { bottom: 80px; right: 16px; }

  /* Process */
  .process-steps::before { display: none; }

  /* Form */
  .form-grid-2 { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero-stats { gap: 20px; }
  .why-grid   { grid-template-columns: 1fr; }
  .trust-items { gap: 6px 16px; }
  .container  { padding: 0 16px; }
}