/* Premium Navbar CSS */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #2f2f2f;
    --light-color: #ffffff;
    --accent-color: #ffe66d;
    --transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.top-bar {
    background: var(--dark-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: #e66c25;
}

.top-bar-right .social-icons {
    display: flex;
    gap: 15px;
}

.top-bar-right .social-icons a {
    color: #ddd;
    font-size: 16px;
    transition: var(--transition);
}

.top-bar-right .social-icons a:hover {
    color: #e66c25;
    transform: translateY(-2px);
}

/* Main Navbar */
.premium-navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.premium-navbar.sticky {
    padding: 10px 0;
}

.premium-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img {
    max-height: 100px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    padding: 10px 0;
}

.nav-link:hover {
    color: #e66c25;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Dropdown Styles */
.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
    padding: 10px 0;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 15px;
}

.dropdown-item:hover {
    background: rgba(255, 107, 107, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .top-bar-left {
        gap: 10px;
        font-size: 12px;
    }
    
    .top-bar-right {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        flex-direction: column;
        padding: 80px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 18px;
        display: block;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item-dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .top-bar-left a span {
        display: none;
    }
    .top-bar-left a i {
        font-size: 16px;
    }
}



/* add */


        .top-bar { display: block !important; position: relative; z-index: 1001; }
        .premium-navbar { position: sticky; top: 44PX; }
        /* Floating Icons (Left Side) */
        .sticky-icons-left {
            position: fixed;
            bottom: 80px;
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 9999;
        }
        .sticky-icon {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff !important;
            font-size: 28px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none !important;
        }
        .whatsapp-sticky { background-color: #25d366; }
        .phone-sticky { background-color: #0d6efd; }
        .sticky-icon:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
            filter: brightness(1.1);
        }
        @media (max-width: 768px) {
            .sticky-icons-left {
                bottom: 120px; /* Higher on mobile to stay above the 3-button bar */
                left: 15px;
            }
            .sticky-icon {
                width: 48px;
                height: 48px;
                font-size: 24px;
            }
        }
        /* Package Buttons Styling */
        .price-tag-new {
            padding: 15px 10px;
            background: #f9f9f9;
            border-top: 1px solid #eee;
        }
        .price-btn-row {
            display: flex;
            gap: 8px;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .action-btn {
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 5px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none !important;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: #fff !important;
            min-width: 80px;
            text-align: center;
            white-space: nowrap;
        }
        .action-btn i {
            margin-right: 5px;
            font-size: 14px;
        }
        .call-btn { background: #f66050; }
        .whatsapp-btn { background: #25d366; }
        .enquiry-btn { background: #f66050; }

        .action-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            filter: brightness(1.1);
        }
        
        .whatsapp-btn:hover {
            background-color: #20b358;
        }

        /* Responsive Buttons */
        @media (max-width: 768px) {
            .price-btn-row {
                gap: 10px;
            }
            .action-btn {
                font-size: 14px;
                padding: 12px 10px;
            }
        }
        @media (max-width: 480px) {
            .price-btn-row {
                display: flex !important;
                flex-direction: row !important;
                gap: 4px;
                justify-content: space-between;
            }
            .action-btn {
                width: auto;
                flex: 1;
                font-size: 11px;
                padding: 10px 2px;
                min-width: 0; /* Allow shrinking */
            }
            .action-btn i {
                margin-right: 3px;
                font-size: 12px;
            }
            
            /* Sticky Mobile Bar Overrides */
            ._btn_bm {
                font-size: 11px !important;
                padding: 12px 2px !important;
                border: none !important;
                border-radius: 0 !important;
                height: 50px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 4px !important;
            }
            .section_mobile {
                height: 50px !important;
            }
        }
        .ftr-link a {
            color: inherit !important;
            text-decoration: none !important;
        }
        .ftr-link a:hover {
            color: var(--primary-color, #f66050) !important;
        }
        .pack {
            position: relative;
            overflow: hidden;
        }
        .offer-ribbon {
            position: absolute;
            top: 20px;
            left: -35px;
            background: #e60000;
            color: #fff;
            padding: 5px 40px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            transform: rotate(-45deg);
            z-index: 5;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            pointer-events: none;
            letter-spacing: 1px;
            border: 1px dashed rgba(255,255,255,0.4);
        }
        /* Why Choose Us Section */
        .why-choose-us {
            padding: 80px 0;
            background-color: #fff;
        }
      
        .h1-global {
            margin-bottom: 40px !important;
            font-size: 32px;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .h1-global { font-size: 26px; margin-bottom: 25px !important; }
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: #fdfdfd;
            border-radius: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f0f0f0;
            height: 100%;
        }
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(54, 140, 45, 0.08);
            border-color: #f6605033;
        }
        .feature-item i {
            color: #f66050;
            font-size: 22px;
            background: #e9f4e9;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            flex-shrink: 0;
        }
        .feature-item p {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
            color: #2d3436;
            line-height: 1.5;
        }
        @media (max-width: 768px) {
            .why-choose-us { padding: 40px 0; }
            .features-grid { grid-template-columns: 1fr; gap: 15px; }
        }

        /* About Us Section Styles */
        .about-yatra {
            padding: 100px 0;
            background-color: #fafaf9;
        }
        .about-image-wrap {
            position: relative;
            padding-right: 20px;
        }
        .about-image-wrap img {
            border-radius: 24px;
            box-shadow: 20px 20px 0px #f660501a;
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        .experience-badge {
            position: absolute;
            bottom: 30px;
            right: 0px;
            background: #f66050;
            color: #fff;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(246, 96, 80, 0.2);
            text-align: center;
        }
        .experience-badge .years { font-size: 32px; font-weight: 800; line-height: 1; display: block; }
        .experience-badge .txt { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
        
        @media (max-width: 480px) {
            .experience-badge { padding: 12px 18px; bottom: 20px; right: 10px; }
            .experience-badge .years { font-size: 24px; }
            .experience-badge .txt { font-size: 9px; }
        }
        
        .about-content-wrap {
            padding-left: 20px;
        }
        .about-tagline {
            color: #f66050;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 12px;
            display: block;
        }
        .about-desc {
            font-size: 17px;
            color: #636e72;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        .about-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        @media (max-width: 480px) {
            .about-stats { grid-template-columns: 1fr; }
            .stat-card { padding: 15px; text-align: center; }
        }
        .stat-card {
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }
        .stat-card:hover { transform: translateY(-3px); border-color: #f6605033; }
        .stat-card .num { font-size: 24px; font-weight: 800; color: #1a1a1a; display: block; margin-bottom: 2px; }
        .stat-card .label { font-size: 14px; color: #64748b; font-weight: 500; }

        @media (max-width: 991px) {
            .about-image-wrap { margin-bottom: 50px; padding-right: 0; }
            .about-content-wrap { padding-left: 0; }
            .about-yatra { padding: 60px 0; }
            h2.h1-global1 {
    margin-top: 129%;
}
        }

        /* Destination Info Section */
        .destination-info {
            padding: 80px 0;
            background-color: #ffffff;
        }
        .info-content {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }
        .info-content p {
            font-size: 17.5px;
            color: #4b5563;
            line-height: 1.9;
            margin-bottom: 25px;
            font-weight: 400;
        }
        .info-content .highlight {
            color: #f66050;
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .destination-info { padding: 50px 20px; }
            .info-content p { font-size: 16px; line-height: 1.7; }
        }



        /* 2 */
        /* Banner Overlay */
    #banner {
        position: relative;
    }
    #banner::before {
        content: "";
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 0;
    }
    #banner > .banner-warp {
        position: relative;
        z-index: 1;
    }

    /* Target Banner Text Matches Image */
    .banner-text .top-price-tag {
        display: inline-block;
        background: #f66050;
        color: white;
        border: 2px solid white;
        border-radius: 30px;
        padding: 5px 20px;
        font-weight: 700;
        font-size: 14px;
        margin-bottom: 5px;
        text-transform: uppercase;
    }
    .banner-text .top-price-tag span {
        font-size: 20px;
        font-weight: 800;
        margin-left: 5px;
    }
    .banner-text h1 {
        background: rgba(0, 0, 0, 0.65);
        display: inline-block;
        padding: 12px 20px;
        color: white;
        font-weight: 900;
        font-size: 40px;
        margin: 0;
        width: 100%;
        max-width: 500px;
    }
    @media (max-width: 768px) {
        .banner-text h1 { font-size: 28px; padding: 10px 15px; }
        .banner-text .top-price-tag { font-size: 12px; }
        .banner-text .lowest-price { font-size: 18px; }
    }
    .banner-text ul.destination {
        background: #f66050;
        display: inline-block;
        padding: 8px 20px;
        margin: 0;
        list-style: none;
        width: 100%;
        max-width: 500px;
    }
    .banner-text ul.destination li {
        display: inline-block;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 14px;
        margin-right: 15px;
        position: relative;
    }
    .banner-text ul.destination li:not(:last-child)::after {
        content: "|";
        position: absolute;
        right: -10px;
        color: white;
        font-weight: 300;
    }
    .banner-text .lowest-price {
        color: white;
        font-weight: 800;
        font-size: 24px;
        margin: 20px 0;
    }
    .banner-text .banner-features {
        list-style: none;
        padding: 0;
        margin: 0 0 20px 0;
    }
    .banner-text .banner-features li {
        color: white;
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.4);
        max-width: 450px;
    }
    .banner-text .banner-features li i {
        color: #ffc107;
        margin-right: 8px;
    }

    /* Packages Card Styling */
    .packages {
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 12px;
        transition: box-shadow 0.3s ease;
        background: #fff;
    }
    .packages:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }
    .packages .pack {
        border-radius: 12px 12px 0 0;
        overflow: hidden;
    }
    .packages .pack img {
        border-radius: 12px 12px 0 0;
    }

    /* Banner Form & Popup Form Enhancements to Match Image */
    .form-control {
        border-radius: 8px !important;
        border: 1px solid #ced4da !important;
        padding: 12px 15px !important;
        background: #ffffff !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
        height: auto !important;
        min-height: 45px !important;
        margin-bottom: 15px !important;
    }
    select.form-control {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 30px !important;
        background: #fff;
    }
    .form-control:focus {
        border: 1px solid #f66050 !important;
        box-shadow: 0 0 8px rgba(14, 107, 24, 0.2) !important;
    }
    
    /* Green Header like image */
    .get-free, .custom-modal-header {
        background: #f66050 !important;
        color: #fff;
        padding: 20px;
        text-align: center;
        border-radius: 0 !important;
        font-weight: 700;
        font-size: 1.5rem;
        position: relative;
        text-indent: 0;
        display: block !important;
    }
    .custom-modal-header h4 {
        margin: 0;
        font-weight: 700;
        font-size: 1.5rem;
        width: 100%;
        color: #fff;
        text-align: center;
    }
    .get-free::after, .custom-modal-header::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 15px 15px 0;
        border-style: solid;
        border-color: #f66050 transparent transparent transparent;
        z-index: 2;
    }
    
    /* form bodies */
    .free-quotes { box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-radius: 0; overflow: hidden; background: transparent !important; }
    .get-free-qoute, .custom-modal-body {
        background: rgba(230, 230, 230, 0.9) !important;
        padding: 30px 20px 20px 20px;
        position: relative;
    }
    .custom-modal-box {
        border-radius: 0 !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
        border: none !important;
        overflow: visible !important;
        background: transparent !important;
    }
    .custom-modal-box .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 32px;
        color: rgba(255,255,255,0.8);
        line-height: 1;
        transition: all 0.2s;
        z-index: 10;
        cursor: pointer;
    }
    .custom-modal-box .close-btn:hover {
        color: #fff;
        transform: scale(1.1);
    }

    /* Submit Button */
    .btn-enq, .submit-btn {
        background: #f66050 !important;
        color: #fff !important;
        border: none !important;
        border-radius: 6px !important;
        padding: 12px 20px !important;
        font-weight: 700 !important;
        font-size: 16px !important;
        box-shadow: none !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        margin-top: 10px;
    }
    .btn-enq:hover, .submit-btn:hover {
        background: #7bb237 !important;
        transform: translateY(-2px);
    }

    /* Reviews Heading Centering */
    .reviews-slider-section .section-header {
        text-align: center;
        margin-bottom: 40px;
    }
    .reviews-slider-section .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

    /* review */
       /* Load premium Google Fonts */
        @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&family=Playfair+Display:ital,wght@0,600;0,700;1,500;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

        /* Reviews Section Styles */
        .yatra-reviews-section {
            background: linear-gradient(180deg, #f8f7f2 0%, #efede7 100%) !important;
            padding: 100px 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            position: relative;
            overflow: visible;
            scroll-margin-top: 120px;
        }

        .reviews-header {
            max-width: 800px;
            margin: 0 auto 40px auto;
            text-align: center;
        }
        .reviews-subtitle {
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            color: #f66050;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 12px;
        }
        .reviews-title {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
            line-height: 1.25;
        }
        .reviews-desc {
            font-size: 17px;
            color: #64748b;
            line-height: 1.6;
        }

        /* Standardized Equal Gap Grid */
        .reviews-collage-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px; /* Equalized consistent gap */
            padding: 0 40px; 
        }

        /* Card Common Base */
        .collage-card {
            background: #ffffff;
            border: 1.5px solid #1a1a1a; /* Professional refined border */
            border-radius: 24px;
            position: relative;
            padding: 32px;
            transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            box-shadow: 0 4px 0px rgba(26, 26, 26, 0.05);
        }

        .collage-card:hover {
            transform: translateY(-8px);
            border-color: #f66050;
            box-shadow: 0 20px 40px rgba(246, 96, 80, 0.12);
        }

        /* Specific Card Stylings */
        /* Card 1: Victoria Linton Style */
        .card-style-1 {
            padding-left: 70px;
        }
        .card-avatar-left {
            position: absolute;
            left: -35px;
            top: 50%;
            transform: translateY(-50%);
            width: 75px;
            height: 75px;
            border-radius: 50%;
            border: 3px solid #ffffff;
            overflow: hidden;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        .collage-card:hover .card-avatar-left {
            border-color: #f66050;
            transform: translateY(-50%) scale(1.08);
        }
        .card-avatar-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .quote-icon-top-right {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 28px;
            color: #f1ebd9;
            pointer-events: none;
        }

        .reviewer-name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 5px 0;
        }
        .reviewer-stars {
            color: #ffb547;
            font-size: 13px;
            margin-bottom: 15px;
            display: flex;
            gap: 2px;
        }
        .reviewer-stars i {
            margin-right: 1px;
        }
        .review-text {
            font-size: 14.5px;
            line-height: 1.6;
            color: #334155;
            margin: 0;
        }

        /* Card 2: Fanny Dean (Highlight Center Card) */
        .card-style-2 {
            border-radius: 50px;
            padding: 100px 40px 50px 40px;
        }
        .card-avatar-top {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            border: 4px solid #ffffff;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
            transition: all 0.3s ease;
        }
        .collage-card:hover .card-avatar-top {
            border-color: #f66050;
            transform: translateX(-50%) translate3d(0, -5px, 0);
        }
        .card-avatar-top img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .highlight-title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: #1a1a1a;
            margin-bottom: 8px;
            text-transform: uppercase;
        }
        .card-style-2 .reviewer-stars {
            justify-content: center;
        }
        .signature-name {
            font-family: 'Caveat', cursive;
            font-size: 28px;
            color: #f66050;
            margin-top: 20px;
        }

        /* Card 3: Social/Header Bar Style */
        .card-style-3 {
            padding: 0;
            overflow: hidden;
        }
        .card-top-bar {
            background: #fcfbf8;
            border-bottom: 1.5px solid #1a1a1a;
            padding: 18px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .bar-title { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; }
        .bar-handle { font-size: 12px; color: #94a3b8; font-weight: 600; }
        .card-style-3 .card-content-wrap { padding: 30px; }
        .card-bottom-bar {
            margin-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px dashed #e2e8f0;
            padding-top: 20px;
        }
        .read-more-btn {
            font-size: 12px;
            font-weight: 800;
            color: #1a1a1a;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s;
        }
        .read-more-btn:hover { color: #f66050; }
        .social-actions { display: flex; gap: 15px; color: #94a3b8; font-size: 16px; }

        /* Card 4: Right Protruding Avatar */
        .card-style-4 {
            padding-right: 70px;
        }
        .card-avatar-right {
            position: absolute;
            right: -35px;
            top: 50%;
            transform: translateY(-50%);
            width: 75px;
            height: 75px;
            border-radius: 50%;
            border: 3px solid #ffffff;
            overflow: hidden;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        .collage-card:hover .card-avatar-right {
            border-color: #f66050;
            transform: translateY(-50%) scale(1.08);
        }
        .card-avatar-right img { width: 100%; height: 100%; object-fit: cover; }

        /* Card 5: Capsule Card */
        .card-style-5 {
            border-radius: 60px;
            padding: 25px 35px;
        }
        .thumbs-badge {
            position: absolute; top: -18px; right: 30px;
            width: 40px; height: 40px; border-radius: 50%;
            background: #ffffff; border: 1.5px solid #1a1a1a;
            display: flex; align-items: center; justify-content: center;
            color: #1a1a1a; font-size: 16px; box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
        }
        .collage-card:hover .thumbs-badge {
            background: #f66050; color: #fff; border-color: #f66050; transform: scale(1.2) rotate(15deg);
        }
        .capsule-wrap { display: flex; align-items: center; gap: 20px; }
        .capsule-avatar { width: 65px; height: 65px; border-radius: 50%; border: 1.5px solid #1a1a1a; overflow: hidden; flex-shrink: 0; }
        .capsule-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .capsule-details .reviewer-name { font-size: 15px; letter-spacing: 1px; font-weight: 800; }

        /* Card 6: Footer Strip Card */
        .card-style-6 { padding: 0; overflow: hidden; }
        .card-style-6 .card-content-wrap { padding: 35px; }
        .card-footer-strip {
            background: #fcfbf8;
            border-top: 1.5px solid #1a1a1a;
            padding: 20px 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .footer-avatar { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid #1a1a1a; overflow: hidden; }
        .footer-avatar img { width: 100%; height: 100%; object-fit: cover; }

        /* Card 7: Testimonial Speech Bubble */
        .card-style-7 {
            border-radius: 24px;
        }
        .bubble-body {
            display: flex;
            gap: 20px;
        }
        .bubble-avatar-left {
            width: 60px;
            height: 60px;
            border-radius: 12px; /* Rounded square avatar */
            border: 2px solid #1a1a1a;
            overflow: hidden;
            flex-shrink: 0;
            box-shadow: 4px 4px 0px #1a1a1a;
        }
        .bubble-avatar-left img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .bubble-tag {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1px;
            color: #64748b;
            margin-bottom: 5px;
        }
        .bubble-handle {
            font-size: 11.5px;
            color: #f66050;
            font-weight: 600;
            margin-top: 10px;
            display: inline-block;
        }
        /* Speech Bubble Tails - with animated border syncing */
        .bubble-tail-left, .bubble-tail-right, .bubble-tail-bottom-right {
            position: absolute; width: 0; height: 0; border-style: solid;
        }
        
        .bubble-tail-left {
            bottom: -18px; left: 45px;
            border-width: 18px 18px 0 0;
            border-color: #ffffff transparent transparent transparent;
        }
        .bubble-tail-left::after {
            content: ""; position: absolute; bottom: 2px; left: -3px; width: 0; height: 0;
            border-style: solid; border-width: 21px 21px 0 0;
            border-color: #1a1a1a transparent transparent transparent; z-index: -1;
            transition: border-color 0.5s;
        }
        .collage-card:hover .bubble-tail-left::after { border-color: #f66050 transparent transparent transparent; }

        .bubble-tail-right {
            bottom: -18px; right: 45px;
            border-width: 18px 0 0 18px;
            border-color: #ffffff transparent transparent transparent;
        }
        .bubble-tail-right::after {
            content: ""; position: absolute; bottom: 2px; right: -3px; width: 0; height: 0;
            border-style: solid; border-width: 21px 0 0 21px;
            border-color: #1a1a1a transparent transparent transparent; z-index: -1;
            transition: border-color 0.5s;
        }
        .collage-card:hover .bubble-tail-right::after { border-color: #f66050 transparent transparent transparent; }

        .bubble-tail-bottom-right {
            bottom: -18px; right: 55px;
            border-width: 18px 0 0 18px;
            border-color: #ffffff transparent transparent transparent;
        }
        .bubble-tail-bottom-right::after {
            content: ""; position: absolute; bottom: 2px; right: -3px; width: 0; height: 0;
            border-style: solid; border-width: 21px 0 0 21px;
            border-color: #1a1a1a transparent transparent transparent; z-index: -1;
            transition: border-color 0.5s;
        }
        .collage-card:hover .bubble-tail-bottom-right::after { border-color: #f66050 transparent transparent transparent; }

        /* Card 10: Dash Accent Card */
        .card-style-10 {
            background: #fcfbf8;
            border-radius: 30px;
            border: 2px dashed #d1c8b8;
            box-shadow: none;
            text-align: center;
            grid-column: span 3;
        }
        .card-style-10:hover { border-style: solid; background: #fff; border-color: #f66050; }
        .avatar-overlap { width: 52px; height: 52px; border: 2px solid #ffffff; margin-left: -18px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
        .avatar-overlap.overlap-more { background: #1a1a1a; color: #fff; font-size: 12px; margin-left: -18px; }

        /* Scroll Animations */
        .scroll-reveal { opacity: 0; transform: translateY(50px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
        .scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

        /* Responsive Layouts */
        @media (max-width: 1100px) {
            .reviews-collage-grid { grid-template-columns: repeat(2, 1fr); padding: 0 30px; gap: 40px; }
            .card-style-10 { grid-column: span 2; }
            .card-style-2 { grid-row: auto; margin-top: 0; }
        }
        @media (max-width: 768px) {
            .reviews-collage-grid { grid-template-columns: 1fr; padding: 0 20px; }
            .card-style-10 { grid-column: span 1; }
            .card-avatar-left, .card-avatar-right { position: relative; left: 0; right: 0; top: 0; transform: none; margin: 0 auto 20px auto; }
            .collage-card:hover .card-avatar-left, .collage-card:hover .card-avatar-right { transform: scale(1.05); }
            .card-style-1, .card-style-4 { padding: 32px; }
            .reviews-title { font-size: 36px; }
        }
        /* .. */
  
        .banner-container {
            max-width: 1200px;
            margin: 40px auto;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            /* Assuming font from main CSS */
        }

        .banner-section {
            background-image: url('images/himachal-banner1.jpg');
            /* Placeholder image */
            background-size: cover;
            background-position: center;
            height: 200px;
            display: flex;
            align-items: center;
            position: relative;
            width: 100%;
        }

        /* Dark overlay to make text pop */
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
        }

        .banner-text-content {
            display: flex;
            flex-direction: column;
        }

        .promo-ribbon {
            background: #e60000;
            color: #fff;
            padding: 5px 15px;
            font-size: 14px;
            font-weight: 500;
            display: inline-block;
            position: relative;
            margin-bottom: 5px;
            clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
            width: fit-content;
            /* Positioning to match image: top leftish */
            position: absolute;
            top: -50px;
            /* relative to centered content? No, let's place it absolutely in container */
            left: 0;
        }

        /* Revised ribbon strategy to match "Instant Booking" label */
        .ribbon-label {
            position: absolute;
            top: 20px;
            left: 0;
            background-color: #d32f2f;
            color: white;
            padding: 6px 30px 6px 15px;
            font-weight: 600;
            font-size: 14px;
            z-index: 3;
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        }

        .ribbon-label::after {
            content: "";
            position: absolute;
            right: -10px;
            top: 0;
            border-top: 17px solid #d32f2f;
            /* half height roughly */
            border-bottom: 17px solid #d32f2f;
            border-right: 10px solid transparent;
        }

        .banner-heading {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
            margin-top: 30px;
            /* Space for ribbon */
        }

        .enquiry-btn {
            background-color: #fff;
            color: #ffffff;
            padding: 10px 25px;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: transform 0.2s;
            white-space: nowrap;
        }

        .enquiry-btn:hover {
            transform: scale(1.05);
            text-decoration: none;
            color: #ffffff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-section {
                height: auto;
                padding: 40px 20px;
                text-align: center;
            }

            .banner-content {
                flex-direction: column;
                gap: 20px;
                padding: 0;
            }

            .ribbon-label {
                top: 10px;
            }

            .banner-heading {
                font-size: 24px;
                margin-top: 40px;
            }
        }

        /* Final Polish for Ultra-Small Devices */
        @media (max-width: 380px) {
            .top-bar-left { font-size: 10px; }
            .navbar-logo img { max-height: 50px; }
            .h1-global { font-size: 22px; }
            .about-tagline { font-size: 12px; }
            .about-desc { font-size: 15px; }
            .action-btn { font-size: 10px; padding: 8px 1px; }
        }



 



