/* ═══════════════════════════════════════════════
   PLAZA SKY TRAVELS – Main Stylesheet
   Polished, fluid, homogeneous design system
   Colors: Burgundy #5C1233, Gold #C9A84C
   Fonts:  Playfair Display (headings) · Inter (body)
═══════════════════════════════════════════════ */

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

:root {
  --burgundy:  #5C1233;
  --burgundy2: #7a1a45;
  --gold:      #C9A84C;
  --gold2:     #e8c96d;
  --dark:      #1a0610;
  --off:       #fdf8f9;
  --text:      #2a2a2a;
  --muted:     #6b6b6b;
  --white:     #ffffff;
  --radius:    14px;
  --shadow-sm: 0 2px 12px rgba(92,18,51,0.08);
  --shadow:    0 8px 40px rgba(92,18,51,0.12);
  --shadow-lg: 0 20px 60px rgba(92,18,51,0.16);
  --trans:     0.3s ease;

  /* Legacy aliases used throughout */
  --navy:  #5C1233;
  --navy2: #7a1a45;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; object-fit: cover; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.section { padding: 96px 0; }
.gold { color: var(--gold); }


/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,0.38);
}
.btn-primary.large { padding: 17px 44px; font-size: 1.05rem; }
.btn-primary.full  { width: 100%; text-align: center; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.55);
  transition: var(--trans);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-book {
  background: var(--burgundy);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold); color: var(--burgundy); }


/* ═══════════════════════════════════════════════
   SECTION HEADER
═══════════════════════════════════════════════ */

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

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold); }

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--burgundy);
  line-height: 1.18;
}

.section-header .section-sub {
  color: var(--muted);
  margin-top: 18px;
  font-size: 1rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}


/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
  padding: 0 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

#navbar.scrolled {
  background: rgba(92,18,51,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.22);
}

.nav-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}


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

#logo-img {
  width: auto;
  height: 58px;
  object-fit: contain;
  transition: var(--trans);
  filter: brightness(0) invert(1);
}
#logo-img:hover {
  opacity: 0.85;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
}
.logo-text .logo-icon { color: var(--gold); font-size: 1.1rem; }
.logo-text strong { color: var(--gold); }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--trans);
  position: relative;
}
.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.nav-links a:not(.btn-nav):hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--burgundy) !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.2px;
}
.btn-nav:hover {
  background: var(--gold2) !important;
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--trans);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--burgundy);
  padding: 8px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: rgba(255,255,255,0.82);
  padding: 13px 28px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
.btn-mobile { color: var(--gold) !important; font-weight: 600; }


/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,18,51,0.85) 0%,
    rgba(92,18,51,0.52) 55%,
    rgba(26,6,16,0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 48px;
  margin-left: 5vw;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(201,168,76,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 26px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.htag-badge {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
}
.htag-sep {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}
.htag-loc {
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.8px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 26px;
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-bottom: 42px;
  max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.75), transparent);
  animation: scrollPulse 2.2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.25} 50%{opacity:1} }

.hero-dots {
  position: absolute;
  bottom: 52px;
  right: 44px;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  background: transparent;
  cursor: pointer;
  transition: var(--trans);
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 22px;
  border-radius: 4px;
}


/* ═══════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════ */

.search-bar-section {
  background: #fff;
  box-shadow: 0 4px 32px rgba(92,18,51,0.1);
  position: relative;
  z-index: 10;
}

.search-bar {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  background: #fff;
  min-height: 80px;
}

.search-field {
  flex: 1;
  padding: 16px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-field label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold);
}
.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.94rem;
  color: var(--burgundy);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.search-field input::placeholder { color: #bbb; font-weight: 400; }

.search-divider { width: 1px; background: #ede8ea; margin: 14px 0; }

.btn-search {
  background: var(--burgundy);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0 44px;
  font-size: 0.93rem;
  font-weight: 700;
  transition: var(--trans);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.btn-search:hover {
  background: var(--gold);
  color: var(--burgundy);
}


/* ═══════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════ */

.stats {
  background: linear-gradient(135deg, #5C1233 0%, #3a0a1e 100%);
  padding: 72px 0;
}
.stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item { text-align: center; color: #fff; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
}
.stat-item p {
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════ */

.about-section { background: #fff; }

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

.about-images { position: relative; }

.about-img-main {
  border-radius: var(--radius);
  height: 460px;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 50px;
  padding: 10px 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.9);
  margin-top: 0;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--burgundy);
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-lead {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--text);
  margin-bottom: 14px;
}
.about-text > p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 14px;
}

.about-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}
.about-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--off);
  border-radius: 10px;
  padding: 13px 18px;
  border-left: 3px solid var(--gold);
  transition: var(--trans);
}
.about-pill:hover {
  background: #f5edf1;
  border-left-color: var(--burgundy);
}
.pill-icon { font-size: 1.2rem; flex-shrink: 0; }
.about-pill strong {
  display: block;
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 700;
}
.about-pill span { color: var(--muted); font-size: 0.8rem; }


