/* --- Global Styles & Variables --- */
:root {
    --primary-color: #a4231c;
    /* Gold/Brown */
    --dark-text: #1f5380;
    --light-gray: #f8f9fa;
    --border-color: #e6e6e6;
    --text-light: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.4);
    --header-height: 70px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Font/Body is generally needed, but kept minimal */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

h1 ,h2, h3, h4, h5, h6
{
    font-family: Exo 2, Sans-serif" ;
}
/* ==================================== */
/* 1. HEADER STYLING */
/* ==================================== */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--text-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--dark-text);
}

/* --- Desktop Nav --- */
.desktop-nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.auth-btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.desktop-auth-btn {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.desktop-auth-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* --- Mobile Toggle Button Styling --- */
.menu-toggle {
    display: none;
    /* Hide on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-text);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}


/* --- Mobile Menu Wrapper for Slide-in Effect --- */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);

    /* Initial state: Hidden off-screen to the right */
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    /* Slide Animation */

    visibility: hidden;
}

.mobile-menu-wrapper.is-open {
    transform: translateX(0);
    /* Final state: Slide into view */
    visibility: visible;
}

/* --- Actual Mobile Nav Content Container --- */
.mobile-nav {
    width: 80%;
    /* Menu width on mobile */
    max-width: 350px;
    height: 100%;
    background-color: var(--text-light);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-left: auto;
    overflow-y: auto;
}

/* --- Mobile Nav Header (Logo and Close Button) --- */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    margin-bottom: 20px;
}

.menu-close-btn {
    font-size: 2em;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-text);
}

/* --- Mobile Nav Links --- */
.mobile-nav-links {
    list-style: none;
    padding: 0;
}

.nav-item {
    border-bottom: 1px solid var(--border-color);
}

.nav-link-mobile {
    display: block;
    text-decoration: none;
    color: var(--dark-text);
    padding: 15px 5%;
    font-size: 1.1em;
    font-weight: 500;
}

.nav-link-mobile.active {
    color: var(--primary-color);
}

.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.has-submenu .nav-link-mobile {
    flex-grow: 1;
}

.submenu-arrow {
    padding: 15px 5%;
    color: var(--dark-text);
    font-size: 1.2em;
}

/* --- Mobile Contact Info & Socials --- */
.mobile-contact-info {
    padding: 20px 5% 40px;
}

.toll-free-label,
.support-label,
.social-label {
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 20px;
    margin-bottom: 5px;
}

.toll-free-number {
    display: block;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--dark-text);
    text-decoration: none;
}

.support-email {
    display: block;
    color: var(--dark-text);
    text-decoration: none;
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.social-text {
    margin-right: 15px;
    color: var(--dark-text);
    font-weight: 500;
}

.social-icon {
    font-size: 1.5em;
    color: var(--dark-text);
    margin-right: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary-color);
}


/* ==================================== */
/* 2. SLIDER STYLING */
/* ==================================== */
.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
    overflow: hidden;
}

.slide-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
}

/* --- Slide Content (Centering and Offset) --- */
.slide-content {
    position: relative;
    z-index: 5;
    color: var(--text-light);
    padding: 0 20px;
    max-width: 900px;
    /* Centered, slightly offset down */
    transform: translateY(10%);
}

