
       /*----Hero----*/
        /* Add this to your CSS file or a <style> block in the head */
        .text-outline {
            text-shadow: 1px 1px 1px #Cea972, -1px -1px 1px #29af70, 1px -1px 1px #Cea972, -1px 1px 1px #Cea972;
             /*Alternative for a cleaner, harder outline: */
             
        }
        
        .text-outline-1 {
            text-shadow: 0.5px 0.5px 0.5px #fff, -0.5px -0.5px 0.5px #fff, 0.5px -0.5px 0.5px #Cea972, -0.5px 0.5px 0.5px #fff;
             /*Alternative for a cleaner, harder outline: */
             
        }

       /*--About Intro--*/

        .about-image-gallery {
            position: relative;
            padding-bottom: 50px;
        }

        .about-image-gallery .main-img-1 {
            width: 80%;
            border-radius: 12px;
            box-shadow: 0 30px 50px 0 rgba(0,0,0,0.1);
        }

        .about-image-gallery .main-img-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 55%;
            border-radius: 12px;
            border: 3px solid #fff; /* White frame like the example */
            box-shadow: 0 30px 50px 0 rgba(0,0,0,0.1);
            z-index: 2;
        }

        .about-image-gallery .shape-1 {
            position: absolute;
            top: 20%;
            right: 15%;
            width: 80px;
            height: 80px;
            z-index: -1;
        }

        /* Tablet and Mobile adjustments */
        @media only screen and (max-width: 767px) {
            .hero-brush-img {
                height: auto !important;
                /* Optional: increase the bottom offset if a gap appears on small screens */
                margin-bottom: -1px; 
            }

            .hero-divider-bottom {
                /* Ensures the container doesn't cut off the auto-scaling image */
                bottom: -1px !important;
            }
        }

       /*---Quick Fact---*/
        .tilted-image-container {
            position: relative;
            padding: 20px;
            /* This creates the slight tilt seen in pictucturere.jpg */
            transform: rotate(3deg);
            transition: transform 0.5s ease;
        }

        .tilted-image-container:hover {
            transform: rotate(0deg);
        }

        .tilted-img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
        }

        /* The pixel/square decoration from the image corners */
        .pixel-pattern {
            position: absolute;
            width: 60px;
            height: 60px;
            background-image: radial-gradient(#cea972 20%, transparent 20%);
            background-size: 10px 10px;
            z-index: -1;
        }

        .top-right {
            top: -10px;
            right: -10px;
        }

        .bottom-left {
            bottom: -10px;
            left: -10px;
        }

        .snapshot-item {
            padding: 15px 0;
        }       

       /*---Adventure---*/


/* ==========================================================================
   Section 2: Experience Highlights (Glass Cards)
   ========================================================================== */
:root {
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.2);
    --primary-green: #29af70; /* Un-commented this for the hover logic */
}