/* ═══════════════════════════════════════════════
   SERVICES – compact icon tiles
═══════════════════════════════════════════════ */

.services { background: var(--off); }

.services-compact {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.svc-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #ece6e9;
  border-radius: var(--radius);
  padding: 26px 14px;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.svc-tile:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(92,18,51,0.1);
  transform: translateY(-3px);
  background: var(--off);
}
.svc-tile span { font-size: 1.9rem; line-height: 1; }
.svc-tile p {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--burgundy);
  line-height: 1.3;
  margin: 0;
}


/* ═══════════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════════ */

.packages { background: #fff; }

.packages-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.tab {
  padding: 9px 26px;
  border-radius: 50px;
  border: 2px solid #e0d8db;
  background: transparent;
  color: var(--muted);
  font-size: 0.87rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
  font-family: 'Inter', sans-serif;
}
.tab:hover { border-color: var(--gold); color: var(--burgundy); }
.tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--burgundy);
  font-weight: 700;
}

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

.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #f0eaec;
  transition: var(--trans);
}
.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pkg-card.hidden { display: none; }

.pkg-img { position: relative; height: 224px; overflow: hidden; }
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img img { transform: scale(1.06); }

.pkg-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.pkg-badge.new {
  background: var(--burgundy);
  color: #fff;
}

.pkg-body { padding: 26px; }
.pkg-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.77rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.pkg-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--burgundy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pkg-body > p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.62;
  margin-bottom: 16px;
}

.pkg-includes { list-style: none; margin-bottom: 22px; }
.pkg-includes li {
  font-size: 0.8rem;
  color: #585858;
  padding: 3px 0;
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f2eced;
  padding-top: 18px;
}
.pkg-price { display: flex; flex-direction: column; }
.pkg-price .from { font-size: 0.7rem; color: var(--muted); }
.pkg-price strong { font-size: 1.18rem; color: var(--burgundy); font-weight: 700; }
.pkg-price .per   { font-size: 0.7rem; color: var(--muted); }


/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */

.why-us { position: relative; padding: 100px 0; overflow: hidden; }
.why-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(92,18,51,0.97) 45%,
    rgba(92,18,51,0.78) 100%
  );
}

.why-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text { color: #fff; }
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  line-height: 1.22;
  margin-bottom: 20px;
}
.why-text > p {
  color: rgba(255,255,255,0.7);
  line-height: 1.72;
  margin-bottom: 44px;
  font-size: 0.98rem;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.why-feature h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.why-feature p {
  color: rgba(255,255,255,0.58);
  font-size: 0.82rem;
  line-height: 1.55;
}

.why-side { display: flex; align-items: center; justify-content: center; padding-top: 60px; }
.why-cert-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 20px;
  padding: 44px 36px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  backdrop-filter: blur(6px);
}
.cert-logo {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.why-cert-box > p {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  margin-bottom: 22px;
}
.why-cert-box hr {
  border: none;
  border-top: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 22px;
}
.why-badges { display: flex; flex-direction: column; gap: 10px; }
.why-badges span {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px;
}


/* ═══════════════════════════════════════════════
   CORPORATE TRAVEL
═══════════════════════════════════════════════ */

.corporate { background: var(--off); }

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

.corporate-text > p {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.78;
  margin-bottom: 16px;
}

.corporate-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 36px 0;
}

.corp-benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--trans);
}
.corp-benefit:hover {
  box-shadow: var(--shadow);
  transform: translateX(3px);
}

