/* ========== Design Tokens ========== */
:root {
    /* Brand colours */
    --primary: #1A3626;
    /* Jungle Green  */
    --primary-light: #2c5a40;
    --secondary: #E5A93D;
    /* Leopard Gold  */
    --secondary-hover: #c68e27;
    --accent: #D3C4A5;
    /* Safari Sand   */
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-color: #F7F5F0;
    --white: #ffffff;

    /* WhatsApp green — single source of truth */
    --whatsapp: #25D366;
    --whatsapp-hover: #1da851;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Shared easing */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}


/* ========== Reset & Base ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* ========== Typography ========== */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    color: var(--primary);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}


/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(229, 169, 61, 0.3);
}

.btn-secondary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 54, 38, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
}


/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: linear-gradient(180deg, rgba(14, 28, 19, 0.88) 0%, rgba(14, 28, 19, 0.45) 75%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.navbar.scrolled {
    background: rgba(18, 38, 27, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.9rem 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(229, 169, 61, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

/* Logo colours — transparent navbar (over hero) */
.navbar:not(.scrolled) .logo .wings,
.navbar:not(.scrolled) .logo .roars,
.navbar:not(.scrolled) .logo .amp {
    color: var(--white);
}

/* Logo colours — opaque scrolled navbar */
.navbar.scrolled .logo .wings {
    color: var(--accent);
}

.navbar.scrolled .logo .amp {
    color: var(--secondary);
    font-size: 1.2rem;
}

.navbar.scrolled .logo .roars {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

/* Underline hover effect */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}


/* ========== Hero ========== */
.hero {
    min-height: 100vh;
    height: auto;
    padding-top: clamp(6.5rem, 13vh, 8.5rem);
    padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
    /* WebP is loaded by default; PNG fallback is in the @supports block below */
    background-image: url('assets/images/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

/* iOS does not support background-attachment: fixed — falls back to scroll */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
    }
}

/* PNG fallback for browsers that don't support WebP (very rare now) */
@supports not (background-image: url('assets/images/hero.webp')) {
    .hero {
        background-image: url('assets/images/hero.png');
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 22, 15, 0.82) 0%, rgba(10, 22, 15, 0.52) 45%, rgba(18, 38, 27, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 960px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(229, 169, 61, 0.15);
    border: 1px solid rgba(229, 169, 61, 0.45);
    color: var(--secondary);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-content h1 {
    font-size: clamp(2.3rem, 4.2vw, 3.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

/* The subtitle line within the hero h1 */
.hero-content h1 .hero-subtitle {
    display: block;
    color: var(--secondary);
    font-size: 0.62em;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 0.35rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    line-height: 1.65;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
}

.hero-review-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: var(--transition);
}

.hero-review-pill:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: var(--secondary);
    transform: translateY(-2px);
    color: var(--white);
}

.hero-review-pill .pill-stars {
    color: #fbbc04;
    letter-spacing: 1px;
    font-size: 0.92rem;
}

.hero-review-pill .pill-score {
    font-weight: 800;
}

.hero-review-pill .pill-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.84rem;
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}


/* ========== About ========== */
.about {
    padding: 8rem 0;
    background-color: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--secondary);
    border-radius: 50%;
    z-index: -1;
}


/* ========== Gallery Section ========== */
.gallery {
    padding: 7rem 0;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
}

.gallery .section-title {
    color: var(--white);
}

.gallery .section-desc {
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.gallery .section-header {
    text-align: center;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.gallery-filter-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(229, 169, 61, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.gallery-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gallery-card.hidden {
    display: none;
}

.gallery-card:hover {
    transform: translateY(-7px);
    border-color: rgba(229, 169, 61, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.gallery-card-media {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
}

.gallery-card:hover .gallery-card-media img {
    transform: scale(1.08);
}

.gallery-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(18, 38, 27, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(229, 169, 61, 0.4);
    color: var(--secondary);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.gallery-card-info {
    padding: 1.25rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-card-meta h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.2rem;
    font-family: var(--font-heading);
}

.gallery-card-meta p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gallery-card-meta p svg {
    color: var(--secondary);
}

.gallery-zoom-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-card:hover .gallery-zoom-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}


/* ========== Fleet ========== */
.fleet {
    padding: 8rem 0;
    background-color: var(--white);
}

.fleet-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.secondary-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.secondary-images .about-image-wrapper {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.fleet-images .image-accent {
    bottom: -15px;
    right: -15px;
    z-index: -1;
}


/* ========== Google Reviews Section ========== */
.reviews-section {
    padding: 7rem 0;
    background-color: var(--bg-color);
    position: relative;
}

.anchor-alias {
    position: relative;
    top: -90px;
    display: block;
    visibility: hidden;
}

.reviews-section .section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.reviews-section .section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

.google-badge-card {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.google-badge-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-badge-text {
    display: flex;
    flex-direction: column;
}

.google-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.google-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: #34A853;
    font-weight: 600;
}

.google-badge-score {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.score-num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    font-family: var(--font-body);
}

.score-stars {
    display: flex;
    flex-direction: column;
}

.stars-gold {
    color: #fbbc04;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.score-count {
    font-size: 0.82rem;
    color: var(--text-light);
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--white);
    color: #3c4043;
    border: 1px solid #dadce0;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12);
    border-radius: 50px;
    padding: 0.75rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #c6c6c6;
    box-shadow: 0 4px 12px rgba(60, 64, 67, 0.18);
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.google-review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
    border-color: rgba(229, 169, 61, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-blue { background: #4285f4; }
.avatar-green { background: #34a853; }
.avatar-red { background: #ea4335; }
.avatar-gold { background: #fbbc04; color: #333; }

.reviewer-details {
    flex: 1;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
    font-family: var(--font-body);
}

.reviewer-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-dot {
    font-weight: bold;
}

.google-source-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
}

.review-rating-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-tag {
    font-size: 0.75rem;
    background: #f1f3f4;
    color: #3c4043;
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    font-weight: 500;
}

.review-tag.highlight {
    background: rgba(37, 211, 102, 0.1);
    color: #1da851;
}

.review-body {
    color: #3c4043;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.review-photos {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.review-photo-thumb {
    position: relative;
    width: 90px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.review-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-photo-thumb:hover img {
    transform: scale(1.1);
}

.photo-expand-badge {
    position: absolute;
    bottom: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========== Safaris ========== */
.safaris {
    padding: 8rem 0;
    background-color: var(--primary);
    color: var(--white);
}

.safaris .section-title,
.safaris p:not(.price) {
    color: var(--white);
}

.safaris .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.safari-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.safari-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.safari-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.safari-card:hover .card-image img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.price {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}


/* ========== Booking ========== */
.booking {
    padding: 8rem 0;
    background-color: var(--accent);
    position: relative;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--white);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    margin-top: -12rem;
    position: relative;
    z-index: 10;
}

.booking-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    color: var(--secondary);
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--secondary);
}

/* WhatsApp package cards */
.booking-packages {
    display: flex;
    flex-direction: column;
}

.booking-packages-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.booking-packages-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.whatsapp-package-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.whatsapp-package-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    background: var(--bg-color);
    border: 1px solid #e8e4dd;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-package-card:hover {
    border-color: var(--whatsapp);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.04), rgba(37, 211, 102, 0.08));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.15);
}

.whatsapp-package-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(229, 169, 61, 0.04), rgba(229, 169, 61, 0.08));
}

.whatsapp-package-card.featured:hover {
    border-color: var(--whatsapp);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.06), rgba(37, 211, 102, 0.12));
}

.wp-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.75rem;
    border-radius: 0 14px 0 10px;
    font-family: var(--font-body);
}

.wp-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wp-card-info {
    flex: 1;
    min-width: 0;
}

.wp-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.wp-card-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin: 0;
}

.wp-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--whatsapp);
    background: rgba(37, 211, 102, 0.08);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    flex-shrink: 0;
    transition: var(--transition);
}

.wp-card-action svg {
    transition: transform 0.3s ease;
}

.whatsapp-package-card:hover .wp-card-action {
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-package-card:hover .wp-card-action svg {
    transform: translateX(3px);
}

.whatsapp-general-cta {
    text-align: center;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background-color: var(--whatsapp);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}


/* ========== FAQ ========== */
.faq {
    padding: 7rem 0;
    background-color: var(--bg-color);
}

.faq-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.faq-container {
    max-width: 840px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(26, 54, 38, 0.09);
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 22px rgba(26, 54, 38, 0.07);
    border-color: rgba(229, 169, 61, 0.4);
}

.faq-item.open {
    border-color: var(--secondary);
    box-shadow: 0 8px 30px rgba(229, 169, 61, 0.14);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.65rem;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.25s ease;
    gap: 1.25rem;
    line-height: 1.45;
}

.faq-question:hover {
    color: var(--secondary-hover);
}

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(26, 54, 38, 0.06);
    color: var(--primary);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
    flex-shrink: 0;
}

.faq-icon svg {
    display: block;
    width: 14px;
    height: 14px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 3px 10px rgba(229, 169, 61, 0.35);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease,
        padding 0.35s ease,
        visibility 0.35s ease;
    padding: 0 1.65rem;
}

.faq-item.open .faq-answer {
    padding: 0 1.65rem 1.5rem 1.65rem;
    opacity: 1;
    visibility: visible;
}

.faq-answer p {
    margin-bottom: 0;
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.75;
}


/* ========== Footer ========== */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

.footer-brand .footer-logo {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    margin-bottom: 0.75rem;
}

.footer-brand .wings {
    color: var(--accent);
}

.footer-brand .amp {
    color: var(--secondary);
}

.footer-brand .roars {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-nav h4,
.footer-info h4 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(4px);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.footer-detail svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-detail a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-detail a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}


/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 38, 27, 0.88);
    color: var(--white);
    border: 1px solid rgba(229, 169, 61, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 22px rgba(229, 169, 61, 0.4);
}


