/* ===== CSS Custom Properties ===== */
:root {
    --color-primary: #68ac13;
    --color-primary-dark: #5b9710;
    --color-accent: #f25010;
    --color-dark: #1a1a1a;
    --color-text: #36383c;
    --color-text-light: #666666;
    --color-bg: #fafafa;
    --color-bg-alt: #f0ede8;
    --color-white: #ffffff;
    --color-whatsapp: #25D366;
    --color-border: #e0dcd6;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --nav-height: 80px;
    --container-max: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.7; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ===== Container ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent; transition: background var(--transition), box-shadow var(--transition);
    height: var(--nav-height);
}
.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-container {
    max-width: var(--container-max); margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.nav-logo img { height: 45px; width: auto; }
.nav-links {
    display: flex; gap: 32px; align-items: center;
}
.nav-links a {
    color: var(--color-white); font-size: 0.95rem; font-weight: 500;
    padding: 8px 0; position: relative; transition: opacity var(--transition);
}
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background: var(--color-primary); transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { opacity: 0.9; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.hamburger span {
    width: 24px; height: 2px; background: var(--color-white);
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(26, 26, 26, 0.98); flex-direction: column;
        padding: 100px 40px 40px; gap: 24px;
        transition: right var(--transition);
    }
    .nav-links.active { right: 0; }
    .nav-links a { font-size: 1.1rem; }
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--color-white); padding: var(--nav-height) 24px 60px;
}
.hero-content { max-width: 800px; }
.hero-tagline {
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 3px; text-transform: uppercase; color: var(--color-primary);
    margin-bottom: 16px;
}
.hero h1 { color: var(--color-white); margin-bottom: 20px; }
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.7;
    opacity: 0.9; margin-bottom: 32px; max-width: 650px; margin-left: auto; margin-right: auto;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Page Hero (inner pages) */
.page-hero {
    min-height: 50vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: var(--color-white); padding: var(--nav-height) 24px 60px;
}
.page-hero-content { max-width: 700px; }
.page-hero-content h1 { color: var(--color-white); margin-bottom: 16px; }
.page-hero-content p { font-size: 1.1rem; opacity: 0.9; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: var(--radius-sm); font-weight: 600;
    font-size: 0.95rem; transition: all var(--transition); border: 2px solid transparent;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--color-white); border-color: var(--color-white);
}
.btn-outline:hover { background: var(--color-white); color: var(--color-dark); }
.btn-secondary {
    background: transparent; color: var(--color-primary); border-color: var(--color-primary);
    padding: 10px 24px; font-size: 0.9rem;
}
.btn-secondary:hover { background: var(--color-primary); color: var(--color-white); }
.btn-whatsapp {
    background: var(--color-whatsapp); color: var(--color-white); border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover { background: #20bd5a; border-color: #20bd5a; transform: translateY(-2px); }
.btn-whatsapp svg { flex-shrink: 0; }
.btn-full { width: 100%; justify-content: center; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title {
    text-align: center; margin-bottom: 16px;
}
.section-subtitle {
    text-align: center; color: var(--color-text-light); max-width: 600px;
    margin: 0 auto 48px; font-size: 1.05rem;
}

/* ===== Trust Strip ===== */
.trust-strip { background: var(--color-dark); padding: 24px 0; }
.trust-badges {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-badge {
    display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--color-white);
}
.trust-number {
    font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--color-primary);
}
.trust-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
.trust-icon { color: var(--color-primary); margin-bottom: 2px; }

/* ===== Intro Grid ===== */
.intro-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.intro-text h2 { margin-bottom: 20px; }
.intro-text p { color: var(--color-text-light); }
.intro-text .btn { margin-top: 12px; }
.intro-image { border-radius: var(--radius); overflow: hidden; }
.intro-image img { width: 100%; height: auto; object-fit: cover; }
.image-caption {
    text-align: center; font-size: 0.85rem; color: var(--color-text-light);
    margin-top: 12px; font-style: italic;
}

@media (max-width: 768px) {
    .intro-grid { grid-template-columns: 1fr; gap: 32px; }
    .intro-image { order: -1; }
}

/* ===== Card Grid ===== */
.card-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.safari-card {
    background: var(--color-white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
    display: block;
}
.safari-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-image { position: relative; overflow: hidden; height: 220px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.safari-card:hover .card-image img { transform: scale(1.05); }
.card-body { padding: 24px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 12px; }
.card-price {
    display: inline-block; font-weight: 600; color: var(--color-primary); font-size: 1rem;
}

/* ===== Package Cards ===== */
.package-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px;
}
.package-card {
    background: var(--color-white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
    display: flex; flex-direction: column;
}
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card .card-image { height: 220px; flex-shrink: 0; }
.package-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.package-duration {
    position: absolute; top: 16px; left: 16px; background: var(--color-primary);
    color: var(--color-white); padding: 4px 14px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 600;
}
.package-card .card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.package-card .card-body h3 { margin-bottom: 10px; font-size: 1.2rem; }
.package-card .card-body p { color: var(--color-text-light); font-size: 0.9rem; flex: 1; }
.package-details {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: auto; padding: 12px 0; border-top: 1px solid var(--color-border);
}
.package-parks { font-size: 0.8rem; color: var(--color-text-light); }
.package-price { font-size: 1.1rem; color: var(--color-primary); }
.package-price strong { font-size: 1.3rem; }

/* ===== How It Works ===== */
.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px;
}
.step { text-align: center; padding: 24px; }
.step-number {
    width: 56px; height: 56px; border-radius: 50%; background: var(--color-primary);
    color: var(--color-white); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700;
    margin: 0 auto 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--color-text-light); font-size: 0.95rem; }

/* ===== Certifications ===== */
.cert-grid {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: flex-end;
}
.cert-badge {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; max-width: 140px;
}
.cert-badge img { border-radius: var(--radius-sm); }
.cert-badge span { font-size: 0.8rem; color: var(--color-text-light); font-weight: 500; }
.cert-text-badge {
    width: 80px; height: 80px; border: 3px solid var(--color-primary);
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700;
    color: var(--color-primary);
}

/* ===== Testimonial ===== */
.testimonial-section { background: var(--color-dark); color: var(--color-white); }
.testimonial { text-align: center; max-width: 700px; margin: 0 auto; position: relative; }
.quote-icon { margin: 0 auto 16px; display: block; }
.testimonial blockquote p {
    font-family: var(--font-heading); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.5; font-style: italic; margin-bottom: 20px; color: var(--color-white);
}
.testimonial cite { font-style: normal; color: var(--color-primary); font-weight: 500; font-size: 0.95rem; }

/* ===== Destinations Grid ===== */
.dest-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px;
}
.dest-card {
    position: relative; border-radius: var(--radius); overflow: hidden;
    height: 280px; cursor: pointer;
}
.dest-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 20px 20px;
}
.dest-overlay h3 { color: var(--color-white); font-size: 1.3rem; }

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
}
.cta-content { text-align: center; max-width: 650px; margin: 0 auto; }
.cta-content h2 { color: var(--color-white); margin-bottom: 16px; }
.cta-content p { opacity: 0.9; margin-bottom: 28px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: var(--color-white); color: var(--color-primary-dark); border-color: var(--color-white); }
.cta-section .btn-primary:hover { background: transparent; color: var(--color-white); }
.cta-section .btn-outline { border-color: var(--color-white); color: var(--color-white); }
.cta-section .btn-outline:hover { background: var(--color-white); color: var(--color-primary-dark); }