.slide-title {
    font-size: 4.5vw;
    margin-bottom: 20px;
    font-weight: 700;
    /* Text Shadow */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.slide-text {
    font-size: 1.5vw;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.5;
    /* Text Shadow */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.book-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.book-btn:hover {
    background-color: #8c6a2e;
}

/* --- Text Animation (Keyframes) --- */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-animated .slide-title,
.text-animated .slide-text,
.text-animated .book-btn {
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.text-animated .slide-text {
    animation-delay: 0.2s;
}

.text-animated .book-btn {
    animation-delay: 0.4s;
}

/* Maintain offset during animation */
.text-animated {
    transform: translateY(10%);
}

/* --- Navigation Arrows --- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;

}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-arrow {
    left: 3%;
}

.next-arrow {
    right: 3%;
}


/* ==================================== */
/* 3. CARDS STYLING */
/* ==================================== */
.recommended-section {
    padding: 50px 5%;
    background-color: var(--light-gray);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.section-header p {
    font-size: 1.1em;
    color: #6c757d;
}

.view-all-btn {
    background-color: #ffffff;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-all-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}





/* ==================================== */
/* RESPONSIVENESS (Media Queries) */
/* ==================================== */


/* --- Mobile (768px se kam) --- */
@media (max-width: 768px) {

    /* Header/Nav */
    .desktop-nav,
    .desktop-auth-btn {
        display: none;
        /* Hide desktop elements */
    }

    .menu-toggle {
        display: block;
        /* Show hamburger button */
    }

    /* Slider */
    .slider-section {
        height: 80vh;
        margin-top: var(--header-height);
    }

    .slide-content {
        transform: translateY(5%);
        /* Mobile par kam offset */
    }

    .text-animated {
        transform: translateY(5%);
    }

    .slide-title {
        font-size: 8vw;
    }

    .slide-text {
        font-size: 4vw;
        margin-bottom: 20px;
    }

}

/* ==================================== */
/* 3. CARDS STYLING (NEW ATTRACTIVE DESIGN) */
/* ==================================== */

/* --- Card Base --- */
.activity-card {
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    /* Deep shadow on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-8px);
    /* Deeper lift on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* --- Card Image Slider Area --- */
.card-slider-area {
    position: relative;
    width: 100%;
    /* Aspect ratio for the image area */
    padding-top: 65%;
    overflow: hidden;
    cursor: grab;
}

.slider-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    /* Slider transition */
}

.slider-image-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.2s ease;
}

/* --- Floating Badge --- */
.floating-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: linear-gradient(90deg, #6fe520, #20a551);
    /* Gradient Look */
    color: var(--text-light);
    padding: 7px 18px;
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* --- Navigation Arrows --- */
.slider-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    font-size: 1.1em;
    opacity: 0;
    /* Hidden by default */
    transition: all 0.3s;
}

.card-slider-area:hover .slider-nav-arrow {
    opacity: 1;
    /* Show on hover */
}

.prev-slide-btn {
    left: 10px;
}

.next-slide-btn {
    right: 10px;
}

.slider-nav-arrow:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* --- Pagination Dots --- */
.pagination-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.dot.active {
    background-color: var(--text-light);
    transform: scale(1.2);
}

/* --- Card Content --- */
.card-content {
    padding: 15px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cards-container {
    display: grid;
    /* Desktop: 4 columns - YEH CODE ZARURI HAI */
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 30px;
}

@media (max-width: 768px) {
    /* ... (Existing mobile styles for header/slider) ... */

    /* Cards: 1 column - YEH CODE ZARURI HAI */
    .cards-container {
        grid-template-columns: 1fr;
    }
}

.card-title {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviews-rating {
    font-size: 0.95em;
    color: #6c757d;
}

.reviews-rating .stars {
    color: #20a551;
    margin-right: 5px;
}

.whatsapp-icon-large {
    color: #25d366;
    font-size: 1.8em;
    /* Bigger WhatsApp icon */
    transition: transform 0.2s;
}

.whatsapp-icon-large:hover {
    transform: scale(1.1);
}

/* --- Card Footer --- */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.price-large {
    font-size: 1.6em;
    /* Larger Price */
    font-weight: 800;
    color: var(--dark-text);
}

.price-large .currency {
    font-size: 0.6em;
    font-weight: 400;
    margin-right: 5px;
    color: #6c757d;
}

/* --- Attractive Buy Button --- */
.attractive-buy-btn {
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attractive-buy-btn:hover {
    background: #8c6a2e;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(163, 127, 53, 0.4);
}


/* --- Mobile Responsiveness (New Card Adjustments) --- */
@media (max-width: 768px) {
    .card-title {
        font-size: 1.2em;
    }

    .price-large {
        font-size: 1.4em;
    }

    .attractive-buy-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}

.hd1 {
    text-align: center;
    padding: 30px;
    font-size: 40px;
    font-family: Inter;
}
.hd2 {
    text-align: center;
    font-size: 20px;
    font-family: Inter;
}

/* ==================================== */
/* 4. FOOTER STYLING (ATTRACTIVE DESIGN) */
/* ==================================== */
.main-footer-section {
    /* Background color matching the image, but slightly richer */
    background-color: #e91e63;
    color: #f0f0f0;
    /* Light text color for contrast */
    padding-top: 50px;
    position: relative;
}

.footer-container {
    display: grid;
    /* Desktop: 4 columns */
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 30px;
    padding: 0 5%;
    max-width: 1300px;
    /* Optional: Center content on very large screens */
    margin: 0 auto;
}

.footer-heading {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-light);
    /* Ensure heading stands out */
    /* Attractive underline effect */
    position: relative;
    padding-bottom: 5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: black;
    border-radius: 2px;
}

/* --- About Column Styles --- */
.about-us-col {
    font-size: 0.95em;
    line-height: 1.8;
}

.highlight-text {
    color: var(--primary-color);
    /* Highlight the business name in Gold */
    font-weight: bold;
}

.authorized-title {
    font-size: 0.85em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #cccccc;
}

.seller-logos {
    display: flex;
    gap: 10px;
}

.seller-logo {
    height: 30px;
    /* Uniform height for seller logos */
    opacity: 0.8;
    transition: opacity 0.3s;
}

.seller-logo:hover {
    opacity: 1;
}

/* --- Links/Categories Columns --- */
.footer-link-list {
    list-style: none;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link {
    text-decoration: none;
    color: #cccccc;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
    margin-left: 5px;
    /* Slight movement on hover */
}

/* --- Contact Column Styles --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    margin-right: 15px;
    font-size: 1.1em;
    padding-top: 3px;
    /* Align icon better with text */
}

.contact-text {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95em;
}

.phone-link {
    font-weight: 600;
}

/* --- Socials and Payment Titles --- */
.socials-title,
.payment-title {
    font-size: 0.95em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.socials-list {
    display: flex;
    gap: 15px;
}

.social-icon-footer {
    font-size: 1.4em;
    color: #cccccc;
    transition: color 0.3s, transform 0.2s;
}

.social-icon-footer:hover {
    color: var(--text-light);
    transform: translateY(-3px);
}

.payment-logos {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.payment-logo {
    height: 25px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

/* --- Copyright Bar --- */
.copyright-bar {
    text-align: center;
    padding: 20px 5%;
    margin-top: 40px;
    /* Slightly darker shade for the copyright background */
    background-color: #806b40;
    border-top: 1px solid #9c8454;
}

.copyright-text {
    font-size: 0.9em;
    color: #cccccc;
}

/* --- Scroll to Top Button --- */
.scroll-to-top-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Left bottom position */
    z-index: 900;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 1.2em;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, background-color 0.3s;
}


/* ==================================== */
/* FOOTER RESPONSIVENESS */
/* ==================================== */

/* Tablet Layout: 2 Columns (992px se kam) */
@media (max-width: 992px) {
    .footer-container {
        /* 2 Columns: About/Contact (full width) aur Links/Categories */
        grid-template-columns: 1fr 1fr;
    }

    /* Stack Contact and Categories below About and Links */
    .contact-col {
        grid-column: span 1;
        /* Keep it on its own column */
    }

    .about-us-col {
        grid-column: span 2;
        /* About takes full width */
        margin-bottom: 20px;
    }
}

/* Mobile Layout: 1 Column (768px se kam) */
@media (max-width: 768px) {
    .footer-container {
        /* Single column stacking all sections */
        grid-template-columns: 1fr;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    .about-us-col {
        grid-column: span 1;
        /* Reset to single column */
    }

    /* Footer headings look better when fully centered on mobile */
    .footer-heading {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
        /* Center the underline */
    }

    /* Center the logos/socials on mobile */
    .seller-logos,
    .socials-list,
    .payment-logos {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .contact-icon {
        display: none;
        /* Hide icons on mobile contact for cleaner look */
    }
}

/* ==================================== */
/* 5. EXCELLENCE & TESTIMONIALS STYLING (NEW ATTRACTIVE DESIGN) */
/* ==================================== */
.testimonials-section {
    /* Subtle light yellow/cream background for warmth */
    background: #fdfdf5;
    padding: 80px 5% 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* --- Award Presentation (Top Part) --- */
.awards-presentation-container {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.award-header-new {
    margin-bottom: 30px;
}

.award-trophy-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    /* Gradient gold background */
    background: linear-gradient(145deg, var(--primary-color), #daa520);
    box-shadow: 0 5px 15px rgba(163, 127, 53, 0.5);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    /* Subtle animation */
}

.trophy-icon {
    font-size: 2.5em;
    color: var(--text-light);
}

.section-title-new {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-subtitle-new {
    max-width: 650px;
    margin: 0 auto;
    color: #666;
    line-height: 1.6;
    font-size: 1.1em;
}

.section-subtitle-new .highlight-text {
    font-weight: 700;
    color: var(--primary-color);
}

/* --- Animated Rating Box (Lifted Effect) --- */
.rating-box-new {
    display: inline-block;
    background-color: var(--text-light);
    border: 1px solid #ffcc00;
    /* Gold border */
    border-radius: 12px;
    padding: 30px 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    /* Prominent shadow */
    transition: transform 0.3s;
}

.rating-box-new:hover {
    transform: translateY(-5px);
}

.rating-grade-new {
    font-size: 2.2em;
    font-weight: 900;
    color: #444;
    margin-bottom: 10px;
}

.rating-stars-animated {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.gold-star {
    color: #ffcc00;
    /* Gold/Yellow color */
    animation: starBounce 0.5s ease-out both;
}

.rating-count-new {
    color: #666;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 15px;
}

.tripadvisor-source {
    color: #00aa6c;
    /* TripAdvisor Green */
    font-size: 0.9em;
    font-style: italic;
    font-weight: 600;
}

/* --- Review Slider Section --- */
.reviews-slider-wrap {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px 50px;
}

.reviews-slider-track-new {
    display: flex;
    padding: 20px 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth slide */
    cursor: grab;
}

.reviews-slider-track-new.dragging {
    cursor: grabbing;
}

.review-card-new {
    flex-shrink: 0;
    width: calc(33.333% - 40px);
    margin: 0 20px;
}

@media (max-width: 768px) {
    .review-card-new {
        width: calc(100% - 40px);
    }
}

.review-card-inner {
    background-color: var(--text-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-color);
    /* Signature Gold line */
    height: 100%;
    transition: box-shadow 0.3s;
}

.review-card-new:hover .review-card-inner {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Deeper shadow on hover */
}

.review-header-new {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.avatar-bg {
    width: 45px;
    height: 45px;
    background-color: #00aa6c;
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.user-avatar-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.username-new {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1em;
}

.review-date-new {
    font-size: 0.85em;
    color: #888;
}

.review-tag {
    margin-left: auto;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.family-tag-new {
    background-color: #e0f0ff;
    color: #007bff;
}

.couples-tag-new {
    background-color: #ffe0e0;
    color: #ff5555;
}

.friends-tag-new {
    background-color: #e0fff0;
    color: #00a080;
}

.review-title-new {
    font-size: 1.3em;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.review-stars-small-new {
    font-size: 0.9em;
    margin-bottom: 15px;
}

.filled-green {
    color: #00aa6c;
    /* TripAdvisor Green */
}

.review-text-new {
    color: #555;
    font-size: 0.95em;
    line-height: 1.6;
}

/* --- Slider Navigation (Sleek new style) --- */
.review-arrow-new {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    opacity: 0.8;
}

.review-arrow-new:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.prev-review-new {
    left: 0;
}

.next-review-new {
    right: 0;
}

/* --- Pagination Dots --- */
.review-dots-container-new {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.review-dot-new {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.review-dot-new.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* --- Keyframe Animations --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 127, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(163, 127, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(163, 127, 53, 0);
    }
}

@keyframes starBounce {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.rating-stars-animated .gold-star:nth-child(1) {
    animation-delay: 0.1s;
}

.rating-stars-animated .gold-star:nth-child(2) {
    animation-delay: 0.2s;
}

.rating-stars-animated .gold-star:nth-child(3) {
    animation-delay: 0.3s;
}

.rating-stars-animated .gold-star:nth-child(4) {
    animation-delay: 0.4s;
}

.rating-stars-animated .gold-star:nth-child(5) {
    animation-delay: 0.5s;
}

/* --- Reviews Responsiveness --- */

/* Tablet: 2 cards per view */
@media (max-width: 992px) {
    .section-title-new {
        font-size: 2em;
    }

    .review-card-new {
        width: calc(50% - 40px);
        /* Show 2 cards */
    }
}

/* Mobile: 1 card per view */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0 40px;
    }

    .section-title-new {
        font-size: 1.8em;
    }

    .rating-box-new {
        padding: 20px 30px;
    }

    .review-card-new {
        width: calc(100% - 40px);
        /* Show 1 card */
    }

    .review-arrow-new {
        top: 45%;
        width: 35px;
        height: 35px;
    }

    .review-card-inner {
        padding: 20px;
    }
}

/* ==================================== */
/* 6. GOOGLE REVIEWS STYLING (INTERACTIVE DESIGN) */
/* ==================================== */
.google-reviews-section {
    background-color: var(--light-gray);
    /* Match the Reviews section background */
    padding: 60px 5% 40px;
}

.google-reviews-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Header Style --- */
.google-reviews-header-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.google-logo-box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.8em;
    font-weight: 700;
    color: var(--dark-text);
}

.google-icon {
    color: #4285F4;
    /* Google Blue */
    margin-right: 8px;
}

.reviews-label {
    font-size: 0.9em;
}

.score-details {
    display: flex;
    align-items: center;
}

.rating-score {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--dark-text);
    margin-right: 10px;
}

.star-group {
    font-size: 1.2em;
    margin-right: 10px;
}

.filled-gold {
    color: #fbbc05;
    /* Google Gold/Yellow */
}

.total-reviews {
    color: #666;
    font-size: 1em;
}

.review-us-btn {
    text-decoration: none;
    background-color: var(--text-light);
    color: #4285F4;
    border: 1px solid #4285F4;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.review-us-btn:hover {
    background-color: #4285F4;
    color: var(--text-light);
}

/* --- Reviews Slider --- */
.google-reviews-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    /* Space for arrows */
}

.google-slider-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
    padding: 20px 0;
}

.google-slider-track.dragging {
    cursor: grabbing;
}

/* --- Review Card Style (Interactive) --- */
.google-review-card {
    flex-shrink: 0;
    width: calc(33.333% - 40px);
    /* 3 cards per view */
    margin: 0 20px;
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: auto;
}

/* Interactive Lift Effect */
.google-review-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.user-meta-google {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.avatar-google {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--primary-color);
}

.details-google {
    display: flex;
    flex-direction: column;
}

.user-name-google {
    font-weight: 600;
    color: var(--dark-text);
}

.time-ago {
    font-size: 0.8em;
    color: #888;
}

.stars-google {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.review-snippet-google {
    font-size: 0.95em;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.read-more-google {
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
}

/* --- Slider Navigation --- */
.google-review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: var(--text-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.google-review-arrow:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.prev-google {
    left: 0;
}

.next-google {
    right: 0;
}

/* --- Pagination Dots --- */
.google-review-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.google-review-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.google-review-dot.active {
    background-color: #4285F4;
    /* Google Blue active dot */
    transform: scale(1.2);
}


/* --- GOOGLE REVIEWS RESPONSIVENESS --- */
@media (max-width: 992px) {
    .google-review-card {
        width: calc(50% - 40px);
        /* Tablet: 2 cards per view */
    }
}

@media (max-width: 768px) {
    .google-reviews-header-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rating-summary {
        align-items: center;
        margin-bottom: 20px;
    }

    .google-review-card {
        width: calc(100% - 40px);
        /* Mobile: 1 card per view */
    }

    .review-us-btn {
        width: 80%;
    }
}

/* ==================================== */
/* 7. BLOGS & ARTICLES STYLING (ATTRACTIVE & ANIMATED) */
/* ==================================== */

.blogs-section {
    background-color: var(--text-light);
    /* White background */
    padding: 40px 3%;
    /* Kam padding jaisa aapne kaha */
    text-align: center;
}

.blogs-header-new {
    max-width: 800px;
    margin: 0 auto 40px;
}

.blogs-main-title {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.blogs-subtitle {
    color: #666;
    font-size: 1.1em;
    line-height: 1.5;
}

/* --- Blogs Grid Container --- */
.blogs-container-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 40px;
}

/* --- Individual Blog Card (Link) --- */
.blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid var(--border-color);
}

/* Attractive 3D Tilt/Lift Effect on Hover */
.blog-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
    /* Zoom effect on image */
}

/* --- Image Box and Overlay --- */
.blog-image-box {
    position: relative;
    overflow: hidden;
    padding-top: 65%;
    /* Aspect ratio 4:3 */
}

.blog-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient for title readability */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 50%);
    transition: background 0.3s;
    z-index: 2;
}

.blog-title-on-image {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: var(--text-light);
    font-size: 1.5em;
    font-weight: 700;
    text-align: left;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    z-index: 3;
}

/* --- Content Details --- */
.blog-content-details {
    padding: 20px;
    text-align: left;
}

.blog-heading-details {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    min-height: 2.4em;
    /* Ensure consistent height for titles */
    overflow: hidden;
}

.blog-snippet {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 15px;
    /* Limit snippet to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-date {
    display: block;
    color: var(--primary-color);
    font-size: 0.9em;
    font-weight: 600;
}

/* --- View All Button --- */
.view-all-button-wrap {
    padding-bottom: 30px;
}

.view-all-blogs-btn {
    background-color: var(--dark-text);
    color: var(--text-light);
    border: none;
    padding: 12px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--dark-text);
}

.view-all-blogs-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* ==================================== */
/* BLOGS RESPONSIVENESS */
/* ==================================== */

/* Tablet (992px se kam) */
@media (max-width: 992px) {
    .blogs-container-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards per row on tablet */
        gap: 20px;
    }

    .blogs-main-title {
        font-size: 2em;
    }
}

/* Mobile (768px se kam) */
@media (max-width: 768px) {
    .blogs-section {
        padding: 30px 5%;
    }

    .blogs-container-grid {
        grid-template-columns: 1fr;
        /* 1 card per row on mobile */
        gap: 25px;
    }

    .blogs-main-title {
        font-size: 1.8em;
    }

    .blog-card {
        transform: none !important;
        /* Disable hover lift on touch devices */
    }

    .view-all-blogs-btn {
        width: 100%;
    }
}

/* ==================================== */
/* 8. DISCOUNTED CTA BANNER STYLING (GLOW & SHINE) */
/* ==================================== */

.discount-cta-section {
    padding: 60px 5%;
    /* Thori padding */
    background-color: var(--light-gray);
    /* Background match kray */
}

.cta-banner-container {
    max-width: 1400px;
    margin: 0 auto;
    /* Primary Pink/Red color jaisa sample mein tha */
    background-color: #e91e63;
    border-radius: 15px;
    padding: 30px 40px;
    position: relative;
    overflow: hidden;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- City Silhouette Background (for design) --- */
.city-silhouette-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with actual SVG or a high-res image of Dubai skyline in white/light pink */
    background-image: url('../img/banner_bg.png');
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
    /* Very subtle */
    z-index: 1;
    transform: scale(1.1);
}

/* --- Jhal Bojh (Shine) Effect --- */
.banner-shine-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    /* Start off-screen to the left */
    width: 50%;
    /* Width of the shine line */
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white */
    filter: blur(5px);
    transform: skewX(-20deg);
    /* Slanted look */
    z-index: 5;
    /* Jhal Bojh Animation */
    animation: shine-sweep 4s infinite 1s;
}

@keyframes shine-sweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
        /* Stop at the end to create a long delay before repeat */
    }
}

/* --- CTA Content --- */
.cta-content-wrap {
    position: relative;
    z-index: 10;
    max-width: 70%;
}

.discount-label {
    display: block;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffeb3b;
    /* Bright yellow for discount */
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.cta-main-title {
    font-size: 2.8em;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    /* Subtle text shadow for pop */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.price-highlight {
    color: #ffeb3b;
    /* Bright yellow highlight */
    font-size: 1.1em;
    /* Slightly larger */
    /* Price highlight animation */
    animation: glow 1.5s infinite alternate;
}

.cta-subtitle {
    font-size: 1.1em;
    font-weight: 300;
    opacity: 0.9;
    max-width: 90%;
}

/* --- Book Now Button --- */
.cta-book-btn {
    position: relative;
    z-index: 10;
    background-color: var(--text-light);
    color: #e91e63;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.cta-book-btn i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.cta-book-btn:hover {
    background-color: #ffeb3b;
    /* Discount color on hover */
    color: #e91e63;
    transform: translateY(-2px);
}

.cta-book-btn:hover i {
    transform: translateX(5px);
    /* Arrow slide effect */
}

/* --- Keyframe Animations --- */
@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 10px rgba(255, 235, 59, 0.8);
    }

    to {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 235, 59, 1);
    }
}

/* --- CTA Banner Responsiveness --- */
@media (max-width: 992px) {
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-content-wrap {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .cta-main-title {
        font-size: 2em;
    }

    .cta-subtitle {
        font-size: 1em;
    }

    .cta-book-btn {
        width: 80%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .cta-main-title {
        font-size: 1.8em;
    }

    .cta-book-btn {
        padding: 12px 20px;
        font-size: 1.1em;
    }
}


/* ==================================== */
/* 10. ABOUT US PAGE STYLING */
/* ==================================== */

.about-page-main {
    /* Ensure the main content starts below the fixed header */
    padding-top: var(--header-height);
    background-color: var(--text-light);
}

.text-center {
    text-align: center;
}

.section-heading-animated {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 20px;
}

.section-subtitle-small {
    color: #777;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* --- 1. HERO/INTRO SECTION --- */
.about-hero-section {
    position: relative;
    background: url('Assets/img/DubaiDesertSafaritours.jpg') center/cover no-repeat;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.4);
    /* Dark Overlay */
    font-family: Inter;
}

.page-title-animated {
    font-size: 3.5em;
    font-weight: 900;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    /* Title Animation */
    animation: fadeInSlideDown 1s ease-out forwards;
}

@keyframes fadeInSlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-subtitle {
    font-size: 1.3em;
    font-weight: 300;
    max-width: 700px;
}

.brand-badge-powered {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.powered-logo-hero {
    height: 30px;
    filter: brightness(0) invert(1);
    /* Ensure logo is white */
}


/* --- 2. CORE STORY SECTION --- */
.core-story-section {
    padding: 80px 5%;
    background-color: #fcfcfc;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-text-left {
    flex: 1;
}

.story-image-right {
    flex: 0 0 45%;
    max-width: 45%;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.story-paragraph {
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 900;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* --- 3. SERVICES & ASSETS (OUR FLEET) --- */
.services-assets-section {
    padding: 60px 5%;
    background-color: var(--light-gray);
    text-align: center;
}

.assets-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.asset-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: transform 0.3s, box-shadow 0.3s;
}

.asset-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.asset-icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    /* Icon Animation on hover */
    transition: transform 0.3s;
}

.asset-card:hover .asset-icon {
    transform: scale(1.1) rotate(5deg);
}

.asset-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.asset-description {
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
}


/* --- 4. WHY CHOOSE US (THE PRO DIFFERENCE) --- */
.why-choose-section {
    padding: 80px 5%;
    background-color: var(--text-light);
}

.choose-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.choose-image-left {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.choose-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.choose-image-left:hover .choose-img {
    transform: scale(1.05);
    /* Zoom effect on hover */
}

.choose-content-right {
    flex: 1;
}

.advantage-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.advantage-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--text-light);
    font-size: 1.5em;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
    /* Icon Animation */
    animation: iconPulse 2s infinite alternate;
}

@keyframes iconPulse {
    from {
        box-shadow: 0 0 0 0px rgba(var(--primary-color-rgb), 0.5);
    }

    to {
        box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0);
    }
}


.advantage-text h4 {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.advantage-text p {
    color: #555;
    line-height: 1.6;
}


/* --- 5. GROUP OF COMPANIES (NETWORK) --- */
.group-companies-section {
    padding: 60px 5% 80px;
    background-color: var(--light-gray);
    text-align: center;
}

.company-logos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.company-logo-item {
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.company-logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.company-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 10px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.company-logo-item:hover .company-logo {
    filter: grayscale(0%);
}

.anchor-logo {
    max-height: 80px;
    /* Bigger logo for the main company */
    filter: grayscale(0%);
    /* Always show color for the main brand */
}

.company-logo-item p {
    font-size: 0.9em;
    color: #777;
}


/* ==================================== */
/* ABOUT US PAGE RESPONSIVENESS */
/* ==================================== */
@media (max-width: 992px) {
    .page-title-animated {
        font-size: 2.5em;
    }

    .page-subtitle {
        font-size: 1.1em;
    }

    .section-heading-animated {
        font-size: 2em;
    }

    /* Story and Choose sections stack */
    .story-container,
    .choose-container {
        flex-direction: column;
        text-align: center;
    }

    .story-image-right,
    .choose-image-left {
        max-width: 90%;
        flex: 1;
        order: -1;
        /* Image appears first on mobile */
    }

    .stats-grid {
        justify-content: space-around;
    }

    .assets-grid {
        flex-wrap: wrap;
    }

    .asset-card {
        flex: 0 0 calc(50% - 15px);
        /* 2 cards per row on tablet */
    }

    .choose-content-right {
        text-align: left;
        /* Keep text readable */
    }

    .company-logos-grid {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        height: 300px;
    }

    .page-title-animated {
        font-size: 2em;
    }

    .page-subtitle {
        font-size: 1em;
    }

    .section-heading-animated {
        font-size: 1.8em;
    }

    .assets-grid {
        flex-direction: column;
    }

    .asset-card {
        flex: 1;
        width: 100%;
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-icon {
        margin: 0 auto 15px;
    }
}

/* ==================================== */
/* 10. TOUR CATEGORIES GRID (ANIMATED & OUTCLASS) */
/* ==================================== */

.tour-categories-section {
    background-color: var(--light-gray);
    /* Light gray background */
    padding: 60px 5%;
    text-align: center;
    overflow: hidden;
    /* For reveal animations */
}

.categories-header {
    max-width: 800px;
    margin: 0 auto 50px;
}

.categories-main-title {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.categories-subtitle {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* --- Categories Grid Container --- */
.categories-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 cards per row on desktop */
    gap: 25px;
    /* Spacing between cards */
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Category Card Style (Animated) --- */
.category-card {
    position: relative;
    height: 280px;
    /* Fixed height for consistent look */
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Content at bottom */
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Card Hover Animations */
.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    /* Lift and slightly scale */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-overlay {
    opacity: 0.8;
    /* Darker overlay on hover */
}

.category-card:hover .category-content .view-tours-btn {
    transform: translateY(0);
    /* Button slides up */
    opacity: 1;
}

.category-card:hover .category-content .category-icon {
    transform: translateY(-10px) scale(1.1);
    /* Icon slightly moves up and scales */
}


/* Overlay for Text Readability */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0.7;
    /* Initial overlay opacity */
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* Content inside Card */
.category-content {
    position: relative;
    z-index: 2;
    /* Above overlay */
    text-align: left;
}

.category-icon {
    font-size: 3.5em;
    /* Large icon */
    color: var(--primary-color);
    /* Gold icon color */
    margin-bottom: 15px;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    font-family: inter;
}

/* View Tours Button (Hidden by default, slides up on hover) */
.view-tours-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    /* Initially off-screen */
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Tour Categories Grid Responsiveness --- */
@media (max-width: 992px) {
    .categories-grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cards per row on tablet */
        gap: 20px;
    }

    .category-card {
        height: 250px;
        padding: 20px;
    }

    .category-icon {
        font-size: 3em;
    }

    .category-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 40px 3%;
    }

    .categories-main-title {
        font-size: 2em;
    }

    .categories-grid-container {
        grid-template-columns: 1fr;
        /* 1 card per row on mobile */
        gap: 15px;
    }

    .category-card {
        height: 220px;
        padding: 15px;
        transform: none !important;
        /* Disable hover lift on touch devices */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .category-card:hover .category-overlay {
        opacity: 0.7;
        /* Keep initial overlay on hover for touch devices */
    }

    .category-card:hover .category-content .view-tours-btn,
    .category-card:hover .category-content .category-icon {
        transform: none;
        /* Disable hover animations on touch */
        opacity: 1;
    }

    .category-icon {
        font-size: 2.8em;
    }

    .category-title {
        font-size: 1.5em;
    }

    .view-tours-btn {
        transform: translateY(0);
        /* Always visible on mobile */
        opacity: 1;
    }
}

/* ==================================== */
/* 11. TOURS PAGE STYLING (GRID LAYOUT & FILTERS) */
/* ==================================== */

.tours-page-main {
    padding-top: var(--header-height);
    background-color: #f7f7f7;
    min-height: 100vh;
}

.tours-page-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 30px 5%;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    /* Ensure sidebar is at the top */
}

/* --- Left Sidebar (Filters) --- */
.filter-sidebar {
    flex: 0 0 280px;
    /* Fixed width sidebar */
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    /* Keep filter visible while scrolling */
    top: calc(var(--header-height) + 20px);
}

.sidebar-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    display: block;
    font-size: 1em;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

/* Input Styles */
.filter-input-text,
.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.filter-input-text:focus,
.filter-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Price Range Slider */
.price-output {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.filter-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

.filter-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Checkbox List */
.checkbox-list label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95em;
    color: #555;
    cursor: pointer;
}

.checkbox-list input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--primary-color);
}

/* Apply/Clear Buttons */
.apply-filter-btn,
.clear-filter-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.apply-filter-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.apply-filter-btn:hover {
    background-color: #8c6a2e;
    transform: translateY(-2px);
}

.clear-filter-btn {
    background-color: #eee;
    color: var(--dark-text);
}

.clear-filter-btn:hover {
    background-color: #ddd;
}


/* --- Right Listing Area --- */
.tour-listing-area {
    flex: 1;
}

.tour-results-info {
    text-align: right;
    font-size: 1.1em;
    font-weight: 500;
    color: #555;
    margin-bottom: 20px;
}

.tours-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 tours per row on desktop */
    gap: 30px;
}

/* Style for the tours grid items (same as .activity-card.new-card-design) */
/* (Assuming you will copy the .activity-card.new-card-design styles into this grid) */

.no-results-message {
    text-align: center;
    padding: 50px;
    font-size: 1.5em;
    color: #888;
}

.no-results-message i {
    color: #e91e63;
    margin-right: 10px;
}

/* --- Pagination --- */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.page-btn {
    background-color: var(--text-light);
    color: var(--dark-text);
    border: 1px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 600;
}

.page-btn.active,
.page-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background-color: #eee;
    color: #999;
}


/* --- TOURS PAGE RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .tours-grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 tours per row on medium screen */
    }
}

@media (max-width: 992px) {
    .tours-page-container {
        flex-direction: column;
        /* Stack filter sidebar on top */
    }

    .filter-sidebar {
        flex: 1;
        width: 100%;
        position: static;
        /* Disable sticky sidebar on mobile */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tours-grid-container {
        grid-template-columns: 1fr;
        /* 1 tour per row on mobile */
    }

    .tour-results-info {
        text-align: left;
    }
}


/* --- Base Gallery Layout --- */
.gallery-page-main {
    padding-top: var(--header-height);
    background-color: var(--text-light);
    min-height: 100vh;
}

.gallery-header-section {
    background-color: #f5f5f5;
    padding: 60px 5%;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
}

.gallery-main-title {
    font-size: 3em;
    font-weight: 900;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 1.2em;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-section-heading {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--dark-text);
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.gallery-section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* --- Scroll Reveal Animation --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ==================================== */
/* 1. VIDEO GALLERY SECTION (YouTube Thumbnails) */
/* ==================================== */
.video-gallery-section {
    padding: 40px 5% 80px;
    background-color: var(--light-gray);
}

.video-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item-card {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--dark-text);
    position: relative;
    padding-bottom: 15px;
}

.video-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video-cover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    z-index: 1;
}

.video-item-card:hover .video-cover-img {
    transform: scale(1.05);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.8em;
    z-index: 2;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.6);
    animation: pulse-play 1.5s infinite;
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 127, 53, 0.6);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(163, 127, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(163, 127, 53, 0);
    }
}



.video-duration {
    font-size: 0.9em;
    color: #888;
    margin-top: 5px;
    padding: 0 15px;
}


/* ==================================== */
/* 2. IMAGE GALLERY SECTION (3x3 Grid) */
/* ==================================== */
.image-gallery-section {
    padding: 40px 5% 80px;
    background-color: var(--text-light);
}

.image-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
}

.gallery-item-link:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.gallery-image-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item-link:hover .gallery-image-thumb {
    transform: scale(1.08);
}

.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-color-rgb), 0.85);
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
    font-size: 1.2em;
    font-weight: 600;
}

.gallery-item-link:hover .image-hover-overlay {
    opacity: 1;
}

/* ==================================== */
/* 3 & 4. MODAL STYLING (Video & Image) */
/* ==================================== */
.video-player-modal,
.image-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-player-modal.is-open,
.image-lightbox-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.video-player-content,
.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 95%;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-player-modal.is-open .video-player-content,
.image-lightbox-modal.is-open .lightbox-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5em;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--primary-color);
}

