/* ═══════════════════════════════════════════════════════════
   TOURZY TRAVELS & CABS — Modern Stylesheet v3
   Brand: Gold #FFCC04 | Orange #EF4323 | Blue #1771B9 | Sky #3BB3E7
   ═══════════════════════════════════════════════════════════ */

:root {
  --orange:       #EF4323;
  --orange-dark:  #C93010;
  --orange-light: #FEF0EC;
  --yellow:       #FFCC04;
  --navy:         #1771B9;
  --dark:         #0B1F4B;
  --blue:         #3BB3E7;
  --blue-light:   #E8F6FD;
  --white:        #FFFFFF;
  --off-white:    #F9FAFB;
  --grey-50:      #F8F9FF;
  --grey-100:     #EFF4FF;
  --grey-200:     #D3E4FE;
  --grey-500:     #6B7280;
  --grey-700:     #374151;
  --text:         #1A2744;
  --text-muted:   #6B7280;

  --grad-warm:    linear-gradient(135deg, #EF4323 0%, #FFCC04 100%);
  --grad-cool:    linear-gradient(135deg, #1771B9 0%, #3BB3E7 100%);
  --grad-dark:    linear-gradient(160deg, #0B1F4B 0%, #1340A0 60%, #1771B9 100%);

  --radius-sm:    10px;
  --radius-md:    18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
  --radius-full:  9999px;

  --shadow-sm:    0 2px 12px rgba(11,31,75,.06);
  --shadow-md:    0 8px 32px rgba(11,31,75,.10);
  --shadow-lg:    0 24px 64px rgba(11,31,75,.15);
  --shadow-warm:  0 8px 32px rgba(239,67,35,.28);
  --shadow-glow:  0 12px 48px rgba(239,67,35,.42);

  --header-h:     74px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Utility ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--text-muted); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--grad-warm);
  color: var(--white);
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-secondary {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(11,31,75,.22);
}
.btn-secondary:hover {
  background: var(--grad-cool);
  box-shadow: 0 8px 32px rgba(59,179,231,.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.btn-outline:hover {
  background: var(--grad-warm);
  color: var(--white);
  border-color: transparent;
}

.btn-call       { background: var(--dark); color: var(--white); padding: 11px 22px; }
.btn-call:hover { background: var(--grad-cool); transform: translateY(-1px); }

.btn-whatsapp       { background: #25D366; color: var(--white); padding: 11px 22px; }
.btn-whatsapp:hover { background: #1EBE58; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,.38); }

.btn-lg   { padding: 17px 38px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section Headings ────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.section-label::before {
  content: ''; flex-shrink: 0;
  width: 22px; height: 2px;
  background: var(--grad-warm); border-radius: 2px;
}
/* Hide decorative line when label is inside a centered block */
.text-center .section-label::before { display: none; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; line-height: 1.2;
  color: var(--dark); margin-bottom: 16px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 16px; color: var(--text-muted); font-weight: 400;
  max-width: 560px; margin: 0 auto 56px; line-height: 1.7;
}

/* ── Forms (default: light context) ────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .07em;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-control {
  width: 100%; padding: 13px 15px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 14px; color: var(--text);
  background: var(--grey-50);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(239,67,35,.10);
  background: var(--white);
}
.form-control::placeholder { color: #b0b8c9; }

.urgency-line {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; color: #dc2626;
  background: #fef2f2; border: 1px solid #fecaca;
  border-radius: var(--radius-sm); padding: 8px 12px; margin-top: 4px;
}

/* ── Booking widget — glass overrides ────────────────── */
.booking-widget .form-group label {
  color: rgba(255,255,255,.55);
  font-size: 11px; letter-spacing: .08em;
}
.booking-widget .form-control {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.booking-widget .form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255,204,4,.15);
  background: rgba(255,255,255,.18);
}
.booking-widget .form-control::placeholder { color: rgba(255,255,255,.38); }
.booking-widget .form-control option { background: var(--dark); color: var(--white); }
.booking-widget .urgency-line {
  color: #FCA5A5;
  background: rgba(220,38,38,.2);
  border-color: rgba(220,38,38,.35);
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(211,228,254,.4);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 32px rgba(11,31,75,.08);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: var(--header-h); display: flex; align-items: center; gap: 28px;
}
.header-logo img { height: 35px; width: auto; }
.header-nav { display: flex; gap: 36px; margin: 0 auto; }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--grey-700);
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--grad-warm);
  transform: scaleX(0); transition: transform var(--transition);
  border-radius: 2px;
}
.nav-link:hover { color: var(--orange); }
.nav-link:hover::after,
.nav-link.active::after  { transform: scaleX(1); }
.nav-link.active { color: var(--orange); }

.header-ctas { display: flex; gap: 10px; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--grey-200);
  padding: 20px 28px 28px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  display: block; padding: 15px 0;
  font-size: 16px; font-weight: 600; color: var(--dark);
  border-bottom: 1px solid var(--grey-100);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--orange); }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--header-h);
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(11,31,75,.97)  0%,
    rgba(11,31,75,.92)  30%,
    rgba(23,113,185,.72) 58%,
    rgba(59,179,231,.22) 80%,
    rgba(59,179,231,.05) 100%
  );
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 72px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,204,4,.15); border: 1px solid rgba(255,204,4,.35);
  color: var(--yellow); border-radius: var(--radius-full);
  padding: 7px 18px; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 22px; animation: fadeInDown .6s ease;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--yellow); border-radius: 50%;
  animation: pulse 2s infinite; flex-shrink: 0;
}