/* ========== Lightbox Modal ========== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox:not([hidden]) {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 20, 15, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-media-box {
    max-width: 1000px;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}

.lightbox-caption {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    margin-top: 1rem;
    padding: 0 0.5rem;
}

.lightbox-caption-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
    font-family: var(--font-heading);
}

.lightbox-caption-text p {
    color: var(--secondary);
    font-size: 0.88rem;
    margin: 0;
}

.lightbox-counter {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -65px;
}

.lightbox-next {
    right: -65px;
}


/* ========== Floating WhatsApp Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.65);
    }
}

/* Inline WhatsApp icon links (next to phone numbers) */
.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.35rem;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.whatsapp-contact:hover {
    transform: scale(1.2);
}

.whatsapp-contact svg {
    display: block;
}


/* ========== Animations ========== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ========== Accessibility: Visible Focus States ========== */
*:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(229, 169, 61, 0.25);
}

.faq-question:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: -3px;
    border-radius: 14px;
}

input:focus-visible,
select:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 1px;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(229, 169, 61, 0.2);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger:focus-visible {
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
    border-radius: 4px;
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}


/* ========== Number Input — Hide Spinners ========== */
input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* ========== Responsive: 992px ========== */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .google-badge-card {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
    }

    .google-badge-brand,
    .google-badge-score {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: -6rem;
        padding: 2rem;
    }

    .about,
    .fleet,
    .safaris,
    .gallery,
    .reviews-section,
    .booking,
    .faq {
        padding: 5rem 0;
    }
}