/* Video Specifics */
.video-modal-title {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-light);
    text-align: center;
}

.video-iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background-color: #000;
    border-radius: 5px;
    overflow: hidden;
}

.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Image Lightbox Specifics */
.lightbox-main-media-wrap {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lightbox-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
}

.lightbox-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--text-light);
    font-size: 2.5em;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 5;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.lightbox-nav:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.prev-nav {
    left: 10px;
}

.next-nav {
    right: 10px;
}

.lightbox-thumbnails-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    max-width: 100%;
    padding: 10px 0;
    gap: 10px;
    flex-shrink: 0;
}

.lightbox-thumb {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border: 3px solid transparent;
    border-radius: 3px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.lightbox-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.05);
}

/* ==================================== */
/* 13. TOUR DETAIL PAGE HERO SECTION */
/* ==================================== */

.tour-detail-hero {
    position: relative;
    width: 100%;
    height: 75vh; /* Large viewport height */
    min-height: 550px;
    padding-top: var(--header-height);
    overflow: hidden;
}

/* --- Image Slider/Media Wrapper --- */
.hero-image-slider-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-media-view {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

/* --- Thumbnail Navigation (Right Side) --- */
.thumbnail-nav-box {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.thumb-item {
    width: 65px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-item:hover, .thumb-item.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.video-thumb .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-light);
    font-size: 1.5em;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}


/* --- Detail Overlay Content --- */
.hero-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    /* Gradient Overlay */
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end; /* Content at the bottom */
    padding: 0 5%;
}

