/* =========================================================
   Infinity Travel Rwanda – styles.css
   Single source of truth for all site styling.
   ========================================================= */

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

:root {
  --green: #16a34a;
  --green-dk: #15803d;
  --green-lt: #dcfce7;
  --ink: #111827;
  --ink-2: #374151;
  --ink-3: #6b7280;
  --border: #e5e7eb;
  --surface: #f8fafc;
  --white: #fff;
  --navy: #0f172a;
  --red: #dc2626;
  --amber: #d97706;
  --ff: 'Inter', system-ui, -apple-system, sans-serif;
  --r: 12px;
  --sh: 0 2px 12px rgba(0,0,0,.08);
  --sh2: 0 4px 24px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff); color: var(--ink); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Skip link for keyboard users */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--green); color: #fff; padding: 8px 16px; z-index: 2000; }
.skip-link:focus { top: 0; }

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

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem; cursor: pointer; border: 2px solid transparent; transition: all .2s; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dk); transform: translateY(-1px); }
.btn-outline-white { background: 0 0; color: #fff; border-color: rgba(255,255,255,.75); }
.btn-outline-white:hover { background: #fff; color: var(--green); }
.btn-outline-dark { background: 0 0; color: var(--ink); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-outline-green { background: 0 0; color: var(--green); border-color: var(--green); }
.btn-outline-green:hover { background: var(--green); color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* Header / Nav */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 4px rgba(0,0,0,.06); transition: box-shadow .2s; }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 72px; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-box { width: 56px; height: 56px; border-radius: 6px; overflow: hidden; background: #0d1a0d; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-box svg { width: 56px; height: 56px; }
.logo-text { line-height: 1.2; }
.logo-name { font-weight: 700; font-size: 1.05rem; color: var(--ink); display: block; }
.logo-sub { font-size: .75rem; color: var(--ink-3); display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-link { font-size: .9rem; font-weight: 500; color: var(--ink-2); transition: color .2s; padding: 4px 0; }
.nav-link.active, .nav-link:hover { color: var(--green); }
.nav-cta { margin-left: 8px; flex-shrink: 0; }
.nav-toggle { display: none; background: 0 0; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.48); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 720px; padding: 0 24px; }
.hero-badge { display: inline-block; background: var(--green); color: #fff; padding: 6px 20px; border-radius: 50px; font-size: .8rem; font-weight: 700; letter-spacing: .06em; margin-bottom: 22px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; line-height: 1.1; margin-bottom: 18px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.88); line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Sections */
.section-head { text-align: center; margin-bottom: 52px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--ink); line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: .98rem; color: var(--ink-3); max-width: 520px; margin: 0 auto; }

/* Why-choose grid */
.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 32px 24px; text-align: center; box-shadow: var(--sh); }
.why-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.why-icon svg { width: 28px; height: 28px; }
.ic-green { background: #dcfce7; color: #16a34a; }
.ic-blue { background: #dbeafe; color: #2563eb; }
.ic-purple { background: #ede9fe; color: #7c3aed; }
.ic-amber { background: #fef3c7; color: #d97706; }
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: .87rem; color: var(--ink-3); line-height: 1.6; }

/* Tours grid */
.tours-section { background: #fff; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.tour-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: var(--sh); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.tour-img { position: relative; }
.tour-img img { width: 100%; height: 240px; object-fit: cover; }
.tour-badge { position: absolute; top: 14px; left: 14px; padding: 5px 14px; border-radius: 50px; font-size: .78rem; font-weight: 700; color: #fff; }
.bg-wildlife { background: #16a34a; }
.bg-city { background: #2563eb; }
.bg-cultural { background: #7c3aed; }
.bg-adventure { background: #ea580c; }
.bg-international { background: #db2777; }
.bg-beach { background: #0891b2; }
.tour-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.tour-body p { font-size: .87rem; color: var(--ink-3); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.tour-meta { display: flex; gap: 20px; font-size: .85rem; color: var(--ink-3); margin-bottom: 20px; flex-wrap: wrap; }
.tour-meta span { display: flex; align-items: center; gap: 6px; }
.tour-meta svg { width: 15px; height: 15px; flex-shrink: 0; }
.tours-cta { text-align: center; }

/* Explore Rwanda grid */
.explore-section { background: var(--surface); }
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.explore-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 32px 20px; text-align: center; box-shadow: var(--sh); }
.explore-icon { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.explore-icon svg { width: 30px; height: 30px; }
.ei-green { background: #16a34a; color: #fff; }
.ei-blue { background: #2563eb; color: #fff; }
.ei-purple { background: #7c3aed; color: #fff; }
.ei-orange { background: #ea580c; color: #fff; }
.explore-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.explore-card p { font-size: .87rem; color: var(--ink-3); line-height: 1.6; }

/* CTA banner */
.cta-banner { background: linear-gradient(135deg, #16a34a 0, #1d4ed8 100%); padding: 80px 24px; text-align: center; color: #fff; }
.cta-banner h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; margin-bottom: 12px; }
.cta-banner p { font-size: 1rem; opacity: .9; margin-bottom: 32px; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; max-width: 1200px; margin: 0 auto; padding: 56px 24px 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-sub { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.soc:hover { background: var(--green); color: #fff; }
.soc svg { width: 16px; height: 16px; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col li a { font-size: .87rem; transition: color .2s; }
.footer-col li a:hover { color: #fff; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; }
.footer-contact-list li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,.4); }
.footer-contact-list li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); max-width: 1200px; margin: 0 auto; padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 18px; justify-content: center; margin-top: 8px; flex-wrap: wrap; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: #fff; }

/* Page banner */
.page-banner { background: var(--navy); padding: 140px 24px 64px; text-align: center; color: #fff; }
.page-banner h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; margin-bottom: 12px; }
.page-banner p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* Filter bar (tours page) */
.filter-bar { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.fbtn { padding: 9px 24px; border-radius: 50px; font-size: .85rem; font-weight: 500; cursor: pointer; border: 2px solid var(--border); background: #fff; color: var(--ink-2); transition: all .2s; }
.fbtn.active, .fbtn:hover { border-color: var(--green); background: var(--green); color: #fff; }
.tours-full { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

/* About */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--r); }
.about-text h2 { font-size: clamp(1.8rem, 2.5vw, 2.4rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-text p { color: var(--ink-3); line-height: 1.75; margin-bottom: 16px; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.aval { display: flex; gap: 16px; align-items: flex-start; }
.aval-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-lt); color: var(--green-dk); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.aval h4 { font-weight: 600; margin-bottom: 4px; font-size: .95rem; }
.aval p { color: var(--ink-3); font-size: .88rem; line-height: 1.6; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.team-card { text-align: center; }
.team-avatar { width: 120px; height: 120px; border-radius: 50%; background: var(--green-lt); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; font-weight: 700; color: var(--green-dk); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-weight: 600; margin-bottom: 4px; }
.team-card span { font-size: .85rem; color: var(--green); }

/* Stats */
.stats-bar { background: var(--navy); padding: 28px 0; }
.stats-inner { display: flex; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.stat { flex: 1; text-align: center; padding: 0 20px; color: #fff; }
.stat-n { display: block; font-size: 2rem; font-weight: 700; color: var(--green); }
.stat-l { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 4px; display: block; }
.stat-div { width: 1px; height: 44px; background: rgba(255,255,255,.12); align-self: center; flex-shrink: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 16px; }
.contact-info > p { color: var(--ink-3); line-height: 1.75; margin-bottom: 32px; }
.citem { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.citem-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--green-lt); color: var(--green-dk); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.citem-icon svg { width: 20px; height: 20px; }
.citem h4 { font-weight: 600; font-size: .92rem; margin-bottom: 4px; }
.citem a, .citem p { color: var(--ink-3); font-size: .88rem; }
.citem a:hover { color: var(--green); }
.contact-form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 40px; box-shadow: var(--sh2); }
.contact-form-box h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fgroup { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fgroup label { font-size: .85rem; font-weight: 500; color: var(--ink-2); }
.fgroup input, .fgroup select, .fgroup textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: var(--ff); font-size: .9rem; color: var(--ink); background: #fff; outline: 0; transition: border-color .2s, box-shadow .2s; }
.fgroup input:focus, .fgroup select:focus, .fgroup textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.15); }
.fgroup textarea { resize: vertical; min-height: 120px; }
.field-err { border-color: var(--red) !important; }
.field-err-msg { color: var(--red); font-size: .8rem; margin-top: 4px; }
.form-success { display: none; text-align: center; padding: 28px; color: var(--green-dk); background: var(--green-lt); border-radius: var(--r); }
.form-error { display: none; text-align: center; padding: 18px; color: #991b1b; background: #fee2e2; border-radius: var(--r); margin-bottom: 16px; font-size: .9rem; }
.map-wrap { height: 400px; overflow: hidden; border-radius: var(--r); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.reveal.on { opacity: 1; transform: none; }

/* Floating buttons */
.top-btn { position: fixed; bottom: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: var(--green); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .25s, transform .2s, background .2s; box-shadow: 0 4px 16px rgba(0,0,0,.2); z-index: 900; }
.top-btn.show { opacity: 1; pointer-events: auto; }
.top-btn:hover { background: var(--green-dk); transform: translateY(-3px); }

/* WhatsApp floating button */
.wa-fab { position: fixed; bottom: 24px; left: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 900; transition: transform .2s, background .2s; }
.wa-fab:hover { background: #20bd5a; transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.45); animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }

/* Mobile sticky call bar */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); padding: 10px; z-index: 800; box-shadow: 0 -2px 12px rgba(0,0,0,.08); gap: 10px; }
.mobile-call-bar a { flex: 1; padding: 12px; border-radius: 8px; text-align: center; font-weight: 600; font-size: .88rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.mobile-call-bar a.call { background: var(--green); color: #fff; }
.mobile-call-bar a.wa { background: #25d366; color: #fff; }
.mobile-call-bar a svg { width: 16px; height: 16px; }

/* Admin floating btn */
.admin-fab { position: fixed; bottom: 80px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: #1e293b; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,.3); z-index: 900; transition: background .2s; }
.admin-fab:hover { background: #334155; }
.admin-fab svg { width: 20px; height: 20px; }

/* Tour detail page */
.tour-hero { position: relative; height: 56vh; min-height: 380px; overflow: hidden; margin-top: 72px; }
.tour-hero img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,.65) 100%); display: flex; align-items: flex-end; padding: 48px 24px; }
.tour-hero-content { max-width: 1200px; margin: 0 auto; width: 100%; color: #fff; }
.tour-hero-content .tour-badge { position: static; display: inline-block; margin-bottom: 12px; }
.tour-hero-content h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; max-width: 800px; }

.tour-detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; margin-top: 48px; }
.tour-overview { display: flex; gap: 24px; flex-wrap: wrap; padding: 20px 24px; background: var(--surface); border-radius: var(--r); margin-bottom: 32px; }
.tov { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: var(--ink-2); }
.tov svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }
.tour-section h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; margin-top: 32px; }
.tour-section h2:first-of-type { margin-top: 0; }
.tour-section p { color: var(--ink-2); line-height: 1.75; margin-bottom: 12px; }
.tour-section ul.checklist { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.tour-section ul.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-2); }
.tour-section ul.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.tour-section ul.excludelist li::before { content: '✗'; color: var(--red); font-weight: 700; flex-shrink: 0; }

.itinerary-day { border-left: 3px solid var(--green); padding: 4px 0 24px 24px; position: relative; margin-bottom: 16px; }
.itinerary-day::before { content: ''; position: absolute; left: -8px; top: 6px; width: 13px; height: 13px; border-radius: 50%; background: var(--green); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--green); }
.itinerary-day h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.itinerary-day h4 span { color: var(--green); font-weight: 600; margin-right: 8px; }
.itinerary-day p { font-size: .92rem; color: var(--ink-3); line-height: 1.7; }

.tour-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0 32px; }
.tour-gallery img { width: 100%; height: 140px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform .2s; }
.tour-gallery img:hover { transform: scale(1.03); }

.booking-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 28px; box-shadow: var(--sh2); position: sticky; top: 96px; align-self: start; }
.booking-card .price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-card .price { font-size: 2rem; font-weight: 700; color: var(--green); }
.booking-card .price-unit { font-size: .85rem; color: var(--ink-3); }
.booking-card .price-note { font-size: .8rem; color: var(--ink-3); margin-bottom: 22px; }
.booking-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; }

/* Gallery page */
.gallery-masonry { columns: 3; column-gap: 16px; }
.gallery-masonry img { width: 100%; margin-bottom: 16px; border-radius: 8px; cursor: pointer; break-inside: avoid; transition: transform .2s, box-shadow .2s; }
.gallery-masonry img:hover { transform: translateY(-3px); box-shadow: var(--sh2); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 3000; align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 92vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,.15); border: none; color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.3rem; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-q { width: 100%; padding: 20px 24px; background: 0 0; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; font-weight: 600; font-size: .98rem; color: var(--ink); font-family: var(--ff); }
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--green); flex-shrink: 0; transition: transform .2s; line-height: 1; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { display: none; padding: 0 24px 20px; color: var(--ink-3); line-height: 1.75; font-size: .92rem; }
.faq-item.open .faq-a { display: block; }

/* Legal page */
.legal-content { max-width: 800px; margin: 0 auto; padding: 16px 0; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin: 28px 0 12px; color: var(--ink); }
.legal-content h3 { font-size: 1.05rem; font-weight: 700; margin: 20px 0 8px; color: var(--ink-2); }
.legal-content p { color: var(--ink-2); line-height: 1.8; margin-bottom: 12px; font-size: .94rem; }
.legal-content ul { margin: 8px 0 16px 24px; list-style: disc; }
.legal-content li { color: var(--ink-2); line-height: 1.75; margin-bottom: 6px; font-size: .94rem; }
.legal-meta { color: var(--ink-3); font-size: .85rem; font-style: italic; margin-bottom: 32px; }

/* Newsletter */
.newsletter { background: var(--surface); padding: 56px 24px; }
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.newsletter h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.newsletter p { color: var(--ink-3); margin-bottom: 24px; font-size: .94rem; }
.newsletter-form { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 13px 18px; border: 1.5px solid var(--border); border-radius: 50px; font-family: var(--ff); font-size: .9rem; outline: 0; }
.newsletter-form input:focus { border-color: var(--green); }
.newsletter-form button { padding: 13px 26px; background: var(--green); color: #fff; border: none; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: .9rem; transition: background .2s; }
.newsletter-form button:hover { background: var(--green-dk); }

/* Cookie banner */
.cookie-banner { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy); color: #fff; padding: 16px 24px; z-index: 2500; box-shadow: 0 -4px 20px rgba(0,0,0,.2); }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-inner p { flex: 1; font-size: .87rem; line-height: 1.6; min-width: 260px; }
.cookie-inner p a { color: var(--green); text-decoration: underline; }
.cookie-inner button { padding: 10px 22px; border-radius: 50px; font-weight: 600; cursor: pointer; font-size: .85rem; border: none; }
.cookie-accept { background: var(--green); color: #fff; }
.cookie-decline { background: 0 0; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.25) !important; }

/* Trust badges row */
.trust-row { display: flex; justify-content: center; align-items: center; gap: 36px; flex-wrap: wrap; padding: 32px 24px; background: var(--surface); border-top: 1px solid var(--border); }
.trust-row .tb { font-size: .82rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.trust-row .tb svg { width: 20px; height: 20px; color: var(--green); }

/* Responsive */
@media(max-width: 1024px){
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; padding: 16px 20px; }
  .stat-div { display: none; }
  .tour-detail-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .gallery-masonry { columns: 2; }
}

@media(max-width: 768px){
  .section { padding: 56px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 24px; gap: 20px; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .tours-grid, .why-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 24px; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .tours-full { grid-template-columns: 1fr; }
  .tour-gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 70px; }
  .wa-fab { bottom: 86px; }
  .top-btn { bottom: 86px; }
  .admin-fab { bottom: 142px; }
  .newsletter-form { flex-direction: column; }
}

@media(max-width: 480px){
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .tour-overview { flex-direction: column; gap: 12px; }
}

@media(prefers-reduced-motion: reduce){
  * { animation-duration: 1ms !important; transition-duration: 1ms !important; }
  .wa-fab::after { animation: none; }
}

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

/* =========================================================
   v2 ADDITIONS — Happy colors, gold accents, country grid,
   services section, packages, social media row
   ========================================================= */

:root {
  --gold:        #c89a3b;
  --gold-lt:     #e8c879;
  --gold-deep:   #a87f25;
  --green-deep:  #0a3a2a;
  --cream:       #fdfaf2;
  --sunset:      #ea580c;
  --sky:         #0891b2;
  --bg-warm:     #fffbef;
}

/* Hero - layered gradient with gold accents */
.hero-overlay {
  background: linear-gradient(135deg, rgba(10,58,42,.7) 0%, rgba(0,0,0,.5) 50%, rgba(200,154,59,.3) 100%);
}
.hero-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 4px 12px rgba(200,154,59,.35);
}
.hero-title { text-shadow: 0 2px 20px rgba(0,0,0,.4); }

/* Buttons - more vibrant */
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dk) 100%);
  box-shadow: 0 3px 10px rgba(22,163,74,.3);
}
.btn-green:hover {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green-deep) 100%);
  box-shadow: 0 5px 16px rgba(22,163,74,.4);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: 0 3px 10px rgba(200,154,59,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, #8a6418 100%);
  box-shadow: 0 5px 16px rgba(200,154,59,.45);
  color: #fff;
}

/* Section titles with gold underline */
.section-title { position: relative; }
.section-title.with-line::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 100%);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Country cards (homepage) */
.country-section { background: var(--bg-warm); position: relative; }
.country-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
}
.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.country-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform .25s, box-shadow .25s;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}
.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(10,58,42,.18);
}
.country-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}
.country-card .flag {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: #fff;
  overflow: hidden;
}
.country-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 12px 8px 4px;
  letter-spacing: .02em;
}
.country-card p {
  font-size: .78rem;
  color: var(--ink-3);
  padding: 0 12px 14px;
  line-height: 1.45;
}

/* Services grid (matches flyer) */
.services-section { background: linear-gradient(180deg, #fff 0%, var(--bg-warm) 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(200,154,59,.18);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--green-lt) 0%, var(--green-dk) 100%);
  color: #fff;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(22,163,74,.25);
}
.service-card h4 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
}

/* Packages (flyer-style with price tags) */
.packages-section { background: var(--green-deep); color: #fff; padding: 80px 0; }
.packages-section .section-title { color: #fff; }
.packages-section .section-sub { color: rgba(255,255,255,.75); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.package-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.package-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.package-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.package-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.package-route {
  font-size: .82rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.package-duration { font-size: .8rem; color: var(--ink-3); margin-bottom: 12px; }
.package-includes { font-size: .82rem; color: var(--ink-2); flex: 1; line-height: 1.6; margin-bottom: 16px; }
.package-includes li { padding-left: 16px; position: relative; }
.package-includes li::before { content: '✓'; color: var(--green); position: absolute; left: 0; font-weight: 700; }
.price-tag {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #fff;
  padding: 14px;
  text-align: center;
  border-radius: 10px;
  margin-top: auto;
}
.price-tag .from {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .9;
}
.price-tag .amount {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.price-tag .per { font-size: .72rem; opacity: .85; }

/* Social media row */
.social-row-big {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 24px 0;
}
.social-row-big a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
  transition: all .2s;
  text-decoration: none;
}
.social-row-big a:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(22,163,74,.3);
}
.social-row-big a.wa:hover { background: #25d366; border-color: #25d366; }
.social-row-big a.fb:hover { background: #1877f2; border-color: #1877f2; }
.social-row-big a.ig:hover { background: #e1306c; border-color: #e1306c; }
.social-row-big a.tt:hover { background: #000; border-color: #000; }
.social-row-big a.yt:hover { background: #ff0000; border-color: #ff0000; }
.social-row-big svg { width: 20px; height: 20px; }

/* Contact info icons with proper colors */
.citem-icon.wa-icon { background: #25d366; color: #fff; }
.citem-icon.loc-icon { background: var(--gold-lt); color: var(--gold-deep); }
.citem-icon.email-icon { background: #dbeafe; color: #2563eb; }
.citem-icon.phone-icon { background: var(--green-lt); color: var(--green-dk); }

/* Categories strip (Safari, Culture, Adventure, etc.) */
.cats-strip {
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green) 50%, var(--green-deep) 100%);
  padding: 16px 0;
  text-align: center;
}
.cats-strip span {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 14px;
}
.cats-strip span::before {
  content: '★';
  color: var(--gold-lt);
  margin-right: 14px;
  font-size: .7em;
  vertical-align: middle;
}
.cats-strip span:first-child::before { content: ''; margin: 0; }

/* Tagline ribbon */
.ribbon {
  background: var(--gold);
  color: var(--green-deep);
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* Section transition - happy color */
.section.bg-warm { background: var(--bg-warm); }
.section.bg-cream { background: var(--cream); }

/* Card with gold accent */
.gold-accent-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border-top: 4px solid var(--gold);
  box-shadow: var(--sh);
}

/* Better tour card hover */
.tour-card { border-radius: 14px; }
.tour-card:hover {
  border-color: var(--gold);
}

/* Responsive */
@media(max-width: 1024px) {
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px) {
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .cats-strip span { display: inline-block; margin: 4px 8px; font-size: .72rem; }
  .cats-strip span::before { margin-right: 8px; }
}

/* =========================================================
   v3 — Banner / Hero / Header brightness (KEPT)
   Other section brightness reverted per user request.
   ========================================================= */

/* Header — white with gold under-stripe (banner stays bright) */
.site-header {
  background: #fff !important;
  border-bottom: 1px solid rgba(200,154,59,.18);
  box-shadow: 0 2px 0 0 #c89a3b, 0 4px 18px rgba(10,58,42,.06) !important;
}
.logo-box {
  background: transparent !important;
  border-radius: 50% !important;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-name { color: #0a3a2a; font-weight: 700; }
.logo-sub  { color: #c89a3b !important; font-weight: 600; }
.nav-link  { color: #0a3a2a; }
.nav-link:hover, .nav-link.active { color: #16a34a; }

/* Hero — bright with gold accents */
.hero-overlay {
  background: linear-gradient(180deg, rgba(10,58,42,.45) 0%, rgba(10,58,42,.35) 60%, rgba(200,154,59,.25) 100%) !important;
}
.hero-title {
  color: #fff;
  text-shadow: 0 3px 24px rgba(0,0,0,.4);
}
.hero-sub { color: rgba(255,255,255,.95); }
.hero-badge {
  background: linear-gradient(135deg, #c89a3b 0%, #e8c879 100%) !important;
  color: #0a3a2a !important;
  font-weight: 700;
}

/* Buttons brighter (used in hero) */
.btn-green {
  background: linear-gradient(135deg, #16a34a 0%, #0a3a2a 100%) !important;
  color: #fff !important;
}
.btn-green:hover {
  background: linear-gradient(135deg, #0a3a2a 0%, #16a34a 100%) !important;
  box-shadow: 0 8px 20px rgba(22,163,74,.4) !important;
}

/* Categories strip — keep dark green band (signature look) */
.cats-strip { background: linear-gradient(90deg, #0a3a2a 0%, #16a34a 50%, #0a3a2a 100%); }

/* Ribbon (Travel Smart) — keep gold */
.ribbon {
  background: linear-gradient(90deg, #c89a3b 0%, #e8c879 50%, #c89a3b 100%);
}

/* Contact info icons — keep colorful */
.citem-icon.wa-icon { background: #25d366 !important; color: #fff !important; }
.citem-icon.loc-icon { background: #fef3c7 !important; color: #c89a3b !important; }
.citem-icon.email-icon { background: #dbeafe !important; color: #2563eb !important; }
.citem-icon.phone-icon { background: #dcfce7 !important; color: #16a34a !important; }

/* Sticky WhatsApp FAB button */
.wa-fab a { background: #25d366 !important; }

/* HOMEPAGE STATS — restored to dark green (was cream in v3) */
.home-stats {
  background: linear-gradient(135deg, #0a3a2a 0%, #082922 100%);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  border-top: 4px solid #c89a3b;
  border-bottom: 4px solid #c89a3b;
}
.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.home-stats .hs-num {
  font-size: 2.8rem;
  font-weight: 700;
  color: #c89a3b;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.home-stats .hs-lbl {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  margin-top: 8px;
  font-weight: 600;
}
@media(max-width: 700px) {
  .home-stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* =========================================================
   v5 — PROFESSIONAL SVG ICONS, COMPACT GALLERY, MOBILE-FIRST
   ========================================================= */

/* === Service cards with REAL PHOTOS at top === */
.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,154,59,.20);
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  text-align: left;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: #c89a3b;
  box-shadow: 0 14px 32px rgba(200,154,59,.20);
}

.service-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #c89a3b 0%, #e8c879 100%); /* fallback if image fails */
}
.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.service-card:hover .service-photo img {
  transform: scale(1.06);
}
/* If image fails to load, hide it (so the gold gradient shows through) */
.service-photo.img-fail img { display: none; }
.service-photo.img-fail::after {
  content: '✦';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.8);
}

.service-content {
  padding: 16px 18px 20px;
}
.service-content h4 {
  font-size: .98rem;
  font-weight: 700;
  color: #0a3a2a;
  line-height: 1.3;
  margin-bottom: 6px;
}
.service-content p {
  font-size: .83rem;
  color: #4b5563;
  line-height: 1.5;
  margin: 0;
}

/* Keep old .service-icon styles in case used elsewhere, but hidden on cards now */
.service-card .service-icon { display: none; }

/* === Gallery — compact, professional, more per row === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.gallery-item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;  /* keep grid tidy */
  box-shadow: 0 2px 6px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 6px 10px 8px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 100%);
  color: #fff;
  font-size: .78rem;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s, transform .25s;
}
.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   MOBILE-FIRST RESPONSIVE — phone users come first
   ========================================================= */

/* TABLET — 1024px and below */
@media (max-width: 1024px) {
  .container { padding: 0 20px !important; }
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px; }
  .country-grid  { grid-template-columns: repeat(3, 1fr) !important; }
  .packages-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title    { font-size: clamp(1.8rem, 5vw, 3.2rem); }
  .section       { padding: 60px 0; }
  .gallery-grid  { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
}

/* PHONE — 768px and below */
@media (max-width: 768px) {
  .container { padding: 0 16px !important; }
  /* Hide desktop nav, show toggle */
  .nav-links { display: none; }
  .nav-toggle { display: flex !important; }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
    gap: 4px;
    border-top: 2px solid #c89a3b;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open .nav-link {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
  }
  .nav-links.open .nav-link:hover { background: #fef3c7; }
  .nav-cta { display: none !important; }

  /* Hero */
  .hero { min-height: 480px !important; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem) !important; line-height: 1.15; }
  .hero-sub { font-size: .95rem !important; line-height: 1.5; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; max-width: 320px; margin: 24px auto 0; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 12px 20px; }
  .hero-badge { font-size: .72rem; padding: 5px 12px; }

  /* Section titles */
  .section-title { font-size: clamp(1.4rem, 5vw, 1.9rem); }
  .section-sub { font-size: .9rem; padding: 0 8px; }
  .section { padding: 48px 0; }

  /* Grids - 2 cols on phone */
  .services-grid  { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .country-grid   { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .packages-grid  { grid-template-columns: 1fr !important; gap: 18px; }
  .why-grid       { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .home-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .stats-grid     { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .mission-grid   { grid-template-columns: 1fr !important; gap: 16px; }

  /* Service cards smaller */
  .service-card { border-radius: 10px; }
  .service-photo { aspect-ratio: 16/9; }
  .service-content { padding: 12px 14px 16px; }
  .service-content h4 { font-size: .85rem; }
  .service-content p { font-size: .76rem; }

  /* Country cards smaller */
  .country-card h4 { font-size: .88rem; margin: 8px 6px 2px; }
  .country-card p { font-size: .72rem; padding: 0 8px 10px; }
  .country-img { height: 110px; }
  .country-card .flag { width: 26px; height: 26px; font-size: 14px; }

  /* Why cards */
  .why-card { padding: 18px 14px; }
  .why-card h3 { font-size: 1rem; }
  .why-card p { font-size: .82rem; }
  .why-icon { width: 48px; height: 48px; }
  .why-icon svg { width: 22px; height: 22px; }

  /* Home stats */
  .home-stats { padding: 40px 0; }
  .home-stats .hs-num { font-size: 2.2rem; }
  .home-stats .hs-lbl { font-size: .7rem; }

  /* CTA banner */
  .cta-banner { padding: 50px 0 !important; }
  .cta-banner h2 { font-size: clamp(1.3rem, 5vw, 1.8rem) !important; }
  .cta-banner p  { font-size: .9rem; }

  /* Categories strip */
  .cats-strip { padding: 12px 0; }
  .cats-strip span { display: inline-block; margin: 2px 6px; font-size: .68rem; }
  .cats-strip span::before { margin-right: 6px; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px; }
  .citem { gap: 12px !important; }
  .citem-icon { width: 40px !important; height: 40px !important; }
  .citem h4 { font-size: .85rem !important; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; text-align: left; }
  .footer-brand p { font-size: .85rem; }
  .site-footer h4 { font-size: .95rem; }
  .site-footer a, .site-footer li { font-size: .85rem; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-legal { justify-content: center; gap: 12px; flex-wrap: wrap; }

  /* Newsletter form stacking */
  #newsletter-form { flex-direction: column !important; gap: 10px; }
  #newsletter-form input, #newsletter-form button { width: 100% !important; }

  /* Gallery - 2 columns, smaller */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-cap { font-size: .7rem; padding: 4px 6px 6px; }
  .gal-tabs { gap: 5px; }
  .gal-tab { padding: 6px 12px; font-size: .76rem; }

  /* Page banner */
  .page-banner { padding: 60px 0 !important; }
  .page-banner h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .page-banner p { font-size: .9rem; }

  /* Founder card */
  .founder-card { padding: 22px 16px !important; margin: 20px auto !important; }
  .founder-card .avatar { width: 78px !important; height: 78px !important; font-size: 1.9rem !important; }
  .founder-card h3 { font-size: 1.05rem !important; }
  .founder-card .quote { font-size: .9rem !important; }

  /* Forms */
  .contact-form-box { padding: 20px 16px !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 12px; }
  .fgroup input, .fgroup select, .fgroup textarea { font-size: 16px !important; /* prevents iOS zoom */ }

  /* Buttons sized for touch */
  .btn { padding: 12px 22px !important; font-size: .9rem !important; min-height: 44px; }
  .btn-sm { padding: 8px 14px !important; font-size: .78rem !important; min-height: auto; }

  /* Tour cards on home */
  .tours-grid { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .tour-card .tour-img { aspect-ratio: 4/3; }
  .tour-body { padding: 12px !important; }
  .tour-body h3 { font-size: .9rem !important; }
  .tour-body p { font-size: .78rem !important; }
  .tour-meta { font-size: .7rem !important; flex-wrap: wrap; }

  /* Admin layout sidebar collapses */
}

/* VERY SMALL PHONES — 480px and below */
@media (max-width: 480px) {
  .container { padding: 0 14px !important; }
  .hero-title { font-size: clamp(1.4rem, 8vw, 2rem) !important; }
  .home-stats-grid, .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .home-stats .hs-num { font-size: 1.9rem; }

  /* Tour cards: 1 col on tiny screens */
  .tours-grid { grid-template-columns: 1fr !important; }

  /* Gallery still 2 cols (looks fine even at 320px width) */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Newsletter section more compact */
  .newsletter { padding: 40px 16px !important; }
  .newsletter h3 { font-size: 1.1rem !important; }
}

/* === Small touch fixes for all sizes === */
.nav-link, .btn, .gal-tab, a.country-card, a.package-card {
  -webkit-tap-highlight-color: rgba(200, 154, 59, .2);
}
input, select, textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 8px;
}

/* =========================================================
   SPONSORED ADS — homepage banner row, small + classy
   ========================================================= */
.sponsored-section {
  background: #fff;
  padding: 22px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.sponsored-label {
  text-align: center;
  margin-bottom: 12px;
}
.sponsored-label span {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9ca3af;
  background: #f9fafb;
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid #e5e7eb;
}
.sponsored-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}
.sp-ad {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #fff;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.sp-ad:hover {
  transform: translateY(-2px);
  border-color: #c89a3b;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.sp-ad img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}
.sp-adv {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4px 10px;
  font-size: .68rem;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.7) 100%);
  font-weight: 500;
}
@media(max-width: 768px) {
  .sponsored-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .sp-ad img { height: 70px; }
}
@media(max-width: 480px) {
  .sponsored-grid { grid-template-columns: 1fr; }
  .sp-ad img { height: 100px; }
}