/* ===== Values Grid ===== */
.values-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
}
.value-card {
    background: var(--color-white); border-radius: var(--radius); padding: 32px;
    text-align: center; box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); }
.value-icon {
    width: 64px; height: 64px; border-radius: 50%; background: rgba(104, 172, 19, 0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; color: var(--color-primary);
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ===== Timeline ===== */
.timeline { max-width: 700px; margin: 0 auto; position: relative; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 15px; top: 0; bottom: 0;
    width: 2px; background: var(--color-border);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: ''; position: absolute; left: -33px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--color-primary); border: 3px solid var(--color-bg);
}
.timeline-year {
    font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
    color: var(--color-primary); margin-bottom: 4px;
}
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 4px; }
.timeline-content p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ===== FAQ Accordion ===== */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 0; font-size: 1.05rem; font-weight: 600; color: var(--color-dark);
    text-align: left; gap: 16px;
}
.faq-question svg {
    flex-shrink: 0; transition: transform var(--transition); color: var(--color-primary);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 0; }

/* ===== Gallery ===== */
.gallery-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
    height: 240px; position: relative;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); z-index: 2000;
    display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lightbox-close {
    position: absolute; top: 20px; right: 24px;
    color: var(--color-white); font-size: 2.5rem; z-index: 2001;
    background: none; border: none; cursor: pointer; line-height: 1;
}
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: var(--color-white); z-index: 2001; padding: 12px;
    background: rgba(255,255,255,0.1); border-radius: 50%;
    transition: background var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== Contact ===== */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
.contact-info h2, .contact-form-wrapper h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--color-text-light); margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method {
    display: flex; gap: 16px; align-items: flex-start;
}
.contact-method svg { flex-shrink: 0; color: var(--color-primary); margin-top: 2px; }
.contact-method h3 { font-size: 0.95rem; margin-bottom: 2px; font-family: var(--font-body); }
.contact-method a { color: var(--color-primary); font-weight: 500; }
.contact-method a:hover { text-decoration: underline; }
.contact-method p { font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 0; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 500; color: var(--color-dark); }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm);
    background: var(--color-white); color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(104, 172, 19, 0.15);
}
.form-group textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
    text-align: center; padding: 40px 24px;
    background: var(--color-bg-alt); border-radius: var(--radius);
}
.form-success h3 { margin: 16px 0 8px; }
.form-success p { color: var(--color-text-light); margin-bottom: 0; }