.detail-container {
    color: var(--text-light);
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
}

/* Typography */
.tour-category-tag {
    background-color: white;
    color: var(--dark-text);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 10px;
}

.tour-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: Quicksand", serif;
}

.review-line {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.stars-rating {
    color: #ffcc00; /* Star yellow */
    margin-right: 15px;
}

.review-count {
    font-size: 1.1em;
}

/* Key Features Bar */
.key-features-bar {
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    font-size: 1em;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 1.2em;
    margin-right: 10px;
   color: #e91e63
}
.price-range-item {
    background-color: white;
    color: green;
}
.price-range-item .feature-icon {
    color: green;
}


/* --- DETAIL PAGE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .tour-main-title { font-size: 3em; }
    .key-features-bar { 
        width: 100%;
        flex-wrap: wrap; 
        background-color: rgba(0, 0, 0, 0.7);
    }
    .feature-item { 
        flex: 1 1 45%; 
        justify-content: center;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .feature-item:nth-child(even) { border-right: none; }
    .thumbnail-nav-box { right: 10px; }
}

@media (max-width: 768px) {
    .tour-detail-hero { height: 60vh; }
    .tour-main-title { font-size: 2.5em; }
    .detail-container { padding-bottom: 30px; }
    .key-features-bar { flex-direction: column; }
    .feature-item { 
        flex: 1 1 100%; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 10px 15px;
    }
    .thumbnail-nav-box { display: none; } /* Hide thumbnails on very small screens */
}

