/* ==========================================================================
   Ongishman Safaris — Main Stylesheet
   Brand colours: Safari Green, Sunset Orange, Safari Gold, Black, Off White
   No gradients. Solid colours only. Mobile-first responsive design.
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #016533;
    --secondary: #FC6802;
    --accent: #FCD013;
    --forest: #1B6B46;
    --golden: #FA9D0B;
    --light: #EEF8EC;
    --dark: #010101;

    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container-max: 1280px;
    --header-height: 80px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary:hover {
    background: #e55d00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background: var(--accent);
    color: var(--dark);
}
.btn-gold:hover {
    background: #e6bc12;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ---------- Top Bar ---------- */
.top-bar {
    background: var(--dark);
    color: var(--light);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.top-bar-left a, .top-bar-right span {
    color: var(--light);
    transition: var(--transition);
}
.top-bar-left a:hover { color: var(--accent); }
.top-bar-left a i, .top-bar-right span i { margin-right: 0.35rem; color: var(--accent); }
.top-bar-social {
    display: flex;
    gap: 0.75rem;
}
.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition);
}
.top-bar-social a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* ---------- Header / Navigation ---------- */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-logo-img {
    height: var(--header-height);
    width: auto;
    max-width: none;
    object-fit: contain;
    padding: 0.35rem 0;
    transition: var(--transition);
}
.nav-logo:hover .nav-logo-img {
    opacity: 0.85;
}
.footer-logo-img {
    height: 60px;
    filter: brightness(0) invert(1);
    padding: 0;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-menu > li > a {
    display: block;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: var(--light);
}
.nav-menu > li > a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}
.nav-cta-mobile { display: none; }
.nav-cta-desktop { margin-left: 0.5rem; }

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections ---------- */
.section {
    padding: 5rem 0;
}
.section-alt {
    background: var(--light);
}
.section-header {
    margin-bottom: 3rem;
}
.section-header.center {
    text-align: center;
}
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
.section-label-light { color: var(--accent); }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-footer { margin-top: 3rem; }
.section-footer.center { text-align: center; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 1, 1, 0.55);
}
.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 4rem 20px;
    max-width: var(--container-max);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(252, 208, 19, 0.2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.hero-content h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    max-width: 700px;
}
.hero-content > p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
}
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-top: 0.25rem;
}

/* ---------- Intro Section ---------- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.intro-text h2 { margin: 0.75rem 0 1.25rem; }
.intro-text p { color: var(--gray-600); margin-bottom: 1rem; }
.intro-text .btn { margin-top: 0.5rem; }

.intro-image {
    position: relative;
}
.intro-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.intro-image-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.intro-image-badge i {
    font-size: 2rem;
    color: var(--accent);
}
.intro-image-badge strong {
    display: block;
    color: var(--primary);
    font-size: 0.95rem;
}
.intro-image-badge span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ---------- Tour Cards ---------- */
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.tour-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.tour-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
}
.tour-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}
.tour-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.tour-card-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(1,1,1,0.7);
    color: var(--white);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.tour-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tour-card-rating {
    font-size: 0.85rem;
    color: var(--golden);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.tour-card-rating span {
    color: var(--gray-400);
    font-weight: 400;
}
.tour-card-body h3 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.tour-card-body p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex: 1;
}
.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}
.tour-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.price-label {
    font-size: 0.75rem;
    color: var(--gray-400);
}
.price-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}
.price-unit {
    font-size: 0.75rem;
    color: var(--gray-400);
}
.tour-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition);
}
.tour-card:hover .tour-card-link {
    color: var(--secondary);
    gap: 0.6rem;
}

/* ---------- Tour Filter Bar ---------- */
.tour-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}
.filter-chip {
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}
.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ---------- Why Choose Us ---------- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent);
}
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--primary);
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: var(--primary);
    color: var(--accent);
}
.why-card h3 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}
.why-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* ---------- Destinations Banner ---------- */
.destinations-banner {
    padding: 4rem 0;
    background: var(--dark);
}
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.destination-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}
.destination-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-item:hover img {
    transform: scale(1.1);
}
.destination-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1,1,1,0.45);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
}
.destination-overlay h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.destination-overlay span {
    font-size: 0.8rem;
    color: var(--accent);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -0.5rem;
    right: 1.5rem;
    font-size: 5rem;
    color: var(--light);
    font-family: var(--font-heading);
    line-height: 1;
    z-index: 0;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}