/* ========== Responsive: 768px ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Mobile nav — slide-in drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero */
    .hero {
        background-attachment: scroll;
        padding-top: 6.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-review-pill {
        justify-content: center;
        text-align: center;
    }

    .hero-trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.65rem;
    }

    .trust-divider {
        display: none;
    }

    /* Typography */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Lightbox nav position on mobile */
    .lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: -15px;
    }

    .lightbox-next {
        right: -15px;
    }

    /* FAQ */
    .faq {
        padding: 5rem 0;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        font-size: 0.98rem;
        padding: 1.15rem 1.25rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    /* Booking */
    .booking-container {
        border-radius: 20px;
    }

    /* Ensure WhatsApp contact icons have adequate tap area */
    .whatsapp-contact {
        min-width: 44px;
        min-height: 44px;
        margin-left: 0.25rem;
    }

    /* Prevent phone numbers from causing horizontal scroll */
    .contact-item span {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.25rem;
        word-break: break-word;
    }

    /* Reduce card image height on mobile */
    .card-image {
        height: 200px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-detail {
        justify-content: center;
    }
}


/* ========== Responsive: 480px ========== */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.98rem;
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .google-badge-card {
        padding: 1.25rem 1rem;
    }

    .score-num {
        font-size: 2.2rem;
    }

    .google-review-card {
        padding: 1.25rem;
    }

    .booking-info h2 {
        font-size: 2rem;
    }

    .booking-container {
        padding: 1.5rem;
        margin-top: -3rem;
    }

    .about,
    .fleet,
    .safaris,
    .gallery,
    .reviews-section,
    .booking,
    .faq {
        padding: 4rem 0;
    }

    .btn {
        padding: 0.7rem 1.5rem;
    }

    /* Safari cards stack vertically on very small screens */
    .safari-grid {
        grid-template-columns: 1fr;
    }

    /* Stack phone numbers vertically with WhatsApp icons */
    .contact-item {
        flex-wrap: wrap;
    }

    /* WhatsApp package card adjustments */
    .whatsapp-package-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .wp-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }

    .wp-card-info h4 {
        font-size: 0.95rem;
    }

    .booking-packages-title {
        font-size: 1.4rem;
    }

    /* Smaller floating WhatsApp & Back to Top button on tiny screens */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .back-to-top {
        bottom: 1.25rem;
        left: 1.25rem;
        width: 42px;
        height: 42px;
    }
}