/* Map */
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ===== Footer ===== */
.footer { background: var(--color-dark); color: var(--color-white); padding: 60px 0 24px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-about img { margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.footer h4 { margin-bottom: 16px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul a, .footer ul li {
    color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: color var(--transition);
}
.footer ul a:hover { color: var(--color-primary); }
.social-links { display: flex; gap: 16px; }
.social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
    color: var(--color-white); transition: background var(--transition);
}
.social-links a:hover { background: var(--color-primary); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 0; }

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--color-whatsapp); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed; bottom: 24px; left: 24px; z-index: 998;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-white); color: var(--color-dark);
    box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--color-primary); color: var(--color-white); }

/* ===== Sticky Mobile Enquiry Bar ===== */
.mobile-enquiry-bar {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 998; background: var(--color-white);
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    padding: 8px; gap: 8px;
}
.mobile-bar-btn {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.85rem;
}
.whatsapp-btn { background: var(--color-whatsapp); color: var(--color-white); }
.enquire-btn { background: var(--color-primary); color: var(--color-white); }

@media (max-width: 768px) {
    .mobile-enquiry-bar { display: flex; }
    .whatsapp-float { bottom: 80px; }
    .back-to-top { bottom: 80px; }
    .footer { padding-bottom: 80px; }
}

/* ===== Fade-in Animations ===== */
.fade-in {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Card Button Groups ===== */
.card-buttons { display: flex; gap: 10px; margin-top: 16px; }
.card-buttons .btn { flex: 1; text-align: center; justify-content: center; padding: 12px 16px; font-size: 0.85rem; }
.btn-enquire { background: var(--color-primary); color: var(--color-white) !important; border-color: var(--color-primary); }
.btn-enquire:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }

/* ===== Route Stats (Kilimanjaro) ===== */
.route-stats { display: flex; gap: 16px; flex-wrap: wrap; margin: 12px 0 4px; }
.route-stat {
    display: flex; align-items: center; gap: 5px;
    font-size: 0.8rem; font-weight: 500; color: var(--color-text-light);
}
.route-stat svg { color: var(--color-primary); flex-shrink: 0; }

/* ===== Safari Detail Pages ===== */
.detail-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    padding: 16px 0; font-size: 0.9rem;
}
.detail-breadcrumb a {
    color: var(--color-primary); font-weight: 500;
    display: inline-flex; align-items: center; gap: 6px;
    transition: opacity var(--transition);
}
.detail-breadcrumb a:hover { opacity: 0.7; }
.detail-breadcrumb span { color: var(--color-text-light); }

.detail-hero { min-height: 55vh; display: flex; align-items: flex-end; padding: calc(var(--nav-height) + 40px) 24px 60px; color: var(--color-white); }
.detail-hero-content { max-width: var(--container-max); margin: 0 auto; width: 100%; }
.detail-hero-content h1 { color: var(--color-white); margin-bottom: 8px; }
.detail-hero .detail-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 12px; }
.detail-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.95rem; opacity: 0.9; }
.detail-meta-item svg { flex-shrink: 0; }

.detail-overview { max-width: 800px; }
.detail-overview h2 { margin-bottom: 16px; }
.detail-overview p { font-size: 1.05rem; color: var(--color-text-light); line-height: 1.8; }

.itinerary-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; }
.itinerary-day {
    display: grid; grid-template-columns: 80px 1fr; gap: 24px;
    padding: 24px 0; border-bottom: 1px solid var(--color-border);
}
.itinerary-day:last-child { border-bottom: none; }
.day-label {
    font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
    color: var(--color-primary); padding-top: 2px;
}
.day-content h3 { font-size: 1.1rem; margin-bottom: 4px; }
.day-content p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 0; }

.detail-images {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.detail-images img { border-radius: var(--radius-sm); width: 100%; height: 260px; object-fit: cover; }
@media (max-width: 768px) {
    .detail-images { grid-template-columns: 1fr 1fr; }
    .detail-images img:last-child:nth-child(odd) { grid-column: 1 / -1; height: 200px; }
}
@media (max-width: 480px) {
    .detail-images { grid-template-columns: 1fr; }
    .detail-images img { height: 220px; }
    .detail-images img:last-child:nth-child(odd) { grid-column: auto; height: 220px; }
}

.includes-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 800px;
}
@media (max-width: 600px) { .includes-grid { grid-template-columns: 1fr; gap: 24px; } }
.includes-grid ul { display: flex; flex-direction: column; gap: 10px; }
.includes-grid li {
    display: flex; align-items: flex-start; gap: 8px; font-size: 0.95rem; color: var(--color-text-light);
}
.includes-grid li svg { flex-shrink: 0; margin-top: 3px; }
.includes-grid h3 { margin-bottom: 12px; }

.detail-cta-box {
    background: var(--color-bg-alt); border-radius: var(--radius); padding: 40px;
    text-align: center; max-width: 700px; margin: 0 auto;
}
.detail-cta-box h2 { margin-bottom: 12px; }
.detail-cta-box p { color: var(--color-text-light); margin-bottom: 24px; }
.detail-cta-box .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
    .itinerary-day { grid-template-columns: 1fr; gap: 4px; }
}

/* ===== Destination Detail ===== */
.dest-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.dest-detail-grid img { border-radius: var(--radius); width: 100%; height: auto; }
@media (max-width: 768px) { .dest-detail-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Utility ===== */
section[id] { scroll-margin-top: var(--nav-height); }