.experience-card {
    position: relative;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Added: Zoom effect on background for that "Advanced" feel */
.experience-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: inherit;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.experience-card:hover::before {
    transform: scale(1.1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Floating Glass Panel */
.glass-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 15px; /* Increased slightly for text breathing room */
    border-radius: 9px;
    color: #ffffff;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 8px; /* Space between title row and description */
}

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

.card-title {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 1.7rem;
    font-weight: 600;
}

/* --- New Description Styling --- */
.card-description {
    font-size: 1.25rem;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    /* The Reveal Animation */
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover .card-description {
    max-height: 80px; /* Adjust based on text length */
    opacity: 1;
    margin-top: 5px;
}

/* Advanced Icon Styling */
.card-stats-icons {
    display: flex;
    gap: 8px;
}

.stat-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px; 
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Hover Effects */
.experience-card:hover .glass-overlay {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.experience-card:hover .stat-icon {
    background: var(--primary-green);
    border-color: var(--primary-green);
    animation: iconFloat 1s ease-in-out infinite alternate;
}

.stat-icon:nth-child(2) { animation-delay: 0.2s; }

@keyframes iconFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-6px); }
}

/* Badge Styling */
.card-badge {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 20px;
    background: #ffffff;
    color: #434343;
    padding: 5px 15px;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
 
       /*--Counter---*/
/* --- Section Global --- */
.festival-hero-section {
    position: relative;
    overflow: hidden;
}

/* --- World Map Background --- */
.world-map-bg {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 120%;
    height: 120%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/8/80/World_map_-_low_resolution.svg'); /* Using a generic map placeholder */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.05; /* Very subtle so text is readable */
    z-index: -1;
    pointer-events: none;
}

/* --- The Countdown Bar (formerly Search Bar) --- */
.countdown-bar-wrapper {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 50px; /* Pill shape */
    padding: 15px 15px 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    margin-bottom: 30px;
    max-width: 650px;
    border: 1px solid rgba(0,0,0,0.02);
}

.countdown-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-item .icon {
    color: #cea972;
    font-size: 20px;
}

.countdown-item .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
    font-weight: 600;
}

.countdown-item .timer-value {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    color: #29af70; /* Festival Green */
}

.countdown-bar-wrapper .divider {
    height: 30px;
    width: 1px;
    background: #eee;
    margin: 0 15px;
}

/* Button override for inside the bar */
.countdown-bar-wrapper .mbf-btn {
    padding: 12px 30px;
    font-size: 14px;
    border-radius: 30px;
    margin-left: 20px;
    background: #cea972; /* Orange/Gold from reference */
}

.countdown-bar-wrapper .mbf-btn:hover {
    background: #29af70;
}

/* --- Right Side: Image & L-Shape --- */
.festival-image-gallery {
    padding-left: 30px;
    position: relative;
}

.main-image-wrapper {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: visible; /* Allow shape to stick out */
}

.main-img {
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* The Orange L-Shape Decoration */
.shape-decoration {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60%;
    height: 60%;
    border-bottom: 15px solid #cea972; /* The orange/gold line */
    border-left: 15px solid #cea972;
    z-index: -1;
    border-radius: 0 0 0 30px; /* Curve the corner of the L */
}

/* Add the top blue line if needed (from reference) */
.shape-decoration::before {
    content: '';
    position: absolute;
    top: -100%; /* Move up */
    left: -15px; /* Align with left border */
    width: 15px;
    height: 100px;
    background: #29af70; /* Green accent */
}

/* Floating Plane Icon */
.floating-icon {
    position: absolute;
    top: -40px;
    right: 40px;
    font-size: 30px;
    color: #1a1a1a;
    animation: floatPlane 3s ease-in-out infinite alternate;
}

@keyframes floatPlane {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

/* --- Social Proof --- */
.user-proof-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatars {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.user-avatars li {
    margin-left: -15px;
}

.user-avatars li:first-child {
    margin-left: 0;
}

.user-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}


/* Mobile Optimizations */
@media (max-width: 767px) {
    .countdown-bar-wrapper {
        flex-direction: row !important; /* Force Horizontal */
        flex-wrap: wrap; /* Allow button to drop to next line if needed */
        justify-content: center; /* Center everything */
        padding: 20px 15px;
        gap: 10px; /* Rmbfce gap to fit screen */
        border-radius: 12px;
    }

    /* Adjust dividers for small screens */
    .countdown-bar-wrapper .divider {
        display: block;
        margin: 0 4px;
        height: 20px; /* Make dividers shorter */
    }

    /* Make the timer values slightly smaller to fit 4 items */
    .countdown-item .timer-value {
        font-size: 16px; 
    }
    
    .countdown-item .label {
        font-size: 10px;
    }
    
    .countdown-item .icon {
        display: none; /* Hide the clock icon on mobile to save space */
    }

    /* Button takes full width at the bottom for better clicking */
    .countdown-bar-wrapper .mbf-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        text-align: center;
        justify-content: center;
    }
}     
       
       /*---Tickets Packages----*/

/* --- Ticket Section General Layout --- */
.ticket-packages-section {
    padding: 100px 0;
    overflow: visible; /* Required for floating elements */
}

/* --- The Modern Ticket Card --- */
.ticket-card-modern {
    position: relative;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    margin-top: 50px; /* Space for the floating image */
    padding: 0 30px 35px 30px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-right: 6px solid #e5e5e5; /* Default border */
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Tier Specific Branding (Right Border) */
.ticket-card-modern.general-tier { border-right-color: #29af70; }
.ticket-card-modern.vip-tier { border-right-color: #cea972; }
.ticket-card-modern.vvvip-tier { border-right-color: #1a1a1a; }

/* --- Phase Progress Pill (Top Right) --- */
.phase-wrapper {
    position: absolute;
    top: -18px; 
    right: 25px;
    display: flex;
    gap: 4px;
    background: #ffffff;
    padding: 6px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.phase {
    font-size: 10px;
    font-weight: 800;
    color: #cbd5e0; /* Inactive color */
    width: 32px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

/* Active Phase Colors per Tier */
.general-tier .phase.active { background: #29af70; color: #fff; }
.vip-tier .phase.active { background: #cea972; color: #fff; }
.vvvip-tier .phase.active { background: #1a1a1a; color: #fff; }

/* Pulse Animation for Scarcity */
.phase.active {
    animation: phase-pulse 2s infinite;
}

@keyframes phase-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(0, 0, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0px rgba(0, 0, 0, 0); }
}

/* --- Floating Image (Top Left) --- */
.card-image {
    margin-top: -45px; 
    margin-bottom: 20px;
    width: 130px;
    height: 130px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.card-image img {
    width: 85%;
    height: 85%;
    object-fit: contain;
}

/* --- Price Badge (Floating Circle) --- */
.price-badge {
    position: absolute;
    top: 35px; 
    right: 25px;
    width: 85px;
    height: 85px;
    background: #29af70; /* Default Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(41, 175, 112, 0.3);
    z-index: 2;
    border: 4px solid #fff;
}

.price-badge.vip-color {
    background: #cea972;
    box-shadow: 0 10px 20px rgba(206, 169, 114, 0.3);
}

.price-badge.vvvip-color {
    background: #1a1a1a;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.price-badge .currency {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: -5px;
}

/* --- Card Content & Features --- */
.card-content {
    position: relative;
    z-index: 1;
}

.ticket-card-modern .title {
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.ticket-card-modern .subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
    font-weight: 500;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.ticket-features li {
    font-size: 15px;
    color: #434343;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}




/* Feature Icon Colors */
.general-tier .ticket-features li i { color: #29af70; }
.vip-tier .ticket-features li i { color: #cea972; }
.vvvip-tier .ticket-features li i { color: #1a1a1a; }
.vvvip-tier1 .ticket-features li i { color: #127f4b; }
.vvvip-tier2 .ticket-features li i { color: #0b6d3e; }
/* --- Action Buttons --- */
.action-row {
    display: flex;
    gap: 12px;
    margin-top: auto; /* Pushes buttons to bottom */
}

.btn-small {
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-transparent {
    background: #f4f4f4;
    color: #434343;
    border: 1px solid #eee;
}

.btn-transparent:hover {
    background: #1a1a1a;
    color: #fff;
}

.btn-vip { background: #cea972; color: #fff; }
.btn-vvvip { background: #1a1a1a; color: #fff; }

/* --- Hover Effects --- */
.ticket-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.ticket-card-modern:hover .card-image {
    transform: scale(1.08) rotate(-2deg);
}

.ticket-card-modern:hover .price-badge {
    transform: scale(1.1) rotate(5deg);
}

/* --- Responsive Adjustments --- */
@media only screen and (max-width: 991px) {
    .ticket-card-modern {
        margin-bottom: 60px;
    }
}  
 
       
       /*--Sponsors--*/
.sponsors-section {
    padding: 80px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.logo-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    /* Soft edges effect */
    mask-image: linear-gradient(to right, transparent, #434343 15%, #434343 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #434343 15%, #434343 85%, transparent);
}

.marquee-content {
    display: flex;
    gap: 80px; /* Space between logos */
    width: max-content;
}

.sponsor-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    height: 60px; /* Adjust based on your logo sizes */
    width: auto;
    filter: grayscale(0%); /* Modern look: gray by default */
    opacity: 0.6;
    transition: all 0.3s ease;
}

.sponsor-logo img:hover {
    filter: grayscale(0%); /* Color on hover */
    opacity: 1;
    transform: scale(1.1);
}

/* Animation */
@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.animate-marquee {
    animation: scroll 30s linear infinite; /* Adjust time for speed */
}

/* Pause on hover so users can click sponsors */
.logo-marquee:hover .animate-marquee {
    animation-play-state: paused;
}
       
       /*preloader*/


/* --- Main Container --- */
#mbfblink-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-color);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* --- Glassmorphism/Backdrop Effect --- */
#mbfblink-preloader::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    /* Subtle radial gradient for depth */
    background: radial-gradient(circle at center, rgba(82, 95, 225, 0.05) 0%, rgba(255,255,255,0) 70%);
}

/* --- The Animation Container --- */
.preloader-content {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

/* --- The Logo --- */
.logo-container {
    position: absolute;
    z-index: 2;
    width: 100px; /* Adjust based on your logo shape */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    animation: logoPulse 2s ease-in-out infinite;
}

.preloader-logo {
    max-width: 60%;
    height: auto;
    object-fit: contain;
}

/* --- The Spinning Ring --- */
.orbital-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: #cea972; /* Faded primary */
    z-index: 1;
    animation: spin 1.5s linear infinite;
}

.orbital-spinner::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    animation: spin 3s linear infinite reverse; /* Counter rotation */
}

/* --- Skip Button --- */
.preloader-close-btn-wraper {
    position: relative;
    z-index: 10;
}

.preloader-close-btn {
    background: white;
    border: 1px solid #eee;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.preloader-close-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 95, 225, 0.3);
}

/* --- Animations Keyframes --- */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* --- Hide State (Added via JS) --- */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}       
       


/* Container for the whole button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
}

/* The "Contact us" white label */
.whatsapp-label {
    background-color: white;
    color: #333;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 15px;
    font-family: Arial, sans-serif;
    margin-right: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* The little triangle on the label pointing to the icon */
.whatsapp-label::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid white;
}



/* The circular blue icon button */
.whatsapp-icon {
    width: 60px;
    height: 60px;
    background-color: #64cd47; /* Your primary theme color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Hover effect */
.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
    background-color: #67bc4f;
}

/* Hide label on very small screens if needed */
@media (max-width: 480px) {
    .whatsapp-label {
        display: none;
    }
}

       


/* Container styling to make the button look good */
.hamberger-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  outline: none;
}

/* Base style for the three lines */
.line360 {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #29af70;
  margin-block: 3px; /* Controls the vertical gap between lines */
  border-radius: 2px;
      
  
  /* Animation Settings */
  transform-origin: left;
  animation: menuBtn 800ms ease-in-out alternate infinite;
}

/* Keyframes for the scaling effect */
@keyframes menuBtn {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(0.5);
    opacity: 0.6;
  }
}

/* Staggered delays to create the wave effect */
.line360-1 {
  animation-delay: 0ms;
}

.line360-2 {
  animation-delay: 150ms;
}

.line360-3 {
  animation-delay: 300ms;
}

/* Optional: Pause animation on hover for better UX */
.hamberger-button:hover .line360 {
  animation-play-state: paused;
  background-color: #cea972; /* Changes color when hovering */
}

       /*About Fest*/
/* --- Modern About Section --- */
.about-festival-modern {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

/* --- Image Stack (Asymmetric Design) --- */
.editorial-image-stack {
    position: relative;
    display: grid;
    /*grid-template-columns: repeat(10, 1fr);*/
    align-items: center;
}

.image-main {
    grid-column: 1 / 9;
    position: relative;
    z-index: 2;
}

.image-main img {
    width: 100%;
    border-radius: 4px; /* Sharp, modern luxury look */
    filter: grayscale(10%) contrast(110%);
}

.image-sub {
    grid-column: 6 / 11;
    grid-row: 1;
    z-index: 3;
    margin-top: 150px; /* Offset downward */
    border: 8px solid #fff;
}

.image-sub img {
    width: 100%;
    border-radius: 2px;
}

/* Altitude Tag Overlay */
.altitude-tag {
    position: absolute;
    top: 40px;
    left: -20px;
    background: #1a1a1a;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    z-index: 4;
    transform: rotate(-90deg) translateX(-100%);
    transform-origin: left top;
}

.altitude-tag .label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.altitude-tag .value {
    font-size: 20px;
    font-weight: 800;
}

/* --- Content Styling --- */
.history-content-modern {
    padding-left: 40px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}



.section-label .text {
    font-size: 12px;
    /*font-weight: 700;*/
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #cea972;
}

.editorial-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive fluid type */
    /*font-weight: 900;*/
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 35px;
    letter-spacing: -2px;
}

.accent-text {
    color: #29af70;
    display: block;
}

.lead-text {
    /*font-size: 20px;*/
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.5;
}

.editorial-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* --- Stat Boxes --- */
.stats-row-modern {
    display: flex;
    gap: 50px;
    margin-top: 45px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.stat-box .num {
    font-size: 40px;
    font-weight: 900;
    color: #1a1a1a;
    display: inline-block;
}

.stat-box .unit {
    font-size: 14px;
    font-weight: 700;
    color: #29af70;
    margin-left: 2px;
}

.stat-box .desc {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-top: -5px;
}

/* --- Mobile Fixes --- */
@media (max-width: 991px) {
    .editorial-image-stack {
        margin-bottom: 80px;
    }
    .history-content-modern {
        padding-left: 0;
    }
    .image-sub {
        margin-top: 80px;
    }
    .editorial-title {
        font-size: 3.5rem;
    }
}

/*Visions*/
  
/* --- Global Styles for these Sections --- */
:root {
    --brand-green: #29af70;
    --dark: #434343;
}

/* --- Vision & Mission Stacked Layout --- */
.section-vision-mission-full {
    background: #fff;
    width: 100%;
}

/* Cinematic Top Header */
.vision-hero-bg {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('maletsunyane1.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.massive-title-stacked {
    font-size: clamp(4rem, 10vw, 8rem);
    /*font-weight: 900;*/
    line-height: 0.85;
    letter-spacing: -5px;
    text-transform: uppercase;
    color: #f6f6f6;
}

.outline-text {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
}

/* Vertical Branding */
.vision-label-vertical {
    position: absolute;
    right: 40px;
    bottom: 40px;
    writing-mode: vertical-rl;
    font-weight: 900;
    letter-spacing: 5px;
    opacity: 0.6;
}

/* Detail Blocks */
.mission-vision-details {
    padding: 100px 8vw;
    background: #fff;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.block-title {
    /*font-size: 14px;*/
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #29af70; /* Brand Green */
    margin-bottom: 25px;
    /*font-weight: 800;*/
    display: flex;
    align-items: center;
    gap: 15px;
}

.block-title::after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background: #eee;
}

.modern-p {
   
    line-height: 1.6;
    font-weight: 500;
}

/* Impact Footer */
.impact-footer-plain {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-big {
    font-size: 3.5rem;
    font-weight: 400;
    color: #434343;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.impact-stat p {
    text-transform: uppercase;
    /*font-size: 12px;*/
    letter-spacing: 2px;
    color: #888;
    /*font-weight: 700;*/
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .content-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .impact-footer-plain {
        flex-direction: column;
        gap: 40px;
    }
    
    .vision-hero-bg {
        height: 50vh;
    }
}
/* --- 03. Awards Ticker --- */
.section-awards-ticker {
    background: var(--brand-green);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-move {
    display: inline-block;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 40px;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .vision-image-side { flex: 1 1 100%; min-height: 400px; }
    .vision-text-side { flex: 1 1 100%; padding: 60px 30px; }
    .why-item { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
}       
  
     /*announcements*/
/* --- Section Basics --- */
.section-announcements-editorial {
    padding: 100px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

/* --- Header & Subscribe --- */
.subtitle-modern {
    /*font-size: 14px;*/
    /*font-weight: 700;*/
    color: #29af70; /* Brand Green */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}





.form-control-clean {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 20px;
    width: 100%;
    /*font-size: 15px;*/
    transition: 0.3s;
}

.form-control-clean:focus {
    border-color: #29af70;
    box-shadow: 0 0 0 4px rgba(41, 175, 112, 0.1);
    outline: none;
}

.form-note {
    /*font-size: 13px;*/
    color: #999;
    margin-top: 10px;
    margin-bottom: 0;
}

/* --- Main Feature Card (Left) --- */
.blog-card-feature {
    height: 100%;
    transition: 0.4s ease;
}

.blog-card-feature .thumbnail {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    aspect-ratio: 16/9;
}

.blog-card-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.8, 1);
}

.blog-card-feature:hover img {
    transform: scale(1.05);
}

.badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,0.95);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    /*font-weight: 700;*/
    color: #434343;
    backdrop-filter: blur(5px);
}

.blog-card-feature .title {
    /*font-size: 2rem;*/
    /*font-weight: 800;*/
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-feature .title a {
    color: #434343;
    text-decoration: none;
    background-image: linear-gradient(#1a1a1a, #1a1a1a);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: left bottom;
    transition: background-size 0.3s;
}

.blog-card-feature:hover .title a {
    background-size: 100% 2px;
}

/* --- Sidebar Cards (Right) --- */
.sidebar-feed {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-card-side {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.side-thumbnail {
    flex-shrink: 0;
    width: 140px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.side-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.blog-card-side:hover .side-thumbnail img {
    transform: scale(1.1);
}

.blog-card-side .title {
    /*font-size: 1.1rem;*/
    /*font-weight: 700;*/
    line-height: 1.4;
    margin-bottom: 8px;
}

.excerpt-small {
    /*font-size: 0.9rem;*/
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Shared Meta & Tags --- */
.meta-top {
    /*font-size: 13px;*/
    /*font-weight: 600;*/
    color: #29af70;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-pill {
    /*font-size: 12px;*/
    /*font-weight: 600;*/
    color: #555;
    background: #f1f1f1;
    padding: 4px 12px;
    border-radius: 20px;
    transition: 0.2s;
    text-decoration: none;
}

.tag-pill:hover {
    background: #434343;
    color: #fff;
}

/* --- Mobile --- */
@media (max-width: 991px) {
    .subscribe-form-inline { flex-direction: column; }
    .subscribe-modern-wrapper { margin-top: 30px; }
    .blog-card-side { flex-direction: column; }
    .side-thumbnail { width: 100%; height: 200px; }
}  


     /*tips sections*/

/* --- Travel Section Base --- */
.travel-section {
    background-color: #ffffff;
    padding: 50px 0;
   
}

.travel-section .section-title {
    margin-bottom: 70px;
}


/* --- Content Wrappers --- */
.travel-section .content-wrapper {
    padding-right: 30px;
}

.travel-section .icon-box {
    font-size: 28px;
    margin-bottom: 20px;
}

.travel-section .icon-box.green { color: #29af70; }
.travel-section .icon-box.gold { color: #cea972; }

.travel-section h4 {
    /*font-weight: 700;*/
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* --- Lists and Links --- */
.travel-section .travel-list {
    list-style: none;
    padding: 0;
    color: #555;
    line-height: 2.2;
    font-size: 16px;
}

.travel-section .travel-list li span {
    color: #29af70;
    margin-right: 12px;
}

.travel-section .text-link {
    color: #1a1a1a;
    /*font-weight: 700;*/
    text-decoration: none;
    border-bottom: 2px solid #cea972;
    padding-bottom: 4px;
    transition: 0.3s ease;
}

.travel-section .text-link:hover {
    color: #cea972;
}

/* --- Timeline Steps --- */
.travel-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 10px;
}

.travel-section .step-number {
    font-size: 40px;
    font-weight: 800;
    color: #f0f0f0;
    display: block;
    line-height: 1;
}

.travel-section .step-text {
    margin-top: -15px;
    color: #434343;
    /*font-weight: 600;*/
    font-size: 16px;
}

/* --- Callout Box --- */
.travel-section .pro-tip-callout {
    margin-top: 60px;
    text-align: center;
    padding: 25px;
    background-color: #cea972;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
}

/*----Contact Us---*/

 

        .contact-section {
            padding: 80px 20px;
            max-width: 1280px;
            margin: 0 auto;
        }


        /* --- Map Area (The Visual Centerpiece) --- */
        .map-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            margin-bottom: 60px;
            /* In production, replace this URL with a real 'dotted world map' image */
            background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/World_map_blank_without_borders.svg/2000px-World_map_blank_without_borders.svg.png'); 
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.6; /* Making the map subtle like the design */
        }

        /* The Semonkong Pin */
        .map-pin-container {
            position: absolute;
            /* Approximate location for Lesotho on a standard Mercator projection */
            top: 70%; 
            left: 53%; 
            transform: translate(-50%, -100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            z-index: 10;
        }

        .pin-dot {
            width: 14px;
            height: 14px;
            background-color: #29af70;
            border: 2px solid #fff;
            border-radius: 50%;
            box-shadow: 0 0 0 4px rgba(21, 112, 239, 0.3); /* The "glow" effect */
            animation: pulse 2s infinite;
        }

        /* The Black Tooltip (Like the image) */
        .pin-tooltip {
            position: absolute;
            bottom: 25px; /* Sits above the dot */
            background-color: #0c111d;
            color: #fff;
            padding: 12px 16px;
            border-radius: 8px;
            width: 200px;
            text-align: left;
            box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.1);
            font-size: 13px;
            /* Start visible to match the user request */
            opacity: 1; 
            transform: translateY(0);
            transition: all 0.3s ease;
        }
        
        /* The little arrow on the tooltip */
        .pin-tooltip::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 6px 6px 0;
            border-style: solid;
            border-color: #0c111d transparent transparent transparent;
        }

        .tooltip-title {
            display: block;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .tooltip-sub {
            color: #98a2b3; /* Light gray text */
            font-size: 12px;
        }

        /* --- Cards Grid --- */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        /* Card Styling */
        .contact-card {
            background: #F9FAFB; /* Very light gray bg */
            padding: 24px;
            border-radius: 16px;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-card:hover {
            background: #F2F4F7;
        }

        .card-icon {
            width: 48px;
            height: 48px;
            background: #d1e9ff; /* Light blue circle */
            color: #cea972;
            border-radius: 50%; /* Circle shape */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 24px;
        }

        .card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #101828;
        }

        .card-desc {
            font-size: 14px;
            color: #475467;
            margin-bottom: 24px;
            line-height: 1.5;
            flex-grow: 1; /* Pushes button to bottom */
        }

        /* Button Styling */
        .card-btn {
            display: inline-block;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 16px;
            border-radius: 8px;
            transition: 0.2s;
            width: 100%;
            text-align: center;
        }

        /* Primary Button (Blue) */
        .btn-primary {
            background-color: #29af70;
            color: #ffffff;
            border: 1px solid #29af70;
        }
        .btn-primary:hover {
            background-color: #29af70;
        }

        /* Secondary Button (White/Outline) */
        .btn-secondary {
            background-color: #ffffff;
            color: #344054;
            border: 1px solid #D0D5DD;
            box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
        }
        .btn-secondary:hover {
            background-color: #F9FAFB;
            border-color: #b2b8c2;
        }

        /* Animation */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 #29af70; }
            70% { box-shadow: 0 0 0 10px rgba(21, 112, 239, 0); }
            100% { box-shadow: 0 0 0 0 rgba(21, 112, 239, 0); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .contact-grid { grid-template-columns: repeat(2, 1fr); }
            .map-wrapper { height: 300px; }
        }
        @media (max-width: 600px) {
            .contact-grid { grid-template-columns: 1fr; }
            .section-title { font-size: 28px; }
            .map-pin-container { top: 65%; left: 50%; } /* Adjust pin for mobile map crop */
        }
  
        /*Accommodation*/

/* --- Accommodation Card Specifics --- */
.accommodation-card {
    position: relative;
    height: 410px; /* Taller for the inquiry footer */
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Zoom Logic */
.accommodation-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: inherit;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.accommodation-card:hover::before { transform: scale(1.1); }

/* Price Tag (Top Right) */
.price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(5px);
    color: #cea972; /* Gold */
    padding: 8px 15px;
    border-radius: 12px;

    z-index: 2;
    border: 1px solid var(--glass-border);
}
.price-tag span { font-size: 0.9rem; color: #fff; opacity: 0.7; }

/* Glass Overlay Styling */
.glass-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px) saturate(100%);
    -webkit-backdrop-filter: blur(10px) saturate(100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* Provider Footer (Matches your Lapeng Screenshot) */
.provider-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-logo {
    height: 45px;

}

.inquiry-btn {
    background: #cea972; /* Dark Navy from your Screenshot */
    color: white;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none;
   
    /*font-weight: 600;*/
    transition: 0.3s;
}

/*
.inquiry-btn:hover {
    background: #cea972;
    transform: translateY(-2px);
}
*/

/* Reveal Animation */
.accommodation-card .card-description {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.4s ease;
}

.accommodation-card:hover .card-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}