/* Show All Button */
.show-all-button-wrap {
    text-align: center;
    padding: 40px 0 20px;
}

.show-all-btn {
    background-color: var(--dark-text);
    color: var(--text-light);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.show-all-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
/* ==================================== */
/* 14. TOUR DETAIL PAGE SECTIONS STYLING */
/* ==================================== */

.detail-content-grid-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr; /* Left Panel (2/3) and Right Sidebar (1/3) */
    gap: 40px;
    padding: 40px 5%;
}

.detail-content-left-panel {
    min-width: 0; /* Allows content to shrink */
}

/* --- General Info Card Styling (Left Side) --- */
.info-card-section {
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.info-icon-custom {
    background-color: #e91e63; /* Orange Accent */
    color: var(--text-light);
    padding: 12px;
    border-radius: 8px;
    font-size: 1.2em;
    box-shadow: 0 4px 10px rgba(255, 140, 66, 0.4);
    /* Trendy Animation */
    animation: bounce-in-place 1.5s ease infinite alternate; 
}
@keyframes bounce-in-place {
    from { transform: translateY(0); }
    to { transform: translateY(-5px); }
}

.section-title-custom {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--dark-text);
}

.about-paragraph-detail, .additional-info-body p {
    line-height: 1.7;
    color: #444;
}