.corp-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  min-width: 42px;
}
.corp-benefit h4 {
  color: var(--burgundy);
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.corp-benefit p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.corporate-img { position: relative; border-radius: var(--radius); overflow: hidden; }
.corporate-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.corporate-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(92,18,51,0.92) 0%, transparent 100%);
  padding: 32px 28px;
  display: flex;
  gap: 28px;
}
.corp-stat strong {
  display: block;
  font-size: 1.7rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.corp-stat span {
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
}


/* ═══════════════════════════════════════════════
   CORPORATE ACCOUNTS – CLIENT LOGOS
═══════════════════════════════════════════════ */

.clients-section { background: #fff; }

/* ════ Logo Carousel ════ */
.logo-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 28px 0;
  background: #fff;
}

.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}
.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.logo-carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  /* JS will drive the translateX — no CSS animation here */
}

.logo-slide {
  flex: 0 0 170px;
  width: 170px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid #ede9eb;
  border-radius: 12px;
  padding: 10px 18px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.logo-slide:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(92,18,51,0.10);
}

/* override the global img rule for carousel logos */
.logo-slide img {
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 140px !important;
  max-height: 66px !important;
  object-fit: contain !important;
  filter: grayscale(1) opacity(0.75);
  transition: filter 0.3s ease;
}

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


/* ═══════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   GOOGLE REVIEWS
═══════════════════════════════════════════════ */

.reviews-section { background: var(--off); }

.google-score {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #ede9eb;
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 20px;
}
.g-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e0e0e0;
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #4285F4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g-stars { color: #F9AB00; font-size: 1rem; letter-spacing: 2px; }
.g-count { font-size: 0.82rem; color: var(--muted); }

/* ── Reviews carousel ── */
.reviews-carousel-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 32px 0 16px;
}
.reviews-carousel-wrap::before,
.reviews-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off), transparent);
}
.reviews-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off), transparent);
}

.reviews-carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 24px;
  width: max-content;  /* critical — prevents cards from collapsing */
  will-change: transform;
}

.review-card {
  flex: 0 0 320px;
  width: 320px;
  background: #fff;
  border: 1.5px solid #ede9eb;
  border-radius: 18px;
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(92,18,51,0.06);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(92,18,51,0.12);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-av {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  flex-shrink: 0;
}
.reviewer-meta { flex: 1; }
.reviewer-meta strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.3;
}
.rv-stars { color: #F9AB00; font-size: 0.78rem; letter-spacing: 1px; margin-top: 2px; }

.g-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  font-family: 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: 0.82rem;
  color: #4285F4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.review-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
  font-style: italic;
}
.review-date {
  font-size: 0.72rem;
  color: #bbb;
  display: block;
}

.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #b8922f 100%);
  padding: 88px 0;
  text-align: center;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--burgundy);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(92,18,51,0.72);
  font-size: 1rem;
  margin-bottom: 36px;
  line-height: 1.6;
}
.cta-banner .btn-primary {
  background: var(--burgundy);
  color: #fff;
}
.cta-banner .btn-primary:hover {
  background: var(--burgundy2);
  box-shadow: 0 10px 32px rgba(92,18,51,0.35);
}


/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */

.contact { background: var(--off); }

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

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--burgundy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: var(--burgundy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-item strong {
  display: block;
  color: var(--burgundy);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-item p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.social-links { display: flex; gap: 12px; }
.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  color: var(--burgundy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--trans);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy);
  transform: translateY(-2px);
}

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  border: 1px solid #f0eaec;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #e4dde0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--trans);
  font-family: 'Inter', sans-serif;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.13);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  color: #1e7e34;
  font-weight: 600;
  margin-top: 16px;
  padding: 14px;
  background: #e8f7ee;
  border-radius: 10px;
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */

.footer { background: var(--burgundy); color: #fff; padding: 76px 0 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 52px;
  margin-bottom: 52px;
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  color: #fff;
  gap: 6px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.footer-brand > p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.72;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  transition: var(--trans);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--trans);
}
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-cert {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 26px;
}
.footer-cert span {
  display: inline-block;
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 28px;
  text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: rgba(255,255,255,0.38); transition: var(--trans); }
.footer-bottom a:hover { color: var(--gold); }


