@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --dark:          #1C2B3A;
  --darker:        #0F1922;
  --accent:        #E06820;
  --accent-hover:  #C05510;
  --bg:            #F7F4F0;
  --bg-alt:        #EDEBE6;
  --white:         #FFFFFF;
  --text:          #1C2B3A;
  --text-mid:      #4B5E70;
  --text-light:    #7D8E9E;
  --border:        #DDD8D0;
  --green:         #2D6B45;
  --wa:            #25D366;
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', sans-serif;
  --shadow-sm:     0 2px 8px rgba(28,43,58,.08);
  --shadow-md:     0 6px 24px rgba(28,43,58,.12);
  --shadow-lg:     0 12px 48px rgba(28,43,58,.18);
  --r:             8px;
  --rl:            16px;
  --nav-h:         72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Any element used as an anchor target (#booking, #enquire, tour anchors…) must
   stop below the 72px fixed nav instead of hiding underneath it. */
[id] { scroll-margin-top: 88px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; text-transform: uppercase; letter-spacing: .02em; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; font-family: var(--font-body); display: block; }
.section-title { font-size: clamp(32px, 4vw, 44px); color: var(--dark); margin-bottom: .75rem; }
.section-sub { font-size: 16px; color: var(--text-mid); max-width: 580px; line-height: 1.75; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; font-family: var(--font-body); font-size: 14px; font-weight: 600; border-radius: var(--r); cursor: pointer; transition: all .2s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--darker); transform: translateY(-1px); }
.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { background: #1EB85A; border-color: #1EB85A; transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; border-color: var(--dark); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--accent); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── SECTION LABEL ── */
.section-label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; display: block; }

/* ── NAVIGATION ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); transition: background .3s, box-shadow .3s; }
.nav.scrolled { background: var(--darker); box-shadow: 0 2px 20px rgba(0,0,0,.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; padding: 0 32px; max-width: 1300px; margin: 0 auto; }
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.82); letter-spacing: .06em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 9px 20px; font-size: 13px; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--darker); padding: 24px 32px 32px; z-index: 199; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,.06); }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 15px; font-weight: 500; color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .06em; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile .btn { margin-top: 12px; align-self: flex-start; }

/* ── HERO ── */
.hero { height: 100vh; min-height: 600px; position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity 1.2s ease; opacity: 0; }
.hero-bg.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,18,28,.92) 0%, rgba(10,18,28,.65) 55%, rgba(10,18,28,.45) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 0 32px; max-width: 1300px; margin: 0 auto; width: 100%; }
.hero-title { font-size: clamp(52px, 8vw, 96px); color: #fff; line-height: 1.0; max-width: 680px; margin-bottom: 18px; text-shadow: 0 2px 24px rgba(0,0,0,.6); }
.hero-sub { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.8); max-width: 500px; margin-bottom: 34px; font-weight: 400; line-height: 1.65; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero-content h1 { color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.6); }
.hero-content p { color: rgba(255,255,255,.88); text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-body); }
.hero-scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.25); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:.3; transform: scaleY(1); } 50%{ opacity:.8; transform: scaleY(.55); } }

/* ── STATS BAR ── */
.stats-bar { background: var(--dark); padding: 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); max-width: 1300px; margin: 0 auto; }
.stat { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat:last-child { border-right: none; }
.stat-val { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--accent); display: block; letter-spacing: .02em; }
.stat-lbl { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; display: block; }