.hero-title {
  font-size: clamp(34px, 5vw, 58px); font-weight: 900;
  color: var(--white); line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -.03em;
  animation: fadeInUp .7s ease .1s both;
}
.hero-title span {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px; color: rgba(255,255,255,.68);
  margin-bottom: 28px; font-weight: 400; line-height: 1.75;
  animation: fadeInUp .7s ease .2s both;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px;
  animation: fadeInUp .7s ease .3s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 6px 13px; border-radius: var(--radius-full);
}
.hero-trust-item svg { color: var(--yellow); flex-shrink: 0; }

.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeInUp .7s ease .4s both;
}

/* Booking widget — glassmorphism card */
.booking-widget {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-xl); padding: 32px;
  box-shadow: 0 32px 80px rgba(11,31,75,.35);
  animation: fadeInRight .8s ease .2s both;
}
.booking-widget-title {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 20px; letter-spacing: -.01em;
}
.booking-tabs {
  display: flex; gap: 4px;
  background: rgba(255,255,255,.10);
  border-radius: var(--radius-sm); padding: 4px; margin-bottom: 20px;
}
.booking-tab {
  flex: 1; padding: 10px 8px; border-radius: 7px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.55);
  transition: all var(--transition); text-align: center; cursor: pointer;
}
.booking-tab.active {
  background: var(--white); color: var(--orange);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.booking-form { display: flex; flex-direction: column; gap: 12px; }

/* ════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--grad-warm);
  padding: 24px 0;
  position: relative; overflow: hidden;
}
.trust-strip::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.trust-strip-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 12px; color: var(--white); }
.trust-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.trust-item-text strong { display: block; font-size: 14px; font-weight: 700; }
.trust-item-text span   { font-size: 12px; opacity: .85; }

/* ════════════════════════════════════════════════════════════
   SERVICE CARDS
   ════════════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.service-card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  border: 1.5px solid var(--grey-200); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-warm);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 76px; height: 76px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: background var(--transition), transform var(--transition);
}
.service-card:hover .service-icon { background: var(--grad-warm); transform: scale(1.08); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-icon svg { color: var(--orange); transition: color var(--transition); }

.service-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: -.01em; }
.service-card p  { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--grad-dark);
  padding: 56px 0;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute; bottom: -40%; right: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(59,179,231,.14) 0%, transparent 65%);
  pointer-events: none;
}

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

.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 48px; background: rgba(255,255,255,.12);
}

.stat-number {
  font-size: clamp(34px, 4vw, 52px); font-weight: 900;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; letter-spacing: -.03em;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 8px; font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   TOUR PACKAGES
   ════════════════════════════════════════════════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.pkg-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }

.pkg-card-img { position: relative; height: 210px; overflow: hidden; }
.pkg-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(0.4,0,0.2,1);
}
.pkg-card:hover .pkg-card-img img { transform: scale(1.1); }
.pkg-card-img::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to top, rgba(11,31,75,.55), transparent);
  pointer-events: none;
}

.pkg-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: var(--grad-warm); color: var(--white);
  padding: 5px 13px; border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}

.pkg-card-body { padding: 20px; }
.pkg-card-body h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 4px; letter-spacing: -.01em; }
.pkg-card-body p  { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.55; }

.pkg-highlights { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.pkg-highlight-tag {
  font-size: 11px; font-weight: 600; color: var(--navy);
  background: var(--blue-light); padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pkg-card-footer { display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: 13px; color: var(--text-muted); }
.pkg-price strong {
  display: block; font-size: 19px; font-weight: 800;
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; letter-spacing: -.01em;
}

/* ════════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,204,4,.35);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px; height: 56px;
  background: rgba(239,67,35,.2);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 26px;
  transition: background var(--transition);
}
.why-card:hover .why-icon { background: rgba(255,204,4,.22); }
.why-icon svg { color: var(--yellow); }

.why-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   GOOGLE RATING & TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
.google-rating {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-full); padding: 12px 28px;
  box-shadow: var(--shadow-md); margin-bottom: 52px;
}
.stars           { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.rating-text strong { font-size: 16px; font-weight: 700; color: var(--dark); }
.rating-text span   { font-size: 13px; color: var(--text-muted); display: block; }

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

.testi-card {
  position: relative; overflow: hidden;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1.5px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.testi-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 20px;
  font-size: 80px; line-height: 1;
  font-family: Georgia, serif; font-weight: 900;
  color: var(--orange-light); pointer-events: none;
}

.testi-stars  { color: var(--yellow); font-size: 15px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-text   { font-size: 14px; color: var(--grey-700); line-height: 1.75; margin-bottom: 20px; position: relative; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-cool);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testi-name     { font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-location { font-size: 12px; color: var(--text-muted); }

/* ════════════════════════════════════════════════════════════
   QUICK ENQUIRY
   ════════════════════════════════════════════════════════════ */
.quick-enquiry-section { background: var(--off-white); }
.quick-enquiry-grid { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: center; }

.quick-enquiry-form-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 40px; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--grey-200);
}
.quick-form-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 6px; letter-spacing: -.01em; }
.quick-form-sub   { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* ════════════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(11,31,75,.6); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--white); border-radius: var(--radius-xl);
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(11,31,75,.25);
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(0.4,0,0.2,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-header {
  background: var(--grad-dark);
  padding: 30px 30px 26px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}
.modal-header h2 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.modal-header p  { font-size: 14px; color: rgba(255,255,255,.6); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; background: rgba(255,255,255,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; line-height: 1;
  transition: background var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,.25); }
.modal-body { padding: 28px; }
.modal-body .form-group { margin-bottom: 16px; }
.modal-body .form-control { font-size: 15px; padding: 13px 16px; }
.modal-footer { padding: 0 28px 28px; }
.modal-wa-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); margin-top: 12px;
}
.modal-wa-note svg { color: #25D366; flex-shrink: 0; }

.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success .success-icon {
  width: 72px; height: 72px; background: #D1FAE5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 36px;
}
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.form-success p  { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }

/* ════════════════════════════════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed; right: 22px; bottom: 100px; z-index: 999;
  width: 60px; height: 60px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: bounceIn .6s ease .5s both;
}
.fab-whatsapp:hover { transform: scale(1.12); box-shadow: 0 12px 44px rgba(37,211,102,.55); }
.fab-whatsapp svg { color: var(--white); }

.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -4px 20px rgba(11,31,75,.10);
  padding: 10px 16px;
  grid-template-columns: 1fr 1fr; gap: 10px;
}
.mobile-sticky-bar .btn {
  justify-content: center; padding: 14px 8px;
  font-size: 15px; border-radius: var(--radius-md);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 72px; position: relative; overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-warm);
}

.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px 56px;
  display: grid; grid-template-columns: 260px 1fr auto; gap: 56px;
}
.footer-brand img   { margin-bottom: 16px; }
.footer-tagline     {
  font-size: 15px; font-weight: 500; font-style: italic;
  color: rgba(255,255,255,.5); margin-bottom: 24px; line-height: 1.7;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-icon:hover { background: var(--grad-warm); color: var(--white); border-color: transparent; transform: translateY(-2px); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col-title {
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 18px; text-transform: uppercase; letter-spacing: .1em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,.48); transition: color var(--transition); }
.footer-link:hover { color: var(--yellow); }

.footer-contact .contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact .contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.55);
}
.footer-contact .contact-list li svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 28px; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.3);
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--grey-200); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item:has(.faq-question.open) { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 22px; font-size: 15px; font-weight: 600; color: var(--dark);
  text-align: left; gap: 12px; transition: background var(--transition);
}
.faq-question:hover   { background: var(--grey-50); }
.faq-question.open    { color: var(--orange); }
.faq-icon { flex-shrink: 0; transition: transform var(--transition); color: var(--text-muted); }
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--orange); }
.faq-answer { font-size: 14px; color: var(--grey-700); line-height: 1.75; padding: 0 22px 20px; display: none; }
.faq-answer.open { display: block; }

/* ════════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════════ */
@keyframes fadeInUp    { from { opacity:0; transform:translateY(28px);  } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown  { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(32px);  } to { opacity:1; transform:translateX(0); } }
@keyframes bounceIn    { 0% { transform:scale(0); } 70% { transform:scale(1.15); } 100% { transform:scale(1); } }
@keyframes pulse       { 0%,100% { box-shadow:0 0 0 0 rgba(255,204,4,.5); } 50% { box-shadow:0 0 0 8px rgba(255,204,4,0); } }

.js-ready .animate-on-scroll {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(0.4,0,0.2,1), transform .65s cubic-bezier(0.4,0,0.2,1);
}
.js-ready .animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px; text-align: center;
  }
  .hero-trust, .hero-cta-row { justify-content: center; }
  .booking-widget { max-width: 560px; margin: 0 auto; }

  .services-grid     { grid-template-columns: repeat(2, 1fr); }
  .packages-grid     { grid-template-columns: repeat(2, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }

  /* Remove stat dividers on 2-col grid */
  .stat-item + .stat-item::before { display: none; }

  .quick-enquiry-grid { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  /* Header */
  .header-nav, .header-ctas { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner { padding: 48px 20px; gap: 36px; }
  .hero-sub   { font-size: 15px; }

  /* Booking widget */
  .booking-widget { padding: 22px 18px; }
  .booking-widget-title { font-size: 16px; }

  /* Trust strip */
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Grids */
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .packages-grid     { grid-template-columns: 1fr 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Quick enquiry */
  .quick-enquiry-form-card { padding: 28px 20px; }

  /* Footer */
  .footer-inner  { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand  { grid-column: unset; }
  .footer-links  { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Sticky / floating */
  .mobile-sticky-bar { display: grid; }
  .fab-whatsapp { bottom: 82px; }

  body    { padding-bottom: 70px; }
  .section { padding: 64px 0; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title  { font-size: 30px; letter-spacing: -.02em; }
  .hero-badge  { font-size: 11px; padding: 6px 13px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  .services-grid     { grid-template-columns: 1fr; }
  .packages-grid     { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .footer-links      { grid-template-columns: 1fr; }

  .booking-widget { padding: 18px 14px; border-radius: var(--radius-lg); }

  /* Stacked trust items on very small phones */
  .hero-trust { gap: 8px; }
  .hero-trust-item { font-size: 11px; padding: 5px 10px; }

  /* Modal full-screen feel */
  .modal { border-radius: var(--radius-lg); }
  .modal-header { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .google-rating { flex-direction: column; gap: 8px; text-align: center; padding: 16px 24px; }
}