/* ═══════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,6,16,0.72);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #fff;
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 44px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--muted);
  transition: var(--trans);
  line-height: 1;
}
.modal-close:hover { color: var(--burgundy); transform: rotate(90deg); }

.video-modal-box {
  background: var(--dark);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  padding: 44px;
  position: relative;
}
.video-placeholder { text-align: center; color: #fff; padding: 44px 0; }
.video-placeholder p:first-child { font-size: 2rem; margin-bottom: 14px; }


/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 28px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
}
.whatsapp-float:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}


/* ═══════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════ */

.back-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--burgundy);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 6px 24px rgba(201,168,76,0.45);
  transition: var(--trans);
  opacity: 0;
  pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover {
  background: var(--burgundy);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(92,18,51,0.35);
}


/* ═══════════════════════════════════════════════
   DESTINATIONS (kept for completeness)
═══════════════════════════════════════════════ */

.destinations { background: var(--off); }
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.dest-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.dest-card.large { grid-column: span 2; grid-row: span 2; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(92,18,51,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
  transition: var(--trans);
}
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(92,18,51,0.94) 0%, rgba(92,18,51,0.22) 60%); }
.dest-tag {
  display: inline-block;
  background: var(--gold); color: var(--burgundy);
  font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 8px; align-self: flex-start;
}
.dest-overlay h3 { color: #fff; font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 4px; }
.dest-overlay p { color: var(--gold); font-size: 0.84rem; font-weight: 500; }
.view-all { text-align: center; margin-top: 48px; }


/* ═══════════════════════════════════════════════
   TESTIMONIALS (kept for completeness)
═══════════════════════════════════════════════ */

.testimonials { background: #fff; }
.testimonials-slider { overflow: hidden; margin: 0 -12px; }
.testimonials-track { display: flex; gap: 0; transition: transform 0.5s ease; }
.testimonial-card {
  min-width: calc(33.333% - 24px);
  margin: 0 12px;
  background: var(--off);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid #f0e8eb;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card > p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--burgundy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--burgundy); font-size: 0.9rem; }
.testimonial-author span { color: var(--muted); font-size: 0.8rem; }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.tdot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ddd; border: none; cursor: pointer; transition: var(--trans);
}
.tdot.active { background: var(--gold); width: 24px; border-radius: 4px; }


/* ═══════════════════════════════════════════════
   VIDEO / PLAY BUTTON
═══════════════════════════════════════════════ */

.video-thumb { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.video-thumb:hover img { transform: scale(1.04); }
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 82px; height: 82px; background: rgba(255,255,255,0.95);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--burgundy); padding-left: 6px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.28); transition: var(--trans);
}
.video-thumb:hover .play-btn { background: var(--gold); transform: translate(-50%, -50%) scale(1.1); }


