/* --- VARIABLES --- */
:root {
    --color-primary: #1a1a1a;
    --color-accent: #ffcc00; /* Yellow */
    --color-forest: #2E4A3D; /* Green */
    --color-white: #ffffff;
    --color-text: #333333;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: #fff;
    color: var(--color-text);
    line-height: 1.8;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--color-primary); }
a { text-decoration: none; transition: var(--transition); color: inherit; }
img { max-width: 100%; display: block; }

/* --- HEADER --- */
header {
    position: fixed;
    top: 0; width: 100%; z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    transition: background 0.4s ease;
}

header.scrolled {
    background: #111;
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; font-weight: 700; display:flex; gap:10px; align-items:center; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 0.9rem; text-transform: uppercase; font-weight: 500; }
.nav-links a:hover { color: var(--color-accent); }

.nav-right { display: flex; align-items: center; gap: 20px; }
.btn-ticket { background: var(--color-accent); color: #000; padding: 10px 25px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; }
.btn-ticket:hover { background: #fff; }

.contact-icon { display: flex; gap: 10px; color: var(--color-accent); align-items: center; }
.contact-details { display: flex; flex-direction: column; line-height: 1.2; }
.contact-details span { color: #fff; font-weight: 700; font-size: 0.9rem; }
.hamburger { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* --- HERO (YOUTUBE BG) --- */
.hero {
    position: relative; width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; overflow: hidden;
}
.video-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: -1; overflow: hidden;
}
.video-background iframe {
    position: absolute; top: 50%; left: 50%;
    width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.77vh;
    transform: translate(-50%, -50%);
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); z-index: 0; }
.hero-content { position: relative; z-index: 1; max-width: 900px; padding: 20px; }

.pill-label { background: var(--color-accent); color: #000; padding: 5px 15px; border-radius: 20px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; display: inline-block; }
.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.text-highlight { color: var(--color-accent); }
.btn-outline-hero { border: 2px solid #fff; color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: 600; text-transform: uppercase; display: inline-block; }
.btn-outline-hero:hover { background: #fff; color: #000; }

/* --- PHILOSOPHY (ABOUT) --- */
.section-padding { padding: 80px 0; }
.about-section { background: #fff; overflow: hidden; }
.about-wrapper { display: flex; flex-wrap: wrap; gap: 50px; align-items: center; }
.about-content { flex: 1; min-width: 350px; }

.section-label-group { display: flex; gap: 15px; align-items: center; margin-bottom: 20px; }
.vertical-bar { width: 4px; height: 40px; background: var(--color-accent); }
.sub-heading { text-transform: uppercase; letter-spacing: 2px; color: #666; font-size: 0.9rem; }
.main-heading { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.about-desc { color: #555; margin-bottom: 30px; font-size: 1rem; }

.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; border-top: 1px solid #eee; padding-top: 30px; }
.feature-box h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-box p { font-size: 0.9rem; color: #777; line-height: 1.5; }
.btn-primary-yellow { background: var(--color-accent); color: #000; padding: 15px 35px; border-radius: 50px; font-weight: 700; display: inline-block; }
.btn-primary-yellow:hover { box-shadow: 0 10px 20px rgba(255,204,0,0.3); transform: translateY(-3px); }

.about-images { flex: 1; min-width: 350px; height: 500px; position: relative; }
.dots-pattern { position: absolute; top: -20px; right: -20px; width: 150px; height: 150px; background-image: radial-gradient(#ccc 2px, transparent 2px); background-size: 15px 15px; z-index: 0; }
.img-box { position: absolute; border-radius: 4px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); overflow: hidden; }
.img-box img { width: 100%; height: 100%; object-fit: cover; }
.top-img { width: 60%; height: 55%; top: 0; right: 0; z-index: 2; border: 8px solid #fff; }
.bottom-img { width: 70%; height: 60%; bottom: 20px; left: 0; z-index: 3; }

/* --- EXPERIENCES --- */
.bg-light { background: #f9f9f9; }
.text-center { text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 10px; }
.description-text { color: #666; max-width: 700px; margin: 0 auto 50px; }
.experiences-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card-img-wrapper { height: 250px; overflow: hidden; }
.card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.card:hover img { transform: scale(1.1); }
.card-content { padding: 30px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: #666; font-size: 0.95rem; margin-bottom: 20px; }
.read-more { color: #d4a017; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }


/* --- ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(30px); transition: 1s; }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1s; }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .nav-links, .nav-right { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .about-wrapper, .split-layout { flex-direction: column; }
    .about-images, .split-image { width: 100%; height: 400px; }
}



/* --- WHY CHOOSE US (Dark Split Section) --- */
.why-us-section {
    display: flex;
    flex-wrap: wrap;
    background-color: #111; /* Dark Background */
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.why-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* -- Left Column (Image) -- */
.why-image-col {
    flex: 1;
    min-width: 400px;
    position: relative;
    height: auto;
    min-height: 600px; /* Ensures height matches text */
}

.main-why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Yellow Overlay Box on Image */
.feature-overlay-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%; /* Covers part of the image like design */
    background-color: var(--color-accent); /* Maati Yellow */
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.overlay-icon {
    font-size: 2.5rem;
    color: #111;
}

.overlay-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #111;
    line-height: 1.3;
}

/* -- Right Column (Content) -- */
.why-content-col {
    flex: 1;
    min-width: 400px;
    background-color: #111; /* Dark Background */
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sub-title {
    color: var(--color-accent); /* Yellow */
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.why-heading {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-desc {
    color: #bbb; /* Light Grey text */
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Features Grid */
.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two Columns */
    gap: 30px;
}

.why-feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-icon {
    font-size: 2.5rem; /* Large Icon size */
    margin-bottom: 10px;
}

.why-feature-text h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-feature-text p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-link {
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.feature-link:hover {
    color: #fff;
    letter-spacing: 1px;
}

/* --- Responsive Fixes --- */
@media (max-width: 900px) {
    .why-wrapper {
        flex-direction: column;
    }
    
    .why-image-col {
        height: 400px;
        min-height: auto;
    }
    
    .why-content-col {
        padding: 50px 30px;
    }
    
    .why-features {
        grid-template-columns: 1fr; /* Stack features on mobile */
    }

    .why-heading {
        font-size: 2.2rem;
    }
}


/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden; /* Hide horizontal scrollbar from body */
}

/* Header Layout */
.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-title-wrapper {
    max-width: 600px;
}

.section-label-bar {
    display: block;
    padding-left: 15px;
    border-left: 4px solid var(--color-accent); /* Yellow Bar */
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.gallery-heading {
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

/* Navigation Buttons */
.gallery-nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #1a1a1a;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
}

/* Scrollable Container */
.gallery-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px; /* Space for scrollbar if visible */
    scrollbar-width: none; /* Firefox: hide scrollbar */
}

.gallery-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari: hide scrollbar */
}

/* Gallery Items */
.gallery-item {
    min-width: 300px;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0; /* Prevent shrinking */
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Lightbox (Full Screen View) */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation: zoomIn 0.3s;
}

#lightbox-caption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 1.2rem;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: var(--color-accent);
}

@keyframes zoomIn {
    from {transform:scale(0.8); opacity:0} 
    to {transform:scale(1); opacity:1}
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-heading { font-size: 2rem; }
    .gallery-item { min-width: 260px; height: 300px; }
}





/* --- TESTIMONIALS / SAFARI CAROUSEL SECTION --- */
        .safari-section {
            display: flex;
            min-height: 100vh;
            width: 100%;
            position: relative;
            font-family: var(--font-body);
            overflow: hidden;
        }

        /* Left Panel (Image) */
        .left-panel {
            width: 40%;
            background: url('https://images.unsplash.com/photo-1534759846116-5799c33ce22a?w=800&q=80') no-repeat center center/cover;
            position: relative;
            z-index: 1;
        }

        /* Right Panel (Content) */
        .right-panel {
            width: 60%;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://images.unsplash.com/photo-1561731216-c3a4d99437d5?q=80&w=1000&auto=format&fit=crop') no-repeat center center/cover;
            padding: 80px 50px 80px 100px; 
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .safari-section .sub-heading {
            color: var(--color-accent);
            border-left: 3px solid var(--color-accent);
            padding-left: 10px;
        }

        .safari-section h2 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 30px;
            color: #fff;
        }

        .safari-section h2 span { color: var(--color-accent); }

        .cta-buttons { display: flex; gap: 20px; margin-bottom: 60px; }
        
        .btn { padding: 12px 30px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: 0.3s; display: inline-block; }
        
        .btn-primary { background-color: var(--color-accent); color: #000; border: 2px solid var(--color-accent); }
        .btn-outline { background-color: transparent; color: #fff; border: 2px solid #fff; }
        .btn:hover { transform: translateY(-3px); }

        /* Swiper Overlap Logic */
        .swiper.mySwiper {
            width: 140%; 
            margin-left: -20%; 
            padding-bottom: 50px !important; 
        }

        .swiper-slide { transition: all 0.3s ease; opacity: 0.5; }
        .swiper-slide-active { opacity: 1; }

        .testimonial-card {
            background: rgba(0,0,0,0.6);
            padding: 30px;
            border-radius: 5px;
            color: #ccc;
            position: relative;
            transition: 0.3s ease;
        }

        .swiper-slide-active .testimonial-card {
            background: #ffffff;
            color: #555;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: scale(1.05);
        }

        .user-info { display: flex; align-items: center; margin-bottom: 15px; }
        .user-img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; margin-right: 15px; }
        
        .quote-text { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
        
        .details h4 { font-size: 1rem; margin-bottom: 5px; color: var(--color-accent); }
        .swiper-slide-active .details h4 { color: #1a1a1a; }
        
        .role { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.8; }
        .stars { color: var(--color-accent); font-size: 0.8rem; margin-top: 5px; }
        
        .quote-bg-icon { position: absolute; bottom: 20px; right: 20px; font-size: 80px; opacity: 0.1; font-family: serif; line-height: 0; color: currentColor; }

        /* --- ANIMATIONS --- */
        .reveal { opacity: 0; transform: translateY(30px); transition: 1s; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .reveal-right { opacity: 0; transform: translateX(50px); transition: 1s; }
        .reveal-right.active { opacity: 1; transform: translateX(0); }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .nav-links, .nav-right { display: none; }
            .hamburger { display: block; }
            .hero h1 { font-size: 2.5rem; }
            .about-wrapper, .why-wrapper, .safari-section { flex-direction: column; }
            .about-images, .why-image-col { width: 100%; height: 400px; min-height: auto; }
            .left-panel { width: 100%; height: 300px; }
            .right-panel { width: 100%; padding: 40px 20px; }
            .swiper.mySwiper { width: 100%; margin-left: 0; }
            .why-features, .gallery-header { flex-direction: column; }
            .gallery-heading { font-size: 2rem; }
            .why-content-col { padding: 50px 30px; }
        }



        /* --- LATEST NEWS SECTION --- */
.news-section {
    padding: 100px 0;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Row */
.news-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.news-title-wrapper {
    flex: 1;
    min-width: 300px;
}

.sub-heading-yellow {
    display: block;
    color: var(--tm-skincolor); /* #f8bf02 */
    font-family: var(--tm-body-font);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 3px solid var(--tm-skincolor);
    line-height: 1;
}

.section-heading {
    font-family: var(--tm-heading-font); /* Crimson Pro */
    font-size: 3rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0;
}

.text-highlight { color: var(--tm-skincolor); }

.news-desc-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.news-desc-wrapper p {
    color: #777;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* --- NEWS GRID LAYOUT --- */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Equal Columns */
    gap: 30px;
}

/* -- COL 1: LIST -- */
.news-list-col {
    display: flex;
    flex-direction: column;
}

.news-item-small {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.news-item-small.no-border {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ni-img {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.ni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.news-item-small:hover .ni-img img { transform: scale(1.1); }

.ni-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ni-title {
    font-family: var(--tm-heading-font);
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.ni-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: 0.3s;
}

.ni-title a:hover { color: var(--tm-skincolor); }

.ni-meta {
    font-family: var(--tm-body-font);
    font-size: 0.85rem;
    color: #999;
}

.icon-clock { margin-right: 5px; font-size: 0.8rem; }

/* -- COL 2 & 3: LARGE CARDS -- */
.news-card-col {
    height: 100%;
}

.news-card-large {
    position: relative;
    height: 100%;
    min-height: 400px; /* Ensures height aligns with list */
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* Push content to bottom */
}

.nc-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card-large:hover .nc-bg { transform: scale(1.05); }

.nc-overlay {
    position: relative;
    z-index: 2;
    /* Gradient fade for text readability */
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
    width: 100%;
    padding: 30px;
    color: #fff;
}

.nc-badge {
    background-color: var(--tm-skincolor);
    color: #1a1a1a;
    font-family: var(--tm-body-font);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.nc-title {
    font-family: var(--tm-heading-font);
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 20px 0;
}

.nc-title a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.nc-title a:hover { color: var(--tm-skincolor); }

.nc-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: var(--tm-body-font);
    font-size: 0.9rem;
    color: #ddd;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
}

.nc-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #fff;
}

.author-avatar {
    background: #ff3366; /* Match the pinkish icon */
    color: #fff;
    width: 20px;
    height: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablet/mobile */
        gap: 40px;
    }
    /* Ensure the list column comes after cards if preferred, or keep default */
}