/* ══════════════════════════════════════════
   SRI VARU TRAVELS — styles.css
   Breakpoints: 1200 | 1024 | 768 | 480 | 360
══════════════════════════════════════════ */

:root {
  --green: #1a6b4a; --green-dark: #0f4630; --green-light: #2d9e70;
  --gold: #e8a020; --gold-light: #f5c842;
  --cream: #fdf8ef; --white: #ffffff; --text: #1a1a1a; --text-muted: #666;
  --pad-x: 60px; --pad-y: 90px;
  --radius-card: 24px; --radius-btn: 50px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* PAGE FADE IN */
body { opacity: 0; animation: pageFadeIn 0.8s ease 0.05s forwards; }
@keyframes pageFadeIn { to { opacity: 1; } }

/* SCROLL PROGRESS */
#scroll-progress { position: fixed; top: 0; left: 0; z-index: 1001; height: 3px; width: 0%; background: linear-gradient(90deg, var(--gold), var(--green-light)); transition: width .1s linear; border-radius: 0 2px 2px 0; }

/* BACK TO TOP */
#back-top { position: fixed; bottom: 96px; right: 28px; z-index: 900; width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: white; border: none; font-size: 18px; cursor: pointer; box-shadow: 0 4px 16px rgba(26,107,74,.35); opacity: 0; transform: translateY(16px); transition: opacity .3s, transform .3s, background .2s; display: flex; align-items: center; justify-content: center; }
#back-top.show { opacity: 1; transform: translateY(0); }
#back-top:hover { background: var(--gold); }

/* LOGO */
.logo-icon { width: 44px; height: 44px; background: var(--green); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; transition: transform .4s cubic-bezier(.34,1.56,.64,1); overflow: hidden; flex-shrink: 0; }
.logo:hover .logo-icon { transform: rotate(15deg) scale(1.1); }
.logo-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo-fallback { display: none; color: white; font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 900; letter-spacing: -0.5px; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; display: flex; align-items: center; justify-content: space-between; padding: 14px var(--pad-x); background: rgba(255,255,255,.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,.07); transition: all .3s; gap: 16px; }
nav.scrolled { padding: 10px var(--pad-x); box-shadow: 0 4px 30px rgba(0,0,0,.12); }
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text { line-height: 1.15; }
.logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 16px; color: var(--green-dark); white-space: nowrap; }
.logo-text span { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; list-style: none; flex: 1; justify-content: center; }
.nav-links a { color: var(--text); font-size: 14px; font-weight: 500; transition: color .2s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--green); border-radius: 2px; transition: width .3s; }
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold); color: white; border: none; padding: 10px 22px; border-radius: var(--radius-btn); font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .3s; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: var(--green); transform: translateY(-2px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav-mobile-panel { display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 999; background: white; flex-direction: column; padding: 12px 24px 20px; box-shadow: 0 12px 30px rgba(0,0,0,.12); border-top: 1px solid #f0f0f0; }
.nav-mobile-panel.open { display: flex; }
.nav-mobile-panel a { display: block; padding: 13px 0; color: var(--text); font-size: 15px; font-weight: 500; border-bottom: 1px solid #f5f5f5; transition: color .2s, padding-left .2s; }
.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-panel a:hover { color: var(--green); padding-left: 8px; }

/* HERO */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%); position: relative; overflow: hidden; display: flex; align-items: center; padding: 100px var(--pad-x) 100px; gap: 48px; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 600px; height: 600px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.hero::after  { content: ''; position: absolute; bottom: -80px; left: 30%; width: 400px; height: 400px; border-radius: 50%; background: rgba(232,160,32,.15); pointer-events: none; }
.hero-content { flex: 1; z-index: 2; min-width: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,160,32,.2); border: 1px solid rgba(232,160,32,.4); color: var(--gold-light); padding: 6px 16px; border-radius: var(--radius-btn); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; animation: fadeUp .6s ease both, badgeShimmer 3s 1.2s ease-in-out infinite; }
@keyframes badgeShimmer { 0%,100% { box-shadow: 0 0 0 0 rgba(245,200,66,0); } 50% { box-shadow: 0 0 12px 3px rgba(245,200,66,.35); } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(34px,5vw,66px); color: white; line-height: 1.1; margin-bottom: 18px; animation: fadeUp .6s .1s ease both; }
.hero h1 em { color: var(--gold-light); font-style: italic; }
.hero p { color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; max-width: 480px; margin-bottom: 28px; animation: fadeUp .6s .2s ease both; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .6s .3s ease both; }
.btn-primary { background: var(--gold); color: white; padding: 14px 30px; border-radius: var(--radius-btn); font-weight: 700; font-size: 15px; transition: all .3s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(232,160,32,.4); }
.btn-outline { background: transparent; color: white; padding: 14px 30px; border-radius: var(--radius-btn); font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,.5); transition: all .3s; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: white; }
.hero-stats { display: flex; gap: 36px; margin-top: 46px; animation: fadeUp .6s .4s ease both; flex-wrap: wrap; }
.stat strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: var(--gold-light); line-height: 1; }
.stat span { font-size: 11px; color: rgba(255,255,255,.65); letter-spacing: 1px; text-transform: uppercase; }