/* ═══════════════════════════════════════════════
   RESPONSIVE — 1024px  Tablet
═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .about-grid           { grid-template-columns: 1fr; gap: 52px; }
  .about-img-main       { height: 320px; }
  .services-compact     { grid-template-columns: repeat(4, 1fr); }
  .packages-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-features         { grid-template-columns: 1fr; }
  .why-content          { grid-template-columns: 1fr; gap: 52px; }
  .why-side             { margin-top: 0; padding-top: 0; }
  .corporate-grid       { grid-template-columns: 1fr; gap: 52px; }
  .corporate-img img    { height: 340px; }
  .contact-grid         { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid          { grid-template-columns: 1fr 1fr; gap: 40px; }
  .destinations-grid    { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .dest-card.large      { grid-column: span 2; height: 300px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — 768px  Mobile
═══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Global ── */
  .section    { padding: 60px 0; }
  .container  { padding: 0 20px; }
  .section-header { margin-bottom: 40px; }

  /* ── Navbar ── */
  .nav-links        { display: none; }
  .hamburger        { display: flex; }
  .mobile-menu.open { display: flex; }
  #logo-img         { height: 46px; }

  /* ── Hero ── */
  .hero         { min-height: 100svh; align-items: flex-end; padding-bottom: 100px; }
  .hero-content {
    padding: 0 24px;
    margin-left: 0;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-tagline   { font-size: 0.7rem; padding: 7px 14px; gap: 8px; }
  .hero-content h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-sub       { font-size: 0.92rem; margin-bottom: 32px; }
  .hero-buttons   {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline { text-align: center; }
  .hero-scroll    { display: none; }
  .hero-dots      { bottom: 20px; right: 20px; }

  /* ── Search bar ── */
  .search-bar     { flex-direction: column; }
  .search-divider { width: 100%; height: 1px; margin: 0; }
  .search-field   { padding: 14px 20px; }
  .btn-search     { padding: 18px; border-radius: 0 0 8px 8px; font-size: 1rem; }

  /* ── Stats ── */
  .stats          { padding: 52px 0; }
  .stats .container { justify-content: center; gap: 20px; }
  .stat-item      { flex-basis: 46%; }
  .stat-num       { font-size: 2.4rem; }

  /* ── About ── */
  .about-grid     { grid-template-columns: 1fr; gap: 40px; }
  .about-img-main { height: 260px; }
  .about-img-badge {
    padding: 8px 18px;
    white-space: normal;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  /* ── Services ── */
  .services-compact { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .svc-tile         { padding: 20px 10px; }
  .svc-tile span    { font-size: 1.6rem; }

  /* ── Packages ── */
  .packages-grid { grid-template-columns: 1fr; }
  .packages-tabs { gap: 8px; }
  .tab           { padding: 8px 18px; font-size: 0.82rem; }

  /* ── Why us ── */
  .why-us       { padding: 64px 0; }
  .why-content  { grid-template-columns: 1fr; gap: 40px; }
  .why-features { grid-template-columns: 1fr; gap: 16px; }
  .why-side     { padding-top: 0; justify-content: flex-start; }
  .why-cert-box { max-width: 100%; padding: 32px 24px; }

  /* ── Corporate ── */
  .corporate-grid      { grid-template-columns: 1fr; gap: 40px; }
  .corporate-img img   { height: 260px; }
  .corporate-img-overlay { gap: 16px; padding: 20px; }
  .corp-stat strong    { font-size: 1.3rem; }

  /* ── Reviews ── */
  .review-card  { flex: 0 0 280px; width: 280px; padding: 22px 18px 18px; }

  /* ── CTA ── */
  .cta-banner   { padding: 60px 0; }
  .cta-content h2 { font-size: 1.7rem; }
  .cta-content p  { font-size: 0.9rem; margin-bottom: 24px; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }
  .form-row     { grid-template-columns: 1fr; }

  /* ── Footer ── */
  .footer       { padding: 52px 0 0; }
  .footer-grid  { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-logo img { height: 46px; }

  /* ── Destinations ── */
  .destinations-grid { grid-template-columns: 1fr; }
  .dest-card.large   { grid-column: span 1; height: 240px; }
  .dest-card         { height: 210px; }

  /* ── Testimonials ── */
  .testimonial-card { min-width: calc(100% - 24px); }

  /* ── Modal ── */
  .modal-box      { padding: 28px 20px; margin: 12px; }
  .video-modal-box { padding: 24px 16px; }

  /* ── Back to top ── */
  .back-top { width: 44px; height: 44px; font-size: 1rem; bottom: 20px; right: 16px; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE — 480px  Small phones
═══════════════════════════════════════════════ */

@media (max-width: 480px) {

  /* ── Global ── */
  .section        { padding: 48px 0; }
  .container      { padding: 0 16px; }
  .section-header { margin-bottom: 28px; }

  /* ── Hero ── */
  .hero-content h1 { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .htag-sep        { display: none; }
  .htag-loc        { font-size: 0.65rem; }

  /* ── Stats ── */
  .stat-num  { font-size: 2rem; }
  .stat-item { flex-basis: 44%; }

  /* ── Services ── */
  .services-compact { grid-template-columns: repeat(3, 1fr); }

  /* ── Packages ── */
  .pkg-body { padding: 18px 14px; }
  .pkg-footer { flex-direction: column; gap: 12px; align-items: flex-start; }
  .pkg-footer .btn-book { width: 100%; text-align: center; }

  /* ── Why ── */
  .why-cert-box { padding: 26px 18px; }
  .cert-logo    { font-size: 2.4rem; }

  /* ── Contact ── */
  .contact-form { padding: 20px 14px; }

  /* ── CTA ── */
  .cta-banner .btn-primary { display: block; width: 100%; text-align: center; }

  /* ── Footer ── */
  .footer-cert { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .footer-cert span { font-size: 0.65rem; }

  /* ── Back to top ── */
  .back-top { width: 40px; height: 40px; font-size: 0.9rem; }
}