.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}
.testimonial-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    position: relative;
    z-index: 1;
}
.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--primary);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
    color: var(--white);
}
.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Page Header ---------- */
.page-header {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 101, 51, 0.7);
}
.page-header-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 4rem 20px;
}
.page-header-content h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}
.breadcrumb a {
    color: var(--accent);
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--white);
}
.breadcrumb i {
    font-size: 0.65rem;
}
.tour-page-header .page-header-overlay {
    background: rgba(1, 1, 1, 0.6);
}
.tour-header-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ---------- Tour Detail ---------- */
.tour-detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 3rem;
    align-items: start;
}
.tour-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--light);
    border-radius: var(--radius-md);
}
.tour-detail-meta span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tour-detail-meta i { color: var(--secondary); }
.tour-detail-main h2 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}
.tour-detail-main h3 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}
.tour-detail-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.8;
}

.highlights-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.highlights-list i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Itinerary */
.itinerary {
    border-left: 3px solid var(--primary);
    padding-left: 0;
}
.itinerary-item {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0 1rem 1.5rem;
    position: relative;
}
.itinerary-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 1.25rem;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--secondary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--secondary);
}
.itinerary-day {
    flex-shrink: 0;
    width: 70px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary);
    padding-top: 0.1rem;
}
.itinerary-content h4 {
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.itinerary-content p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* Includes / Excludes */
.tour-includes-excludes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}
.includes-box, .excludes-box {
    padding: 1.5rem;
    border-radius: var(--radius-md);
}
.includes-box {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.excludes-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.includes-box h4 {
    color: #15803d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.excludes-box h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tour-includes-excludes ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tour-includes-excludes li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-left: 1.25rem;
    position: relative;
}
.includes-box li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #15803d;
    font-weight: 700;
}
.excludes-box li::before {
    content: '\2717';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

/* Tour Gallery */
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}
.tour-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.tour-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.tour-gallery-item:hover img {
    transform: scale(1.08);
}

/* Sidebar */
.tour-detail-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.booking-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
}
.booking-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}
.booking-card-price .price-amount {
    font-size: 2.5rem;
}
.booking-card .btn { margin-bottom: 0.75rem; }
.booking-card-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}
.booking-card-features div {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.booking-card-features i { color: var(--primary); }

.contact-card {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
}
.contact-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}
.contact-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}
.contact-card-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    display: block;
}

/* ---------- About Page ---------- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.mvv-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border-top: 4px solid var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.mvv-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border: 3px solid var(--primary);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary);
}
.mvv-card h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.mvv-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

/* Stats Section */
.stats-section {
    background: var(--primary);
    padding: 3.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}
.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.5rem;
}

/* ---------- Gallery ---------- */
.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(1, 101, 51, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-cat {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}
.gallery-overlay .fa-expand {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    color: var(--white);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(1,1,1,0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--secondary);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Contact Page ---------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2 { margin: 0.75rem 0 1rem; }
.contact-info > p { color: var(--gray-600); margin-bottom: 2rem; }
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--primary);
}
.contact-info-item strong {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 0.15rem;
}
.contact-info-item a, .contact-info-item span {
    color: var(--gray-500);
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-info-item a:hover { color: var(--secondary); }

/* Forms */
.contact-form-wrap, .booking-form-wrap {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}
.contact-form h3, .booking-form-wrap h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(1, 101, 51, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-message {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    display: none;
}
.form-message.success {
    display: block;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
}
.form-message.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ---------- Booking Page ---------- */
.booking-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}
.booking-form-wrap h2 { margin: 0.75rem 0 0.75rem; }
.booking-form-wrap > p { color: var(--gray-600); margin-bottom: 1.5rem; }
.booking-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}
.booking-info-card {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}
.booking-info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.booking-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.booking-info-list li {
    font-size: 0.9rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.booking-info-list i { color: var(--primary); }
.booking-contact-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
}
.booking-contact-card h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.booking-contact-card p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.booking-contact-card .btn { margin-bottom: 0.65rem; }