/* ── SERVICES ── */
.services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 20px; }
.service-card { background: var(--white); border-radius: var(--rl); padding: 28px 22px; border: 1px solid var(--border); transition: all .25s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon { width: 46px; height: 46px; background: rgba(224,104,32,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); }
.svc-icon svg { width: 22px; height: 22px; }
.svc-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.svc-desc { font-size: 13px; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.svc-link { font-size: 12px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: .06em; transition: gap .2s; }
.svc-link:hover { gap: 9px; }

/* ── PRODUCTS ── */
.products { background: var(--bg-alt); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 22px; }
.product-card { background: var(--white); border-radius: var(--rl); overflow: hidden; border: 1px solid var(--border); transition: all .25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.product-img { width: 100%; height: 210px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-body { padding: 18px 20px 20px; }
.product-cat { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.product-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.product-desc { font-size: 13px; color: var(--text-mid); margin-bottom: 16px; line-height: 1.55; }

/* ── TOURS ── */
.tours { background: var(--darker); }
.tours .section-title { color: #fff; }
.tours .section-sub { color: rgba(255,255,255,.55); }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 22px; }
.tour-card { border-radius: var(--rl); overflow: hidden; position: relative; min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end; transition: transform .3s; }
.tour-card:hover { transform: translateY(-4px); }
.tour-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .45s ease; }
.tour-card:hover .tour-card-bg { transform: scale(1.05); }
.tour-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,14,22,.92) 0%, rgba(8,14,22,.18) 65%, transparent 100%); }
.tour-card-body { position: relative; z-index: 2; padding: 26px; }
.tour-tag { display: inline-block; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.tour-name { font-family: var(--font-display); font-size: 26px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 7px; line-height: 1.1; }
.tour-desc { font-size: 13px; color: rgba(255,255,255,.68); margin-bottom: 16px; line-height: 1.55; }
.tour-link { font-size: 12px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .08em; display: inline-flex; align-items: center; gap: 7px; transition: gap .2s; }
.tour-link:hover { gap: 11px; }

/* Tour card – img-based layout */
.tour-img { position: absolute; inset: 0; overflow: hidden; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.tour-card:hover .tour-img img { transform: scale(1.05); }
.tour-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,14,22,.95) 0%, rgba(8,14,22,.25) 60%, transparent 100%); z-index: 1; }
.tour-badge { position: absolute; top: 18px; right: 18px; z-index: 2; background: var(--accent); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
.tour-body { position: relative; z-index: 2; padding: 24px 26px; }
.tour-body h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 8px; line-height: 1.1; }
.tour-body > p { font-size: 13px; color: rgba(255,255,255,.68); margin-bottom: 16px; line-height: 1.55; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.tour-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; }
.tour-price-note { font-size: 12px; font-weight: 400; color: rgba(255,255,255,.55); font-family: var(--font-body); }
.tour-body .btn-outline-dark { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.tour-body .btn-outline-dark:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.8); transform: none; }
/* The section-level CTA ("Plan a Custom Tour") sits in .tours but outside .tour-body,
   so it missed the override above and rendered dark-on-dark. */