/* HERO IMAGE WRAP (desktop) */
.hero-image-wrap { flex: 0 0 420px; display: flex; justify-content: flex-end; z-index: 2; position: relative; animation: fadeRight .8s .2s ease both; }
.hero-card-float { width: 370px; height: 520px; border-radius: 32px; overflow: hidden; position: relative; box-shadow: 0 40px 80px rgba(0,0,0,.4); flex-shrink: 0; }
.hero-card-float::after { display: none; }
.floating-badge-1, .floating-badge-2 { position: absolute; z-index: 10; background: white; border-radius: 16px; padding: 12px 18px; box-shadow: 0 10px 30px rgba(0,0,0,.15); display: flex; align-items: center; gap: 10px; animation: float 3s ease-in-out infinite; }
.floating-badge-1 { top: 30px; left: -60px; }
.floating-badge-2 { bottom: 60px; left: -80px; animation-delay: 1.5s; }
.floating-badge-1 .fb-icon, .floating-badge-2 .fb-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.floating-badge-1 .fb-icon { background: #e8f5e9; }
.floating-badge-2 .fb-icon { background: #fff8e1; }
.fb-text strong { display: block; font-size: 13px; font-weight: 700; }
.fb-text span { font-size: 11px; color: var(--text-muted); }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; width: 100%; }

/* HERO MOBILE VIDEO — horizontal strip at bottom, hidden on desktop */
.hero-mobile-video { display: none; }

/* MARQUEE */
.highlights { background: var(--green); padding: 14px 0; overflow: hidden; }
.highlights-track { display: flex; gap: 60px; animation: marquee 22s linear infinite; white-space: nowrap; }
.hl-item { display: flex; align-items: center; gap: 8px; color: white; font-size: 13px; font-weight: 500; flex-shrink: 0; }
.hl-item .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* BOOKING SECTION */
.booking-section { background: var(--cream); padding: 60px var(--pad-x); }
.booking-section-inner { max-width: 1200px; margin: 0 auto; }
.booking-section-header { margin-bottom: 36px; }
.booking-section-header .section-title { margin-bottom: 8px; }
.booking-form-grid { display: grid; grid-template-columns: repeat(5,1fr) auto; gap: 14px; align-items: end; background: white; border-radius: 20px; padding: 30px 32px; box-shadow: 0 8px 40px rgba(26,107,74,.10), 0 2px 8px rgba(0,0,0,.05); border: 1.5px solid rgba(26,107,74,.08); }
.bf-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bf-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); white-space: nowrap; }
.bf-field select, .bf-field input { padding: 11px 13px; border: 2px solid #eee; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 14px; background: #fafafa; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.bf-field select:focus, .bf-field input:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 4px rgba(26,107,74,.1); }
.bb-btn { background: var(--gold); color: white; border: none; padding: 12px 22px; border-radius: 12px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .3s; white-space: nowrap; height: 46px; }
.bb-btn:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,107,74,.25); }