/* 2. What's Included List */
.included-list {
    list-style: none;
    padding-left: 0;
}
.included-list li {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23FF8C42"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding: 8px 0 8px 25px;
    line-height: 1.5;
    font-size: 1.05em;
}

/* 3. Tour Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.highlight-item {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-text);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
}
.highlight-item:hover {
    background-color: #ffe8d7; /* Lighter orange on hover */
}
.highlight-item i {
    color: #e91e63;
    margin-right: 10px;
}

/* 4. Additional Information */
.styled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.styled-list li {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}
.styled-list i {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-right: 15px;
    flex-shrink: 0;
}

/* 5. Important Information */
.info-warning {
    border-left: 5px solid #e91e63; /* Highlight important section */
}
.info-warning .info-card-header {
    border-bottom: none;
}
.important-list {
    list-style: none;
    padding-left: 0;
}
.important-list li {
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px dashed var(--border-color);
}
.important-list li:last-child {
    border-bottom: none;
}

/* 6. Customer Reviews */
.reviews-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}
.stars-large {
    color: #e91e63;
    font-size: 1.5em;
}
.leave-review-btn {
    background: none;
    color: #e91e63;
    border: 1px solid #e91e63;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.leave-review-btn:hover {
    background-color: #e91e63;
    color: var(--text-light);
}
.review-card-detail {
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    margin-bottom: 10px;
}
.review-meta {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.user-avatar-initial {
    background-color: #e91e63;
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    font-weight: 700;
    font-size: 1em;
}
.user-name-review {
    font-weight: 700;
    margin-right: 10px;
}
.review-date-detail {
    font-size: 0.9em;
    color: #888;
}
.review-rating-stars i {
    color: #e91e63;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.load-more-reviews-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.load-more-reviews-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

/* 7. FAQ's */
.faq-accordion {
    margin-top: 20px;
}
.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background-color: var(--light-gray);
    padding: 15px 20px;
    text-align: left;
    border: none;
    font-weight: 700;
    font-size: 1em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 200px; /* Adjust max height based on content */
}

/* --- RIGHT SIDEBAR (FORM) STYLING --- */
.detail-sidebar-right {
    position: relative;
    min-width: 300px;
}
.sticky-form-card {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background-color: var(--text-light);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.form-price-summary {
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}
.price-big-aed {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    color: #888;
}
.price-value-big {
    font-size: 2.8em;
    font-weight: 900;
    color: #e91e63;
    margin: 0 5px;
}
.per-person {
    color: #888;
}

/* Form Fields */
.form-group-field label, .form-group-flex label {
    font-weight: 700;
    color: #444;
    display: block;
    margin-bottom: 5px;
}
.form-group-field input, .form-group-field select, .form-group-flex input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    transition: border-color 0.3s;
    background-color: var(--light-gray);
    margin-bottom: 15px;
}
.form-group-flex {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form-group-flex .input-half {
    flex: 1;
}

/* Add-ons */
.addon-heading {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}
.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}
.addon-item label {
    flex: 1;
    margin-left: 10px;
    font-weight: 500;
    color: var(--dark-text);
}
.addon-item input[type="checkbox"] {
    accent-color: #e91e63;
    width: 20px;
    height: 20px;
}
.addon-price {
    font-weight: 700;
    color: #e91e63;
}

/* Totals */
.total-summary {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}
.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 500;
    color: #666;
}
.grand-total-line {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 1.4em;
    font-weight: 800;
    color: #e91e63;
}