.tours .btn-outline-dark { color: #fff; border-color: rgba(255,255,255,.45); background: transparent; }
.tours .btn-outline-dark:hover { background: rgba(255,255,255,.15); color: #fff; border-color: rgba(255,255,255,.8); transform: none; }

/* ── BRANDS ── */
.brands { background: var(--white); padding: 52px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-track-wrap { overflow: hidden; margin-top: 28px; -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent); mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent); }
.brands-track { display: flex; gap: 48px; animation: brandScroll 22s linear infinite; width: max-content; }
.brands-track:hover { animation-play-state: paused; }
.brand-logo { height: 36px; width: auto; object-fit: contain; filter: grayscale(1) opacity(.45); transition: filter .3s; flex-shrink: 0; }
.brand-logo:hover { filter: grayscale(0) opacity(1); }
@keyframes brandScroll { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.testi-card { background: var(--white); border-radius: var(--rl); padding: 26px; border: 1px solid var(--border); }
.testi-stars { color: #F5A623; letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.testi-quote { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testi-loc { font-size: 12px; color: var(--text-light); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--accent); padding: 72px 0; }
.cta-banner-inner { text-align: center; max-width: 680px; margin: 0 auto; padding: 0 24px; }
.cta-title { font-family: var(--font-display); font-size: clamp(36px,5vw,52px); font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 14px; line-height: 1.05; }
.cta-text { font-size: 17px; color: rgba(255,255,255,.86); margin-bottom: 30px; line-height: 1.65; }

/* ── FOOTER ── */
.footer { background: var(--darker); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 40px; }
.footer-logo { height: 44px; margin-bottom: 14px; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 22px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; transition: background .2s; }
.social-btn:hover { background: var(--accent); }
.social-btn img { width: 16px; height: 16px; }
/* Footer social icons are inline SVGs using fill="currentColor", but no colour was
   ever set here — so they inherited the near-black body text and disappeared against
   the dark footer. Give them an explicit light colour, and match the circular
   treatment across all pages (index/tours used bare <a>, about/contact used .social-btn). */
.footer-social a { color: rgba(255,255,255,.85); transition: background .2s, color .2s; }
.footer-social a:hover { color: #fff; }
.footer-social a:not(.social-btn) { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: inline-flex; align-items: center; justify-content: center; }
.footer-social a:not(.social-btn):hover { background: var(--accent); }
.social-btn:hover { color: #fff; }
.footer-h { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 18px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.70); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; font-size: 14px; color: rgba(255,255,255,.70); }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.70); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.fci-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.fci-icon svg { width: 16px; height: 16px; }
.fci-text { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.55; }
.fci-text a { color: rgba(255,255,255,.5); transition: color .2s; }
.fci-text a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 48px; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.28); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 120px 0 56px; background: var(--dark); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .22; }
.page-hero-title { font-size: clamp(40px,6vw,62px); color: #fff; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.55); margin-top: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }

/* ── ABOUT PAGE ── */
.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { border-radius: var(--rl); overflow: hidden; aspect-ratio: 4/3; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-size: 40px; margin-bottom: 18px; color: var(--dark); }
.about-text p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); margin-bottom: 9px; }
.check-list svg { width: 17px; height: 17px; color: var(--green); flex-shrink: 0; margin-top: 2px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; }
.why-card { background: var(--white); border-radius: var(--rl); padding: 26px 20px; border: 1px solid var(--border); text-align: center; }
.why-icon { width: 48px; height: 48px; background: rgba(224,104,32,.1); border-radius: 12px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.why-icon svg { width: 22px; height: 22px; }
.why-t { font-family: var(--font-display); font-size: 17px; font-weight: 700; text-transform: uppercase; color: var(--dark); margin-bottom: 7px; }
.why-d { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.contact-card { background: var(--dark); border-radius: var(--rl); padding: 36px; color: #fff; }
.contact-card-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 6px; }
.contact-card-sub { font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: 28px; line-height: 1.5; }
.cd { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.cd-icon { width: 40px; height: 40px; background: rgba(224,104,32,.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.cd-icon svg { width: 17px; height: 17px; }
.cd-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 3px; }
.cd-val { font-size: 14px; color: rgba(255,255,255,.82); line-height: 1.5; }
.cd-val a { color: rgba(255,255,255,.82); transition: color .2s; }
.cd-val a:hover { color: #fff; }
.hours-sep { margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); }
.hours-lbl { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 10px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 5px; }
.hours-row span:last-child { color: rgba(255,255,255,.82); }
.map-wrap { border-radius: var(--rl); overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.map-footer { background: var(--white); padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.map-addr { font-size: 13px; color: var(--text-mid); }
.wa-section { background: var(--dark); padding: 60px 0; text-align: center; }
.wa-section .section-title { color: #fff; margin-bottom: 6px; }
.wa-section .section-sub { color: rgba(255,255,255,.5); margin: 0 auto 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.07); }
  .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }
}
@media (max-width: 768px) {
  .nav-links,.nav-cta { display: none; }
  .nav-burger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .nav-inner,.hero-content { padding-left: 20px; padding-right: 20px; }
  .services-grid,.products-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
}

/* ── SVG ICON HELPER ── */
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-sm { width: 16px; height: 16px; }

/* ── HERO UPGRADE: KEN BURNS ── */
@keyframes kenBurns { 0%{ transform:scale(1); } 100%{ transform:scale(1.1); } }
.hero-bg.active { animation: kenBurns 8s ease-out forwards; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.2); border-radius:40px; padding:6px 14px; font-size:12px; font-weight:500; color:rgba(255,255,255,.85); margin-bottom:20px; backdrop-filter:blur(8px); }
.hero-badge-dot { width:7px; height:7px; border-radius:50%; background:var(--wa); flex-shrink:0; animation:pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:.5; transform:scale(.8); } }

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float { position:fixed; bottom:28px; right:28px; z-index:300; display:flex; align-items:center; gap:10px; background:var(--wa); color:#fff; border-radius:50px; padding:14px 22px; font-size:14px; font-weight:600; box-shadow:0 4px 20px rgba(37,211,102,.4); transition:all .25s; text-decoration:none; }
.wa-float:hover { background:#1EB85A; transform:translateY(-2px); box-shadow:0 8px 28px rgba(37,211,102,.5); }
.wa-float svg { width:20px; height:20px; flex-shrink:0; }
.wa-float-label { white-space:nowrap; }
@media(max-width:480px){ .wa-float { padding:14px; border-radius:50%; } .wa-float-label { display:none; } }

/* ── PRICING SECTION ── */
.pricing { background:var(--dark); padding:72px 0; }
.pricing .section-title { color:#fff; }
.pricing .section-sub { color:rgba(255,255,255,.5); }
.pricing-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:16px; }
.price-card { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.08); border-radius:var(--rl); padding:24px 20px; text-align:center; transition:all .25s; }
.price-card:hover { background:rgba(255,255,255,.09); border-color:rgba(224,104,32,.4); transform:translateY(-3px); }
.price-icon { width:44px; height:44px; background:rgba(224,104,32,.15); border-radius:10px; margin:0 auto 14px; display:flex; align-items:center; justify-content:center; color:var(--accent); }
.price-icon svg { width:20px; height:20px; }
.price-service { font-family:var(--font-display); font-size:16px; font-weight:700; text-transform:uppercase; color:#fff; margin-bottom:8px; }
.price-amount { font-family:var(--font-display); font-size:28px; font-weight:700; color:var(--accent); line-height:1; }
.price-from { font-size:11px; color:rgba(255,255,255,.4); margin-top:4px; }
.pricing-note { text-align:center; margin-top:24px; font-size:13px; color:rgba(255,255,255,.35); }

/* ── GALLERY ── */
.gallery { background:var(--bg-alt); padding:80px 0; }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:200px; gap:10px; margin-top:40px; grid-auto-flow:dense; }
.gallery-item { border-radius:var(--r); overflow:hidden; position:relative; cursor:pointer; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-item:hover img { transform:scale(1.06); }
.gallery-item:nth-child(1) { grid-column:span 2; grid-row:span 2; }
.gallery-item:nth-child(5) { grid-column:span 2; }
.gallery-item:nth-child(8) { grid-column:span 2; }
@media(max-width:768px){ .gallery-grid { grid-template-columns:repeat(2,1fr); grid-auto-rows:160px; } .gallery-item:nth-child(1){ grid-column:span 2; } .gallery-item:nth-child(5){ grid-column:span 1; } .gallery-item:nth-child(8){ grid-column:span 1; } }
@media(max-width:480px){ .gallery-grid { grid-template-columns:1fr 1fr; grid-auto-rows:140px; } }

/* ── BOOKING FORM ── */
.booking { background:var(--bg); padding:80px 0; }
.booking-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:56px; align-items:start; }
.booking-info .section-sub { margin-bottom:28px; }
.booking-features { display:flex; flex-direction:column; gap:10px; }
.booking-feature { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-mid); }
.booking-feature::before { content:'✓'; color:var(--green); font-weight:700; font-size:15px; flex-shrink:0; }
.booking-form { background:var(--white); border-radius:var(--rl); padding:32px; border:1px solid var(--border); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:12px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:var(--text-mid); }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:11px 14px; border:1.5px solid var(--border); border-radius:var(--r); font-family:var(--font-body); font-size:14px; color:var(--text); background:var(--bg); transition:border-color .2s; outline:none; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color:var(--accent); background:#fff; }
.form-group textarea { resize:vertical; min-height:90px; }
.form-group select { cursor:pointer; }
.form-note { font-size:12px; color:var(--text-light); text-align:center; margin-top:10px; }
.form-submit { width:100%; justify-content:center; font-size:15px; padding:15px; margin-top:4px; }
@media(max-width:768px){ .booking-grid { grid-template-columns:1fr; gap:32px; } .form-row { grid-template-columns:1fr; } }

/* ── TOUR STATS ── */
.tour-stats { display:flex; gap:16px; margin-bottom:14px; flex-wrap:wrap; }
.tour-stat { font-size:11px; font-weight:600; color:rgba(255,255,255,.55); display:flex; align-items:center; gap:4px; letter-spacing:.04em; text-transform:uppercase; }
.tour-stat svg { width:13px; height:13px; opacity:.7; }

/* ── SUCCESS PAGE ── */
.success-page { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--bg); padding:40px 24px; }
.success-card { background:var(--white); border-radius:var(--rl); padding:48px 40px; text-align:center; max-width:480px; width:100%; border:1px solid var(--border); }
.success-icon { width:64px; height:64px; background:rgba(45,107,69,.1); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 24px; color:var(--green); }
.success-title { font-family:var(--font-display); font-size:32px; font-weight:700; text-transform:uppercase; color:var(--dark); margin-bottom:12px; }
.success-text { font-size:15px; color:var(--text-mid); line-height:1.7; margin-bottom:28px; }

/* ── AOS OVERRIDES ── */
[data-aos] { pointer-events:none; }
[data-aos].aos-animate { pointer-events:auto; }

/* ═══════════════════════════════════════════════════
   ALIAS FIXES — CSS had abbreviated names but HTML
   uses full descriptive class names throughout.
   ═══════════════════════════════════════════════════ */

/* Stats bar */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 26px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--accent); display: block; letter-spacing: .02em; }
.stat-label { font-size: 11px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; display: block; }