/* GLASS FEATURE CARDS */
.glass-cards-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); padding: 70px var(--pad-x); position: relative; overflow: hidden; }
.glass-cards-section::before { content: ''; position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.04); pointer-events: none; }
.glass-cards-section::after  { content: ''; position: absolute; bottom: -100px; right: -60px; width: 420px; height: 420px; border-radius: 50%; background: rgba(232,160,32,.08); pointer-events: none; }
.glass-cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; z-index: 1; }
.glass-card { background: rgba(255,255,255,0.09); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.18); border-radius: 24px; padding: 30px 24px; position: relative; overflow: hidden; transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .4s, background .3s; box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 1px 0 rgba(255,255,255,.15) inset; }
.glass-card:hover { transform: translateY(-10px) scale(1.02); background: rgba(255,255,255,0.15); box-shadow: 0 24px 56px rgba(0,0,0,.28), 0 8px 16px rgba(0,0,0,.15), 0 1px 0 rgba(255,255,255,.2) inset; }
.gc-glow { position: absolute; width: 160px; height: 160px; border-radius: 50%; filter: blur(48px); opacity: 0.22; pointer-events: none; top: -40px; right: -40px; transition: opacity .4s; }
.glass-card:hover .gc-glow { opacity: 0.42; }
.gc-glow-green { background: var(--green-light); }
.gc-glow-gold  { background: var(--gold); }
.gc-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.glass-card h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: white; margin-bottom: 8px; }
.glass-card p  { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }

/* SECTION COMMONS */
section { padding: var(--pad-y) var(--pad-x); }
.section-label { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); flex-shrink: 0; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px,4vw,48px); line-height: 1.15; margin-bottom: 14px; }
.section-title em { color: var(--green); font-style: italic; }
.section-sub { color: var(--text-muted); font-size: 15px; line-height: 1.7; max-width: 520px; }

/* SERVICES */
.services-section { background: var(--cream); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: white; border-radius: var(--radius-card); overflow: hidden; border: 2px solid transparent; cursor: pointer; position: relative; transition: all .35s cubic-bezier(.4,0,.2,1); padding: 28px; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,var(--green) 0%,var(--green-light) 100%); opacity: 0; transition: opacity .35s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 56px rgba(26,107,74,.18); border-color: var(--green); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .sc-icon { background: rgba(255,255,255,.2); animation: iconBounce .45s cubic-bezier(.34,1.56,.64,1); }
.service-card:hover .sc-title, .service-card:hover .sc-desc, .service-card:hover .sc-link { color: white; }
.sc-icon  { width: 48px; height: 48px; background: #e8f5e9; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 12px; position: relative; z-index: 1; transition: background .35s; }
.sc-title { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; position: relative; z-index: 1; transition: color .35s; }
.sc-desc  { color: var(--text-muted); font-size: 13px; line-height: 1.6; position: relative; z-index: 1; transition: color .35s; }
.sc-link  { display: inline-flex; align-items: center; gap: 6px; color: var(--green); font-size: 13px; font-weight: 700; margin-top: 12px; position: relative; z-index: 1; transition: color .35s, gap .2s; }
.service-card:hover .sc-link { gap: 10px; }

/* PACKAGES */
.packages-section { background: var(--green-dark); padding: var(--pad-y) var(--pad-x); }
.packages-section .section-title { color: white; }
.packages-section .section-label { color: var(--gold-light); }
.packages-section .section-label::before { background: var(--gold-light); }

.pkg-hero-wrap { margin-top: 48px; }
.pkg-hero-card { border-radius: 28px; overflow: hidden; position: relative; cursor: default; height: 520px; transition: box-shadow .4s; }
.pkg-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.pkg-hero-card:hover .pkg-bg { transform: scale(1.03); }
.pkg-card-inner { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,70,48,.96) 0%, rgba(0,0,0,.15) 55%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 48px; transition: all .5s; overflow: hidden; }
.pkg-tag { display: inline-block; background: var(--gold); color: white; padding: 5px 14px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; width: fit-content; }
.pkg-title { font-family: 'Playfair Display', serif; font-size: clamp(24px,4vw,42px); color: white; line-height: 1.15; margin-bottom: 10px; }
.pkg-meta { display: flex; gap: 18px; margin-bottom: 14px; flex-wrap: wrap; }
.pkg-meta span { color: rgba(255,255,255,.7); font-size: 13px; }
.pkg-desc { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.65; max-height: 0; overflow: hidden; transition: max-height .55s cubic-bezier(.4,0,.2,1), opacity .4s; opacity: 0; }
.pkg-includes { list-style: none; margin-top: 14px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .55s .08s cubic-bezier(.4,0,.2,1), opacity .4s .08s; }
.pkg-includes li { color: rgba(255,255,255,.85); font-size: 13px; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.pkg-includes li::before { content: "\2713"; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* Actions — always visible on the card */
.pkg-actions { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; align-items: center; }
.pkg-explore-btn { background: rgba(255,255,255,.18); color: white; border: 2px solid rgba(255,255,255,.5); padding: 11px 24px; border-radius: 50px; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .3s; backdrop-filter: blur(8px); }
.pkg-explore-btn:hover { background: rgba(255,255,255,.3); border-color: white; }
.pkg-btn { background: var(--gold); color: white; border: none; padding: 13px 30px; border-radius: 50px; font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .3s; width: fit-content; }
.pkg-btn:hover { background: white; color: var(--green); }

.pkg-close { display: none; position: absolute; top: 24px; right: 24px; z-index: 10; background: rgba(255,255,255,.15); color: white; border: none; width: 48px; height: 48px; border-radius: 50%; font-size: 20px; cursor: pointer; transition: background .2s; backdrop-filter: blur(10px); align-items: center; justify-content: center; }
.pkg-close:hover { background: rgba(255,255,255,.3); }

.pkg-card.expanded { position: fixed !important; top: 0 !important; left: 0 !important; width: 100vw !important; height: 100dvh !important; border-radius: 0 !important; z-index: 2000; cursor: default; }
.pkg-card.expanded .pkg-close { display: flex; }
.pkg-card.expanded .pkg-card-inner { background: linear-gradient(to top, rgba(15,70,48,.97) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.15) 100%); justify-content: center; padding: 80px var(--pad-x); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.pkg-card.expanded .pkg-desc { max-height: 400px; opacity: 1; }
.pkg-card.expanded .pkg-includes { max-height: 500px; opacity: 1; }

.pkg-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 1999; backdrop-filter: blur(4px); }
.pkg-overlay.active { display: block; }

/* ══════════════════════════════════════════
   FLEET — New category card design
══════════════════════════════════════════ */
.fleet-section { background: white; }
.fleet-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }

.fleet-cat-card { background: #fff; border: 1.5px solid #eee; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); transition: box-shadow .35s, border-color .35s, transform .35s; display: flex; flex-direction: column; }
.fleet-cat-card:hover { box-shadow: 0 20px 50px rgba(26,107,74,.14); border-color: var(--green); transform: translateY(-5px); }

/* Slideshow */
.fcc-slideshow { position: relative; height: 200px; overflow: hidden; background: #f4f4f4; flex-shrink: 0; }
.fcc-slides { width: 100%; height: 100%; position: relative; }
.fcc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease; }
.fcc-slide.active { opacity: 1; }
.fcc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fcc-slide-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%); color: white; font-size: 11px; font-weight: 600; padding: 20px 10px 8px; text-align: center; }

/* Arrows */
.fcc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(255,255,255,.82); border: none; width: 30px; height: 30px; border-radius: 50%; font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--green-dark); transition: background .2s, transform .2s; box-shadow: 0 2px 8px rgba(0,0,0,.15); opacity: 0; }
.fcc-slideshow:hover .fcc-arrow { opacity: 1; }
.fcc-prev { left: 8px; }
.fcc-next { right: 8px; }
.fcc-arrow:hover { background: var(--green); color: white; transform: translateY(-50%) scale(1.1); }

/* Dots */
.fcc-dots { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 5; }
.fcc-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); cursor: pointer; transition: background .2s, transform .2s; border: 1px solid rgba(255,255,255,.4); }
.fcc-dot.active { background: white; transform: scale(1.3); }

/* Category badge */
.fcc-cat-badge { position: absolute; top: 10px; left: 10px; background: var(--green); color: white; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 50px; letter-spacing: .5px; text-transform: uppercase; z-index: 5; }