/* ---------- Empty State ---------- */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}
.empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}
.empty-state h3 { color: var(--gray-600); margin-bottom: 0.5rem; }
.empty-state p { color: var(--gray-400); margin-bottom: 1.5rem; }

/* ---------- 404 Page ---------- */
.error-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 0;
}
.error-code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    display: block;
    margin-bottom: 1rem;
}
.error-section h1 { margin-bottom: 1rem; }
.error-section p { color: var(--gray-500); font-size: 1.1rem; margin-bottom: 2rem; }
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 4rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    margin-bottom: 1.25rem;
}
.footer-logo .logo-name { color: var(--white); }
.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}
.footer-social {
    display: flex;
    gap: 0.65rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--light);
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
}
.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.footer-col ul a, .footer-col ul li {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}
.footer-col ul a:hover {
    color: var(--accent);
    padding-left: 4px;
}
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.footer-contact i { color: var(--accent); width: 16px; }
.whatsapp-btn-footer { margin-top: 1.25rem; }
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}
@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--forest);
    transform: translateY(-3px);
}

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .tour-detail-layout {
        grid-template-columns: 1fr;
    }
    .tour-detail-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .tour-detail-sidebar > * {
        flex: 1;
        min-width: 280px;
    }
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .booking-sidebar > * {
        flex: 1;
        min-width: 280px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .top-bar { display: none; }

    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        visibility: hidden;
        transition: max-height 0.35s ease, visibility 0.35s ease, padding 0.35s ease;
    }
    .nav-menu.active {
        max-height: 500px;
        overflow-y: auto;
        visibility: visible;
        padding: 1rem 20px 2rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-100);
    }
    .nav-menu > li > a {
        padding: 0.85rem 1rem;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }
    .nav-menu > li > a.active::after { display: none; }
    .nav-cta-mobile {
        display: block;
        margin-top: 0.5rem;
    }
    .nav-cta-mobile .btn { width: 100%; }
    .nav-cta-desktop { display: none; }

    .nav-logo-img {
        height: 64px;
    }

    .hero { min-height: 80vh; }
    .hero-content { padding: 5rem 20px 3rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-num { font-size: 1.75rem; }

    .section { padding: 3rem 0; }
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .intro-image-badge {
        bottom: -1rem;
        left: 0.5rem;
        padding: 0.75rem 1rem;
    }

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

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

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .highlights-list {
        grid-template-columns: 1fr;
    }

    .tour-includes-excludes {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-about { grid-column: auto; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions, .error-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-actions .btn, .error-actions .btn {
        width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .hero-actions .btn {
        flex: 1;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .hero-stats {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 0.5rem;
    }
    .hero-stat-num { font-size: 1.5rem; }
    .hero-stat-label { font-size: 0.7rem; }

    .tour-detail-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .itinerary-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    .itinerary-day { width: auto; }

    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-close {
        top: 1rem;
        right: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { min-height: 75vh; }
    .hero-content h1 { font-size: 1.85rem; }
    .hero-content > p { font-size: 1rem; }
    .hero-stats {
        gap: 0.5rem;
    }
    .hero-stat-num { font-size: 1.25rem; }
    .hero-stat-label { font-size: 0.65rem; }

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

    .section { padding: 2.5rem 0; }
    .section-header { margin-bottom: 2rem; }

    .contact-form-wrap, .booking-form-wrap {
        padding: 1.5rem;
    }

    .error-code { font-size: 5rem; }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 1rem;
        right: 1rem;
    }
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 42px;
        height: 42px;
    }

    .nav-logo-img {
        height: 60px;
        padding: 0.25rem 0;
    }
    .footer-logo-img {
        height: 50px;
    }
}