/* Services */
.service-icon { width: 46px; height: 46px; background: rgba(224,104,32,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--accent); }
.service-icon svg { width: 22px; height: 22px; }
.service-link { font-size: 12px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 5px; text-transform: uppercase; letter-spacing: .06em; transition: gap .2s; }
.service-link:hover { gap: 9px; }

/* Testimonials */
.testimonial-card { background: var(--white); border-radius: var(--rl); padding: 26px; border: 1px solid var(--border); }
.testimonial-stars { color: #F5A623; letter-spacing: 2px; font-size: 13px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; line-height: 1.75; color: var(--text-mid); margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 11px; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--dark); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 600; flex-shrink: 0; }
.testimonial-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testimonial-loc { font-size: 12px; color: var(--text-light); }

/* Brands marquee */
section.brands { overflow: hidden; }
.brands-list { display: flex; gap: 48px; align-items: center; }
.brand-item { font-family: var(--font-display); font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mid); white-space: nowrap; transition: color .25s; }
.brand-item:hover { color: var(--accent); }

/* CTA banner — flex row: text left, buttons right */
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,42px); font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 8px; line-height: 1.05; }
.cta-inner p { font-size: 15px; color: rgba(255,255,255,.78); line-height: 1.65; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }

/* Hamburger mobile nav button */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; display: block; transition: all .3s; }
.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); }

@media(max-width:768px){
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--darker);
    padding: 20px 32px 28px;
    z-index: 199;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 15px; }
  .nav-links.open .btn { margin-top: 12px; align-self: flex-start; }
}

/* Stats bar responsive */
@media(max-width:1024px){
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.07); border-top: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); border-right: none; }
}

/* CTA banner stacks on mobile */
@media(max-width:768px){
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
}

/* Hero CTA buttons wrapper */
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media(max-width:768px){ .hero-cta { flex-direction: column; align-items: flex-start; } }

/* Brands label */
.brands-label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mid); text-align: center; margin-bottom: 28px; display: block; }

/* Footer */
.footer-desc { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 22px; max-width: 260px; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; width: 100%; font-size: 12px; color: rgba(255,255,255,.28); }