/* Body */
.fcc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.fcc-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.fcc-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--text); }
.fcc-subtitle { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.fcc-seats-pill { background: #e8f5e9; color: var(--green); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; white-space: nowrap; flex-shrink: 0; }

.fcc-models { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.fcc-models li { font-size: 12px; color: var(--text-muted); padding: 3px 0 3px 14px; position: relative; border-bottom: 1px solid #f5f5f5; }
.fcc-models li:last-child { border-bottom: none; }
.fcc-models li::before { content: '›'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.fcc-amenities { display: flex; flex-wrap: wrap; gap: 6px; }
.fcc-amenities span { font-size: 10px; background: #f5f5f5; border-radius: 50px; padding: 3px 9px; color: var(--text-muted); font-weight: 500; }

.fcc-book-btn { display: block; text-align: center; margin-top: auto; padding: 11px 16px; background: var(--green); color: white; border-radius: 50px; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700; transition: background .3s, transform .2s; text-decoration: none; }
.fcc-book-btn:hover { background: var(--gold); transform: translateY(-2px); }

/* WHY */
.why-section { background: linear-gradient(135deg,var(--green) 0%,var(--green-dark) 100%); display: flex; gap: 60px; align-items: center; padding: var(--pad-y) var(--pad-x); }
.why-content { flex: 1; min-width: 0; }
.why-content .section-label { color: var(--gold-light); }
.why-content .section-label::before { background: var(--gold-light); }
.why-content .section-title { color: white; }
.why-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: rgba(255,255,255,.08); border-radius: 16px; transition: background .3s, opacity .5s, transform .5s; opacity: 0; transform: translateX(-24px); }
.why-item.visible { opacity: 1; transform: none; }
.why-item:hover { background: rgba(255,255,255,.14); }
.why-item:nth-child(1){transition-delay:0s} .why-item:nth-child(2){transition-delay:.1s} .why-item:nth-child(3){transition-delay:.2s} .why-item:nth-child(4){transition-delay:.3s}
.why-icon { font-size: 20px; flex-shrink: 0; width: 44px; height: 44px; background: rgba(255,255,255,.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-text strong { display: block; color: white; font-size: 15px; margin-bottom: 3px; }
.why-text p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; }
.why-cta-box { flex: 0 0 340px; background: white; border-radius: 32px; padding: 36px; text-align: center; box-shadow: 0 30px 60px rgba(0,0,0,.2); animation: ctaGlow 4s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100%{box-shadow:0 30px 60px rgba(0,0,0,.2)}50%{box-shadow:0 30px 80px rgba(232,160,32,.25)} }
.why-cta-box .phone { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--green); margin: 10px 0 4px; line-height: 1.2; }
.why-cta-box > p { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }
.why-cta-box .btn-primary { width: 100%; justify-content: center; }

/* STATE TRIPS */
.pilgrim-section { background: white; }
.pilgrim-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 46px; }
.pilgrim-card { border-radius: var(--radius-card); overflow: hidden; position: relative; height: 280px; cursor: pointer; transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s; }
.pilgrim-card:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,.2); }
.pilgrim-card.featured { grid-column: span 2; height: 380px; }
.pilgrim-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.pilgrim-card:hover .pilgrim-bg { transform: scale(1.08); }
.pilgrim-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(15,70,48,.9) 0%,transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.pilgrim-badge { background: var(--gold); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; width: fit-content; margin-bottom: 8px; }
.pilgrim-title { font-family: 'Playfair Display', serif; font-size: 20px; color: white; margin-bottom: 6px; }
.pilgrim-card.featured .pilgrim-title { font-size: clamp(22px,3vw,34px); }
.pilgrim-loc { color: rgba(255,255,255,.7); font-size: 13px; }

/* DESTINATION SLIDER */
.destinations-section { background: var(--cream); }
.dest-slider-wrap { position: relative; margin-top: 48px; overflow: hidden; }
.dest-track { display: flex; gap: 22px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.dest-card { flex: 0 0 calc(33.333% - 15px); border-radius: 22px; overflow: hidden; position: relative; height: 320px; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,.1); transition: transform .4s cubic-bezier(.34,1.2,.64,1), box-shadow .4s; flex-shrink: 0; }
.dest-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 24px 56px rgba(26,107,74,.22); }
.dest-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(10,46,30,.9) 0%,rgba(0,0,0,.1) 55%,transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.dest-tag { display: inline-block; background: rgba(232,160,32,.9); color: white; padding: 4px 11px; border-radius: 50px; font-size: 11px; font-weight: 700; width: fit-content; margin-bottom: 8px; }
.dest-overlay h4 { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 4px; }
.dest-overlay p  { color: rgba(255,255,255,.65); font-size: 12px; }
.dest-book-btn { position: absolute; bottom: 20px; right: 18px; background: var(--gold); color: white; padding: 8px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.dest-card:hover .dest-book-btn { opacity: 1; transform: translateY(0); }
.dest-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 30px; }
.dest-btn { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #ddd; background: white; cursor: pointer; font-size: 17px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.dest-btn:hover { background: var(--green); border-color: var(--green); color: white; }
.dest-dots { display: flex; gap: 8px; align-items: center; }
.dest-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all .3s; }
.dest-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* TESTIMONIALS */
.testimonials-section { background: white; }
.testi-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }

/* Viewport clips the track */
.testi-viewport { overflow: hidden; width: 100%; }

/* Track: flex row, each card sized by JS */
.testi-track {
  display: flex;
  gap: 24px;
  transform: translateX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testi-card {
  /* width set by JS via --testi-card-w */
  flex: 0 0 var(--testi-card-w, 31%);
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .4s ease, box-shadow .3s;
  /* always visible — no opacity 0 */
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
.testi-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 90px; color: #dceedd; position: absolute; top: -10px; right: 16px; line-height: 1; pointer-events: none; }
.testi-stars { color: var(--gold); font-size: 15px; margin-bottom: 12px; }
.testi-text  { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 16px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi-name strong { display: block; font-size: 14px; }
.testi-name span { color: var(--text-muted); font-size: 12px; }
.testi-nav { display: flex; gap: 10px; }
.testi-btn { width: 42px; height: 42px; border-radius: 50%; border: 2px solid #ddd; background: white; cursor: pointer; font-size: 17px; display: flex; align-items: center; justify-content: center; transition: all .2s; }
.testi-btn:hover { background: var(--green); border-color: var(--green); color: white; }

/* Dots */
.testi-dots-wrap { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all .3s; border: none; padding: 0; display: inline-block; }
.testi-dot.active { background: var(--green); width: 24px; border-radius: 4px; }

/* CONTACT */
.contact-section { background: var(--green-dark); display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-label { color: var(--gold-light); }
.contact-info .section-label::before { background: var(--gold-light); }
.contact-info .section-title { color: white; }
.contact-info > p { color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.cm-item { display: flex; align-items: center; gap: 14px; padding: 14px 16px; background: rgba(255,255,255,.07); border-radius: 14px; text-decoration: none; transition: background .2s; }
.cm-item:hover { background: rgba(255,255,255,.12); }
.cm-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.cm-icon.green{background:#25D366}.cm-icon.blue{background:#0088cc}.cm-icon.orange{background:var(--gold)}
.cm-text strong { display: block; color: white; font-size: 14px; }
.cm-text span   { color: rgba(255,255,255,.5); font-size: 12px; }
.contact-form { background: white; border-radius: 28px; padding: 36px; box-shadow: 0 40px 80px rgba(0,0,0,.2); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 5px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 13px; border: 2px solid #eee; border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: 14px; outline: none; transition: border-color .2s, box-shadow .2s; resize: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(26,107,74,.1); }
.form-field textarea { height: 88px; }
.form-submit { width: 100%; padding: 14px; background: var(--green); color: white; border: none; border-radius: 10px; font-family: 'DM Sans',sans-serif; font-size: 16px; font-weight: 700; cursor: pointer; transition: all .3s; }
.form-submit:hover { background: var(--gold); transform: translateY(-2px); }

/* ══════════════════════════════════════════
   FOOTER — full logo
══════════════════════════════════════════ */
footer { background: #0a2e1e; color: white; padding: 56px var(--pad-x) 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }

/* Full logo in footer */
.footer-logo-full { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.footer-logo-img { width: 200px; height: 200px; border-radius: 18px; object-fit: cover; border: 3px solid rgba(255,255,255,.15); display: block; flex-shrink: 0; }
.footer-logo-fallback { display: none; }
.footer-logo-text { line-height: 1.3; }
.footer-logo-text strong { display: block; font-family: 'Playfair Display', serif; font-size: 20px; color: white; }
.footer-logo-text span { display: block; font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.footer-logo-text small { display: block; font-size: 10px; color: var(--gold-light); margin-top: 4px; font-weight: 600; }

.footer-brand p { color: rgba(255,255,255,.5); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 17px; transition: background .2s; }
.social-btn:hover { background: var(--gold); }
.footer-col h4 { font-family: 'Playfair Display', serif; font-size: 15px; margin-bottom: 16px; color: var(--gold-light); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.5); font-size: 13px; transition: color .2s, transform .2s; display: inline-block; }
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,.35); font-size: 12px; }
.footer-bottom a { color: var(--gold-light); }

/* WA FLOAT */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 25px rgba(37,211,102,.4); font-size: 26px; animation: floatAnim 2s ease-in-out infinite; transition: transform .2s; }
.whatsapp-float:hover { transform: scale(1.12) !important; }
.whatsapp-float::before { content: ''; position: absolute; width: 54px; height: 54px; border-radius: 50%; background: #25D366; opacity: .4; animation: ripple 2s ease-out infinite; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1{transition-delay:.1s}.reveal-delay-2{transition-delay:.2s}.reveal-delay-3{transition-delay:.3s}.reveal-delay-4{transition-delay:.4s}
.services-grid .service-card:nth-child(odd)  { transform: translateX(-28px); opacity: 0; }
.services-grid .service-card:nth-child(even) { transform: translateX(28px);  opacity: 0; }
.services-grid .service-card.visible         { transform: none; opacity: 1; }

/* KEYFRAMES */
@keyframes fadeUp    { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:none} }
@keyframes fadeRight { from{opacity:0;transform:translateX(30px)} to{opacity:1;transform:none} }
@keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes float     { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes marquee   { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes ripple    { 0%{transform:scale(1);opacity:.4} 100%{transform:scale(2.2);opacity:0} }
@keyframes iconBounce{ 0%{transform:scale(1)} 50%{transform:scale(1.3) rotate(-8deg)} 100%{transform:scale(1)} }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

@media (max-width:1200px) {
  :root { --pad-x: 40px; }
  .booking-form-grid { grid-template-columns: repeat(3,1fr); }
  .bf-submit-wrap { grid-column: 1 / -1; }
  .bb-btn { width: auto; }
  .glass-cards-grid { gap: 18px; }
  .fleet-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
  .footer-grid .footer-col:last-child { grid-column: 2 / span 2; }
}

@media (max-width:1024px) {
  :root { --pad-x: 32px; --pad-y: 70px; }
  nav { padding: 12px var(--pad-x); }
  nav.scrolled { padding: 10px var(--pad-x); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { padding: 9px 16px; font-size: 13px; }
  .hero { flex-direction: column; padding: 90px var(--pad-x) 70px; text-align: center; align-items: center; }
  .hero-content { max-width: 620px; }
  .hero h1 { font-size: clamp(30px,7vw,52px); }
  .hero p { max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-image-wrap { display: none; }
  .booking-form-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 22px 24px; }
  .bf-submit-wrap { grid-column: 1 / -1; }
  .bb-btn { width: 100%; }
  .glass-cards-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-header > div:last-child { align-items: flex-start !important; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .pkg-hero-card { height: 440px; }
  .pkg-card-inner { padding: 32px; }
  .fleet-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { flex-direction: column; gap: 40px; }
  .why-cta-box { flex: none; width: 100%; max-width: 480px; margin: 0 auto; }
  .pilgrim-grid { grid-template-columns: 1fr 1fr; }
  .pilgrim-card.featured { grid-column: span 2; height: 330px; }
  .pilgrim-card { height: 240px; }
  .dest-card { flex: 0 0 calc(50% - 11px); }
  .testi-card { flex: 0 0 var(--testi-card-w, 47%); }
  .contact-section { grid-template-columns: 1fr; gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-grid .footer-brand { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
}

@media (max-width:768px) {
  :root { --pad-x: 20px; --pad-y: 56px; }
  nav { padding: 10px var(--pad-x); }
  .nav-mobile-panel { top: 56px; padding: 10px var(--pad-x) 18px; }
  .logo-text span { display: none; }
  .nav-cta { font-size: 12px; padding: 8px 14px; }

  /* Hero mobile layout */
  .hero { padding-top: 76px; padding-bottom: 0; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-content { padding: 0 var(--pad-x) 32px; }
  .hero-image-wrap { display: none; }

  /* Mobile video — horizontal strip at the bottom of hero */
  .hero-mobile-video { display: block; width: 100%; height: 220px; overflow: hidden; position: relative; margin-top: 0; flex-shrink: 0; z-index: 2; }
  .hero-mobile-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero-mobile-video::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40px; background: linear-gradient(to bottom, var(--green-dark), transparent); pointer-events: none; }

  /* The wave goes AFTER mobile video, so push it out */
  .hero-wave { display: none; }

  .hero h1 { font-size: clamp(26px,8vw,42px); }
  .hero p { font-size: 15px; }
  .hero-stats { gap: 16px 20px; }
  .stat strong { font-size: 30px; }

  .booking-section { padding: 48px var(--pad-x); }
  .booking-form-grid { grid-template-columns: 1fr; gap: 10px; padding: 20px; border-radius: 16px; }
  .bf-submit-wrap { grid-column: 1; }
  .glass-cards-section { padding: 56px var(--pad-x); }
  .glass-cards-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .glass-card { padding: 22px 18px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .service-card { padding: 22px 18px; }
  .sc-title { font-size: 16px; }
  .pkg-hero-card { height: auto; min-height: 380px; }
  .pkg-card-inner { padding: 24px; justify-content: flex-end; }
  .pkg-card.expanded .pkg-card-inner { padding: 60px 20px 32px; justify-content: flex-start; overflow-y: auto; }
  .fleet-cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .fcc-slideshow { height: 160px; }
  .why-cta-box { padding: 26px 20px; }
  .why-cta-box .phone { font-size: 24px; }
  .pilgrim-grid { grid-template-columns: 1fr; gap: 16px; }
  .pilgrim-card.featured { grid-column: span 1; height: 280px; }
  .pilgrim-card { height: 210px; }
  .pilgrim-title { font-size: 18px; }
  .pilgrim-card.featured .pilgrim-title { font-size: clamp(18px,5vw,26px); }
  .dest-card { flex: 0 0 calc(50% - 11px); height: 260px; }
  .testi-card { flex: 0 0 var(--testi-card-w, 100%); }
  .testi-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .contact-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { padding: 44px var(--pad-x) 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .whatsapp-float { width: 48px; height: 48px; font-size: 22px; bottom: 18px; right: 18px; }
  #back-top { bottom: 76px; right: 18px; width: 40px; height: 40px; }
}

@media (max-width:480px) {
  :root { --pad-x: 16px; --pad-y: 48px; }
  .hero h1 { font-size: clamp(24px,9vw,36px); }
  .hero p { font-size: 14px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { justify-content: center; padding: 13px 20px; }
  .hero-stats { gap: 12px 18px; flex-wrap: wrap; justify-content: center; }
  .stat strong { font-size: 28px; }
  .hero-mobile-video { height: 180px; }
  .glass-cards-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:nth-child(odd),
  .services-grid .service-card:nth-child(even) { transform: translateY(20px); }
  .pkg-hero-card { height: auto; min-height: 420px; }
  .pkg-title { font-size: clamp(20px,6vw,28px); }
  .fleet-cat-grid { grid-template-columns: 1fr; }
  .dest-card { flex: 0 0 88%; height: 260px; }
  .testi-card { padding: 20px 16px; }
  .testi-text { font-size: 13px; }
  .contact-form { padding: 20px 16px; border-radius: 20px; }
  .contact-form h3 { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .section-title { font-size: clamp(22px,7vw,30px); }
  .why-item { padding: 14px; }
  .pkg-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .pkg-explore-btn, .pkg-btn { width: 100%; text-align: center; justify-content: center; padding: 13px 20px; font-size: 13px; }
}

@media (max-width:360px) {
  :root { --pad-x: 14px; }
  nav { padding: 10px var(--pad-x); }
  .logo-text strong { font-size: 14px; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 22px; }
  .booking-form-grid { padding: 16px; }
}