.book-tour-final-btn {
    width: 100%;
    padding: 15px;
    background-color: #e91e63;
    color: var(--text-light);
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 800;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}
.book-tour-final-btn:hover {
    background-color: #e67d36;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/* --- DETAIL PAGE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .detail-content-grid-wrap {
        grid-template-columns: 1fr; /* Single column on tablet */
    }
    .detail-sidebar-right {
        order: -1; /* Move form to the top of the content */
    }
    .sticky-form-card {
        position: static; /* Disable sticky */
    }
}

@media (max-width: 768px) {
    .gallery-main-title { font-size: 2em; }
    .section-title-custom { font-size: 1.5em; }
    .info-card-section { padding: 20px; }
    .highlights-grid { grid-template-columns: 1fr; }
}
/* --- Tour Highlights Grid Styling (Matching the Boxes in Reference Image) --- */

.highlights-grid-dynamic {
    display: grid;
    /* Two Columns */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
}

.highlight-item-box {
    /* Main Box style */
    background-color: var(--text-light); /* White background */
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 15px;
    
    /* Layout: Icon and Text side-by-side */
    display: flex;
    align-items: center;
    
    /* Animation */
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.highlight-item-box:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.icon-circle {
    /* Orange Circle Background (Large Icon Box) */
    background: linear-gradient(135deg, #ff9933, #ff6600); /* Gradient Orange */
    color: var(--text-light);
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    font-size: 1.5em; /* Large icon size */
    margin-right: 15px;
    flex-shrink: 0;
}

.highlight-text-detail {
    font-size: 1em;
    font-weight: 600;
    color: var(--dark-text);
}

/* RESPONSIVENESS for Highlights */
@media (max-width: 768px) {
    .highlights-grid-dynamic {
        grid-template-columns: 1fr; /* Single column on mobile */
    }
}

/* Must check: Your Global Grid Layout */
.checkout-grid-wrap {
    display: grid;
    grid-template-columns: 2fr 1.2fr; /* Left Form (2/3) and Right Summary (1/3) */
    gap: 40px;
    align-items: flex-start; /* CRITICAL: To prevent left/right misalignment */
    /* ... (rest of the padding and max-width) ... */
}

/* Must check: Input Styling */
.checkout-form-panel input:not([type="checkbox"]), .checkout-form-panel textarea, .checkout-form-panel select {
    background-color: var(--light-gray); /* Input background to stand out */
    /* ... (other styles like padding, border) ... */
}

/* Must check: Total Amount Highlight */
.summary-details .total-line-big {
    color: var(--pink-accent) !important; /* Pink color for Grand Total */
    font-weight: 800;
}
