/* Global Styles */
* {
    cursor: url('../images/custom-cursor.svg'), auto !important;
}

/* Custom Cursor for Clickable Elements */
a, button, input[type="submit"], input[type="button"], select, .btn, .clickable, .nav-link, .accordion-header, .gallery-item, [role="button"], i.fa-solid, i.fa-brands, .dest-card, .package-card, .social-links a, .nav-links a, .meta-item, .sidebar-widget a {
    cursor: url('../images/custom-pointer.svg'), pointer !important;
}

html, body {
    height: 100%;
}

:root {
    --primary-color: #0b1e3b;
    --accent-color: #2196f3;
    --secondary-color: #febb02;
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    
    /* Aliases for package pages */
    --primary: var(--primary-color);
    --accent: var(--accent-color);
    --secondary: var(--secondary-color);
    --text: var(--text-color);
    --success: #2e7d32;
}

/* Listing Page Styles */
.page-header-section {
    background-image: url('../images/Destination_hero_main.jpeg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.page-header-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.page-header-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.destinations-grid-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.dest-card {
    background: white;
    border-radius: 0 !important;
    overflow: hidden;
    box-shadow: none !important;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    height: auto !important;
}

.dest-card::after {
    display: none !important;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.dest-img-box {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.dest-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .dest-img-box img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 0 !important;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0b1e3b;
    box-shadow: none !important;
    border: 1px solid #ddd;
}

.dest-content {
    padding: 25px;
    text-align: center;
}

.dest-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b1e3b;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.dest-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.btn-explore {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #0b1e3b;
    border: 2px solid #0b1e3b;
    border-radius: 0 !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
}

.dest-card:hover .btn-explore {
    background: #0b1e3b;
    color: white;
}

/* Coming Soon Styles */
.dest-card.coming-soon {
    cursor: default;
    pointer-events: none;
}

.dest-card.coming-soon .dest-img-box {
    filter: grayscale(0.5);
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(11, 30, 59, 0.85);
    color: white;
    padding: 8px 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
}

.dest-card.coming-soon .btn-explore {
    background: #f5f5f5;
    color: #999;
    border-color: #ddd;
}

/* Index Page Coming Soon Styles */
.package-card.coming-soon {
    pointer-events: none;
}

.package-card.coming-soon .package-img {
    filter: grayscale(0.5);
    position: relative;
}

.package-card.coming-soon .btn-primary.disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    color: #666 !important;
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .destinations-grid-container {
        padding: 0 10px;
    }

    .dest-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: start;
    }

    .dest-img-box {
        height: 120px;
    }

    .dest-overlay {
        top: 8px;
        right: 8px;
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .dest-content {
        padding: 12px 8px;
    }

    .dest-name {
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .dest-desc {
        font-size: 0.75rem;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .btn-explore {
        padding: 6px 12px;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden; /* Prevent horizontal scroll from Animations */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar & Navbar (Same as before) */
.top-bar { 
    background-color: var(--light-bg); 
    padding: 10px 0; 
    border-bottom: 1px solid #eee; 
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 43px;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.contact-info span { margin-right: 20px; color: #666; }
.social-links a { margin-left: 15px; color: #666; }
.social-links a:hover { color: var(--accent-color); }

.navbar { 
    padding: 15px 0; 
    background-color: var(--white); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
    position: fixed; 
    top: 43px; 
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}
body { padding-top: 123px; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo img { height: 50px; }
.nav-links { display: flex; gap: 25px; align-items: center; }
.nav-links a { font-weight: 600; color: var(--primary-color); text-transform: uppercase; letter-spacing: 0.5px; font-size: 14px; white-space: nowrap; }
.nav-links a:hover { color: var(--accent-color); }
.desktop-only { display: block; }
@media (max-width: 1024px) {
    .desktop-only { display: none; }
    .nav-links { gap: 15px; }
    .nav-links a { font-size: 13px; }
}
.mobile-menu-toggle { color: var(--primary-color); }
.mobile-login-btn { 
    display: none; 
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}
.mobile-login-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primary { background-color: var(--primary-color); color: var(--white); padding: 10px 20px; border-radius: var(--border-radius); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-secondary { border: 2px solid var(--primary-color); color: var(--primary-color); padding: 8px 18px; border-radius: var(--border-radius); margin-left: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Back Button Style */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 25px;
    transition: 0.3s;
    cursor: pointer;
    background: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    width: fit-content;
}

.back-btn:hover {
    color: var(--accent-color);
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.back-btn i {
    font-size: 14px;
}

/* HERO SLIDER SECTION */
.hero-slider {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.heroSwiper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

/* SIMPLIFIED SEARCH BOX */
.simple-search-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 15px;
    border-radius: 50px; /* Pill shape */
    display: inline-flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.simple-input-group {
    display: flex;
    align-items: center;
    background: var(--light-bg);
    padding: 8px 15px;
    border-radius: 30px;
    flex: 1;
}

.simple-input-group i {
    color: var(--accent-color);
    margin-right: 10px;
}

.simple-input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 15px;
    width: 150px;
    color: #333;
}

.btn-simple-search {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    font-weight: 600;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-simple-search:hover {
    background-color: #1976d2;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
}


/* SECTIONS Styles */
.section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary-color); margin-bottom: 50px; }
.section-subtitle { text-align: center; max-width: 600px; margin: 0 auto 50px; color: #666; }

/* Destinations */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dest-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
}

.dest-card:hover { transform: translateY(-10px); }

.dest-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: transparent;
}

.dest-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1;
    color: white;
}

.dest-info h3 { font-size: 1.5rem; margin-bottom: 5px; }
.dest-info p { color: var(--secondary-color); font-weight: 600; }

/* Section Title */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

/* Selling Packages Slider */
.packageSwiper {
    padding-bottom: 50px !important;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-img {
    height: 200px;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-details {
    padding: 20px;
    text-align: center;
}

.package-details h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.package-details p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

/* Activity Slider */
.activitySwiper {
    padding-bottom: 50px !important;
}

/* Blog Slider */
.blogSwiper {
    padding-bottom: 50px !important;
}

.blog-card-compact {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex; flex-direction: column;
    height: 100%;
}

.blog-img {
    height: 180px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.blog-content p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Global Swiper Pagination */
.swiper-pagination-bullet-active {
    background: var(--accent-color) !important;
}

/* Featured Destinations Section */
.featured-destinations {
    background-color: var(--white);
    padding: 50px 0;
}

.featured-destinations-header {
    text-align: left;
    margin-bottom: 25px;
}

.featured-destinations-header .section-title {
    margin-bottom: 5px;
    font-size: 2rem;
    text-align: left;
}

.featured-tagline {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Featured Grid Layout - Compact and simple like reference */
.featured-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 0.8fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
    max-width: 100%;
    height: 450px;
}

/* Destination Cards */
.featured-dest-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.featured-dest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Dark overlay for text readability */
.featured-dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

/* Destination name styling */
.featured-dest-name {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
}

.featured-dest-name h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
    margin: 0;
}

/* Weekend tour (top left) */
.featured-dest-card.weekend-tour {
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

/* Kashmir (middle left) */
.featured-dest-card.kashmir {
    background-image: url('https://images.unsplash.com/photo-1562602833-0f4ab2fc46e3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

/* Uttarakhand (bottom left) */
.featured-dest-card.uttarakhand {
    background-image: url('https://images.unsplash.com/photo-1587595431973-160d0d94add1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    display: block;
}

/* Jaipur (center, spans all 3 rows - large and prominent) */
.featured-dest-card.jaipur {
    background-image: url('https://images.unsplash.com/photo-1599661046289-e31897846e41?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    grid-column: 2 / 3;
    grid-row: 1 / 4;
}

/* Ladakh (top right) */
.featured-dest-card.ladakh {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* Himachal Pradesh (middle-bottom right, spans 2 rows) */
.featured-dest-card.himachal {
    background-image: url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}


/* Swiper Packages */
.packages { background-color: var(--light-bg); overflow: hidden; }
.packageSwiper { padding-bottom: 50px !important; padding-top: 20px; }

.package-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%; /* For uniform height in slider */
}

.pkg-image { height: 220px; position: relative; }
.pkg-image img { width: 100%; height: 100%; object-fit: cover; }
.price-tag { position: absolute; top: 15px; right: 15px; background: var(--secondary-color); padding: 5px 12px; border-radius: 20px; font-weight: 700; font-size: 14px; }

.pkg-content { padding: 20px; }
.pkg-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--primary-color); }
.amenities { display: flex; gap: 10px; margin-bottom: 20px; font-size: 13px; color: #666; }
.btn-details { display: inline-block; width: 100%; text-align: center; border: 1px solid var(--primary-color); padding: 8px; border-radius: 6px; color: var(--primary-color); font-weight: 600; }
.btn-details:hover { background: var(--primary-color); color: white; }

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonialSwiper {
    padding: 20px 0 40px;
    position: relative;
}

.testimonialSwiper .swiper-slide {
    height: auto;
    padding: 10px;
}

.testi-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.rating-stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 16px;
}

.testi-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.user-info span {
    font-size: 13px;
    color: #999;
}

/* Footer */
.footer {
    background: #4a4a4a;
    color: #fff;
}

/* Newsletter Section */
.newsletter-section {
    background: #1e3a5f;
    padding: 25px 0;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-content p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    flex: 1;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    min-width: 300px;
    font-size: 14px;
}

.btn-subscribe {
    padding: 12px 30px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-subscribe i {
    margin-left: 8px;
}

.btn-subscribe:hover {
    background: #333;
}

/* Main Footer */
.footer-main {
    background: #4a4a4a;
    padding: 40px 0 30px;
}

/* Contact Row */
.footer-contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.link-label {
    color: #aaa;
    font-size: 13px;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-col ul li {
    margin-bottom: 10px;
}

.footer-links-col ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.payment-icons i {
    font-size: 28px;
    color: #fff;
}

/* WhatsApp Connect Button */
.whatsapp-connect {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.whatsapp-connect i {
    font-size: 18px;
}

.whatsapp-connect:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

/* Social Icons Row */
.footer-social-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-social-row a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.footer-social-row a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Copyright Bar */
.footer-copyright {
    background: #2b2b2b;
    padding: 15px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

/* Footer Container - Wider Width */
.footer .container {
    max-width: 1400px;
}

/* Responsive Design - Mobile First Approach */

/* Base responsive utilities */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Navigation Toggle */
/* Mobile Navigation Toggle (Global Hamburger) */
.mobile-menu-toggle,
.menu-toggle-btn {
    display: none; /* Hidden on desktop by default */
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    margin-right: 0; /* Handled by wrapper gap */
}

/* Tablet Devices (769px - 1024px) */
@media (max-width: 1024px) {
    .mobile-menu-toggle,
    .menu-toggle-btn {
        display: block; /* Show on tablets and mobile */
    }
    .container {
        padding: 0 30px;
    }
    
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Mobile / Small Tablet (481px - 768px) */
@media (max-width: 768px) {
    /* Typography */
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 30px;
        color: var(--white);
        text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .section-subtitle {
        margin-bottom: 20px;
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .section {
        padding: 40px 0;
    }

    .featured-destinations-header {
        margin-bottom: 15px;
    }

    .packageSwiper,
    .activitySwiper,
    .blogSwiper,
    .testimonialSwiper {
        padding-bottom: 30px !important;
    }
    
    /* Hide top bar completely on mobile */
    .top-bar {
        display: none;
    }
    
    /* Show mobile login button */
    .mobile-login-btn {
        display: block;
    }
    
    /* Hide desktop nav actions */
    .nav-actions {
        display: none;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    /* Main Navigation */
    .navbar {
        padding: 12px 0;
        top: 0;
        height: 74px;
    }
    body { padding-top: 74px; }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .nav-links a {
        font-size: 16px;
        padding: 12px 20px;
        display: block;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    /* Search Box - Professional Mobile Design */
    .simple-search-box {
        flex-direction: row;
        background: var(--white);
        border-radius: 50px;
        padding: 8px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        max-width: 95%;
        margin: 0 auto;
    }
    
    .simple-input-group {
        flex: 1;
        background: transparent;
        padding: 12px 20px;
        border-radius: 50px;
    }
    
    .simple-input-group input {
        width: 100%;
        font-size: 15px;
        color: #333;
        font-weight: 400;
    }
    
    .simple-input-group input::placeholder {
        color: #999;
        font-weight: 400;
    }
    
    .simple-input-group i {
        color: var(--accent-color);
        font-size: 18px;
    }
    
    .btn-simple-search {
        width: 50px;
        height: 50px;
        padding: 0;
        background-color: var(--accent-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .btn-simple-search i {
        font-size: 18px;
        color: var(--white);
    }
    
    /* Package & Destination Cards */
    .package-grid,
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Featured Destinations - Mobile Layout (2-column grid like reference) */
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 10px;
        height: auto;
    }
    
    .featured-dest-card {
        min-height: 160px !important;
        border-radius: 10px;
    }
    
    /* Weekend tour - top left */
    .featured-dest-card.weekend-tour {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 2 !important;
    }
    
    /* Kashmir - top right */
    .featured-dest-card.kashmir {
        grid-column: 2 / 3 !important;
        grid-row: 1 / 2 !important;
    }
    
    /* Uttarakhand - full width on row 2 */
    .featured-dest-card.uttarakhand {
        grid-column: 1 / 3 !important;
        grid-row: 2 / 3 !important;
        display: block !important;
    }
    
    /* Jaipur - bottom left */
    .featured-dest-card.jaipur {
        grid-column: 1 / 2 !important;
        grid-row: 3 / 4 !important;
    }
    
    /* Ladakh - bottom right */
    .featured-dest-card.ladakh {
        grid-column: 2 / 3 !important;
        grid-row: 3 / 4 !important;
    }
    
    /* Himachal - full width at bottom */
    .featured-dest-card.himachal {
        grid-column: 1 / 3 !important;
        grid-row: 4 / 5 !important;
    }
    
    .featured-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
    
    .featured-dest-name h3 {
        font-size: 1.1rem;
        bottom: 12px;
        left: 12px;
    }
    
    .featured-destinations-header .section-title {
        font-size: 1.4rem;
    }
    
    .featured-destinations {
        padding: 30px 0;
    }
    
    .package-card,
    .destination-card {
        margin-bottom: 0;
    }
    
    /* Buttons */
    .btn-book,
    .btn-details {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
    }
    
    /* Newsletter */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .newsletter-content p {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .newsletter-form input {
        min-width: 100%;
        width: 100%;
        padding: 14px 20px;
    }
    
    .btn-subscribe {
        width: 100%;
        padding: 14px;
    }
    
    /* Footer */
    .footer-contact-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .whatsapp-connect {
        width: 100%;
        justify-content: center;
    }
}

/* Package Detail Page Styles */
.pkg-header {
    background: url('../images/chardham-hero.png') center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}
.pkg-title {
    font-size: 3rem;
    margin-bottom: 10px;
}
.pkg-meta {
    font-size: 1.2rem;
    opacity: 0.9;
}
.pkg-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}
.pkg-main h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}
.itinerary-item {
    margin-bottom: 30px;
    border-left: 2px solid var(--accent-color);
    padding-left: 20px;
}
.itinerary-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}
/* Package Sidebar */
.pkg-sidebar {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

/* Page Header and Layout (Used in many package files) */
.page-header {
    padding: 30px 0 20px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: var(--light-bg);
    border-radius: 20px;
    font-weight: 500;
}

.meta-item i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.main-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 0 80px;
}

.content-column {
    min-width: 0;
}

.hero-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.content-section {
    margin-bottom: 45px;
}

.section-heading {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.section-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.overview-text {
    line-height: 1.8;
    color: #555;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
    background: white;
    transition: all 0.3s ease;
}

.tabs-nav.sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 999;
    margin: 0;
    padding: 0 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 2px solid var(--accent-color);
}

.tab-btn {
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: var(--accent-color);
}

.tab-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Itinerary Styles */
.itinerary-list {
    position: relative;
    padding-left: 40px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
    border-radius: 2px;
}

.car-icon {
    position: absolute;
    left: -5px;
    font-size: 1.4rem;
    color: var(--accent-color);
    transition: top 0.3s ease;
    z-index: 10;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s;
}

.accordion-header {
    padding: 16px;
    background: var(--light-bg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: all 0.3s;
}

.accordion-header:hover {
    background: #f0f0f0;
}

.accordion-item.active .accordion-header {
    background: var(--accent-color);
    color: white;
}

.day-title {
    font-weight: 600;
    display: flex;
    gap: 12px;
    align-items: center;
}

.day-number {
    display: inline-block;
    padding: 4px 10px;
    background: var(--secondary-color);
    color: #000;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 50px;
    text-align: center;
}

.toggle-icon {
    transition: transform 0.3s;
    font-size: 0.9rem;
    color: #999;
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height 0.4s ease;
    padding: 0 16px;
}

.accordion-content.open {
    padding: 16px;
}

/* Inclusions & Exclusions */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    line-height: 1.6;
}

.info-list.inclusions li i {
    color: #2e7d32;
}

.info-list.exclusions li i {
    color: #d32f2f;
}

/* Enquiry Widget */
.enquiry-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.widget-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #fcfcfc;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

/* Tour Includes Widget */
.tour-includes {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.includes-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.include-item {
    text-align: center;
}

.include-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 8px;
    display: block;
}

.include-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
}

/* Inclusions List Widget */
.inclusions-widget {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.inclusions-widget h4 {
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.inclusions-widget ul {
    list-style: none;
    padding: 0;
}

.inclusions-widget li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #555;
}

.inclusions-widget li i {
    color: #2e7d32;
    margin-top: 3px;
    font-size: 1rem;
}

/* Testimonial Widget */
.testimonial-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    position: relative;
}

.widget-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.rating-stars {
    color: #ffa000;
    font-size: 0.85rem;
}

.quote-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 6px;
}

.nav-btn {
    width: 26px;
    height: 26px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

/* Mobile Testimonial Section (hidden by default) */
.mobile-testimonial-section {
    display: none;
    margin-bottom: 30px;
}

/* PDF Actions */
.pdf-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.pdf-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.pdf-action-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Distance Table Styles */
.distance-table-container {
    overflow-x: auto;
    margin: 15px 0;
    border-radius: var(--border-radius);
    border: 1px solid #eee;
}

.distance-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.distance-table th, 
.distance-table td {
    padding: 14px 18px;
    border: 1px solid #eee;
    text-align: left;
    font-size: 0.95rem;
}

.distance-table thead tr {
    background: #f8f9fa;
}

.distance-table th {
    font-weight: 600;
    color: var(--primary);
}

.distance-table strong {
    color: var(--accent);
}

.distance-table tbody tr:hover {
    background-color: #fcfcfc;
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
    }
    .hero-image {
        height: 280px;
    }
    .section-heading {
        font-size: 1.3rem;
    }
    .itinerary-list {
        padding-left: 30px;
    }
    .tabs-nav {
        gap: 5px;
    }
    .tab-btn {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    .includes-grid {
        gap: 15px;
    }
    .include-item i {
        font-size: 1.6rem;
    }
    .mobile-testimonial-section {
        display: block;
    }
    .mobile-testimonial-heading {
        font-size: 1.1rem;
    }
    .mobile-testimonial-widget {
        padding: 18px;
    }
    .sidebar .testimonial-widget {
        display: none;
    }
    .testimonial-widget {
        padding: 18px;
        margin-bottom: 20px;
    }
    .widget-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .testimonial-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .user-profile {
        padding-top: 10px;
    }
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .user-name {
        font-size: 0.85rem;
    }
    .rating-stars {
        font-size: 0.75rem;
    }
    .quote-nav {
        top: 15px;
        right: 15px;
    }
    .nav-btn {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
    .pdf-actions {
        gap: 8px;
    }
    .pdf-action-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .pdf-action-btn span {
        display: none;
    }
    .pdf-action-btn i {
        font-size: 1rem;
        margin: 0;
    }
    .tabs-nav.sticky {
        top: 60px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-meta {
        gap: 8px;
    }
    .meta-item {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    .accordion-header {
        padding: 15px 18px;
    }
    .day-title {
        font-size: 0.95rem;
    }
}
.enquiry-form input, .enquiry-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.enquiry-form button {
    width: 100%;
    background: var(--secondary-color);
    border: none;
    padding: 12px;
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
}
@media(max-width: 768px) {
    .pkg-container { grid-template-columns: 1fr; }
    .pkg-title { font-size: 2.2rem; }
}
    
    /* Popup Buttons */
    .message-toggle-btn,
    .enquiry-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
    }
    
    .message-toggle-btn {
        left: 20px;
    }
    
    .enquiry-toggle-btn {
        right: 20px;
    }
    
    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Typography - Extra Small */
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .section-subtitle {
        margin-bottom: 15px;
        font-size: 0.85rem;
    }

    .section {
        padding: 30px 0;
    }

    .packageSwiper,
    .activitySwiper,
    .blogSwiper,
    .testimonialSwiper {
        padding-bottom: 25px !important;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo {
        max-width: 100px;
    }
    
    .top-bar {
        font-size: 11px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    /* Hero - Improved for Small Screens */
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Search - Refined for Small Screens */
    .simple-search-box {
        padding: 6px;
        max-width: 90%;
    }
    
    .simple-input-group {
        padding: 10px 15px;
    }
    
    .simple-input-group input {
        font-size: 14px;
    }
    
    .btn-simple-search {
        width: 45px;
        height: 45px;
    }
    
    .btn-simple-search i {
        font-size: 16px;
    }
    
    /* Cards */
    .package-card,
    .destination-card {
        border-radius: 12px;
    }
    
    .package-info h3,
    .destination-card h3 {
        font-size: 1.1rem;
    }
    
    /* Footer */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .payment-icons i {
        font-size: 24px;
    }
    
    /* Popup Buttons - Smaller on tiny screens */
    .message-toggle-btn,
    .enquiry-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
    }
    
    .message-toggle-btn {
        left: 15px;
    }
    
    .enquiry-toggle-btn {
        right: 15px;
    }
    
    /* Package Details Page */
    .detail-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    /* Forms */
    .enquiry-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Ensure all interactive elements are touch-friendly */
    a, button, .btn {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .package-card:hover,
    .destination-card:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .package-card:active,
    .destination-card:active {
        transform: scale(0.98);
    }
}

/* Message Popup Styles */
.message-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: all 0.3s ease;
}


.message-toggle-btn:hover {
    transform: scale(1.15) translateY(-3px);
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Enquiry Popup Styles (Right Side) */
.enquiry-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: all 0.3s ease;
}

.enquiry-toggle-btn:hover {
    transform: scale(1.15) translateY(-3px);
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.enquiry-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.enquiry-popup-container.active {
    display: flex;
}

.enquiry-popup-content {
    background-color: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.enquiry-popup-body {
    padding: 40px 30px;
}

.enquiry-popup-body h2 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.enquiry-popup-body .form-group {
    margin-bottom: 15px;
}

.enquiry-popup-body input,
.enquiry-popup-body textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}

.enquiry-popup-body input:focus,
.enquiry-popup-body textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.message-popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.message-popup-container.active {
    display: flex;
}

.message-popup-content {
    background-color: var(--white);
    width: 90%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.message-popup-content .close-btn {
    color: #333; /* Fallback if on white */
}

.popup-grid {
    display: flex;
}


.popup-info-col {
    flex: 1;
    background-color: #f0f2f5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary-color);
}

.popup-info-col h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.steps-list {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-num {
    font-weight: 700;
    margin-right: 10px;
    font-size: 1.1rem;
}

.step-item p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.call-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

.call-action i {
    font-size: 24px;
    color: var(--primary-color);
}

.call-action h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.call-action p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
}

.popup-form-col {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-form-col h3 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.popup-form-col .form-group {
    margin-bottom: 20px;
}

.popup-form-col input,
.popup-form-col textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: 0.3s;
}

.popup-form-col input:focus,
.popup-form-col textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.popup-form-col label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}


@media (max-width: 768px) {
    .popup-grid {
        flex-direction: column;
        max-height: 90vh;
        overflow-y: auto;
    }
    .popup-info-col {
        padding: 30px 20px;
        order: 2;
    }
    .popup-form-col {
        padding: 30px 20px;
    }
}

/* Sidebar Navigation (Global) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px; /* Start off-screen */
    width: 300px;
    height: 100%;
    background: #0b1e3b; /* Dark theme background */
    z-index: 1010;
    transition: 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header img {
    height: 40px;
}

.close-sidebar-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-content h4 {
    font-size: 18px;
    color: white;
    text-transform: none;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-content ul {
    list-style: none;
}

.sidebar-content ul li {
    margin-bottom: 15px;
}

.sidebar-content ul li a {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-content ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.sidebar-divider {
    border: 0;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
}

/* Sidebar Social Icons */
.sidebar-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
}

.sidebar-social a {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1e3b;
    font-size: 18px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar-social a:hover {
    background: var(--secondary-color);
    color: #0b1e3b;
    transform: scale(1.1);
}

/* Visibility Control */
.mobile-nav-section {
    display: none; /* Hidden by default on Desktop */
}

/* Responsive Sidebar Logic */
@media (max-width: 768px) {
    .mobile-nav-section {
        display: block; /* Show main nav in sidebar on mobile */
    }
    
    /* Contact Grid Responsiveness */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-form-wrapper form div {
        grid-template-columns: 1fr !important;
    }
}

/* Footer Adjustments for Small Mobile */
@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .footer-contact-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .section-title {
        font-size: 1.5rem !important;
    }
}

/* Standardized FAB Styles */
.message-toggle-btn,
.enquiry-toggle-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.message-toggle-btn {
    left: 30px;
    background: #25D366; /* WhatsApp Green */
}

.enquiry-toggle-btn {
    right: 30px;
    background: var(--primary-color);
}

.message-toggle-btn:hover,
.enquiry-toggle-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .message-toggle-btn,
    .enquiry-toggle-btn {
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .message-toggle-btn {
        left: 20px;
    }
    
    .enquiry-toggle-btn {
        right: 20px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 110px; /* Moved slightly up for better breathing room */
    right: 30px;
    width: 48px;
    height: 48px;
    background: #0b1e3b;
    color: white;
    border-radius: 10px; /* Slightly more rounded like the reference */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: #0b1e3b;
    transform: translateY(-8px); /* More pronounced hover lift */
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px; /* Better position above mobile FABs */
        right: 25px;
        width: 45px;
        height: 45px;
    }
}



/* Mega Menu Styles */
.navbar .nav-links li {
    position: relative;
}

/* Hide mega menu by default */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 850px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 25px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1200;
}

/* Show on hover */
.navbar .nav-links li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Optional arrow on top of menu */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.mega-menu-item {
    position: relative;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mega-menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mega-menu-item:hover img {
    transform: scale(1.1);
}

.mega-menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.mega-menu-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    display: block;
}

.mega-menu-overlay .sub-text {
    font-size: 10px;
    color: #ddd;
    font-weight: 400;
    margin-top: 2px;
}

/* Mobile responsive fix for sidebar */
@media (max-width: 1024px) {
    .mega-menu {
        display: none; /* Hide hover menu on touch/small screens */
    }
}


/* ===== ACTIVITY PAGE STYLES ===== */

/* Activity Hero Section */
.activity-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.activity-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.activity-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.activity-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
}

.activity-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.activity-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Activity Search Container */
.activity-search-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.activity-search-box {
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    background: var(--light-bg);
    padding: 10px 15px;
    border-radius: 30px;
    gap: 10px;
}

.search-input-group i {
    color: var(--accent-color);
    font-size: 16px;
}

.search-input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #333;
}

.search-input-group input::placeholder {
    color: #999;
}

.btn-search-activity {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search-activity:hover {
    background-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

/* Simplified Search Box */
.activity-search-box-simple {
    background: var(--white);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.activity-search-box-simple .search-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    background: var(--light-bg);
    padding: 10px 15px;
    border-radius: 30px;
    gap: 10px;
}

.activity-search-box-simple .search-input-group i {
    color: var(--accent-color);
    font-size: 18px;
}

.activity-search-box-simple .search-input-group input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 100%;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.activity-search-box-simple .search-input-group input::placeholder {
    color: #999;
}

.btn-explore {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-explore:hover {
    background-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

/* Activity Section Layout */
.activity-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.activity-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Sidebar Filters */
.activity-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    height: fit-content;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-bg);
}

.filter-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-box {
    margin-bottom: 25px;
}

.filter-box h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    transition: 0.2s;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.filter-checkbox:hover {
    color: var(--accent-color);
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-inputs input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
}

.price-range-inputs span {
    color: #999;
}

.btn-reset-filters {
    width: 100%;
    padding: 10px;
    background: var(--light-bg);
    border: 1px solid #ddd;
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
}

.btn-reset-filters:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Main Activity Content */
.activity-main {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Sort Bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-bg);
}

.results-count {
    font-size: 14px;
    color: #666;
}

.results-count strong {
    color: var(--primary-color);
    font-weight: 700;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-options label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    color: var(--primary-color);
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Activity Card */
.activity-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.activity-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
}

.activity-info {
    padding: 20px;
}

.activity-info h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.activity-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #ffc107;
    font-size: 13px;
}

.rating-text {
    font-size: 12px;
    color: #999;
}

.activity-description {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.activity-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #777;
}

.activity-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-details i {
    color: var(--accent-color);
}

.btn-activity-details {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.btn-activity-details:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Simplified Activity Cards */
.activities-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.activity-card-simple {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: block;
    text-decoration: none;
    color: inherit;
}

.activity-card-simple:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.activity-card-simple:active {
    transform: translateY(-4px);
}

.activity-card-simple .activity-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    order: 2;
}

.activity-card-simple .activity-image img {
    width: 100%;
    height: 90%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card-simple:hover .activity-image img {
    transform: scale(1.05);
}

.activity-info-above {
    padding: 8px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    order: 1;
    border-bottom: 1px solid #f0f0f0;
}

.activity-card-simple {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    color: inherit;
}

.activity-title-above {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.activity-price-above {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.activity-overlay {
    display: none;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--light-bg);
}

.page-btn {
    padding: 10px 15px;
    border: 1px solid #ddd;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .activity-layout {
        grid-template-columns: 1fr;
    }

    .activity-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .filter-group,
    .filter-box {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .activities-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .activities-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .activity-hero-content h1 {
        font-size: 2rem;
    }

    .activity-hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .activity-search-box {
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }

    .search-input-group {
        width: 100%;
    }

    .btn-search-activity {
        width: 100%;
        justify-content: center;
    }

    .activity-section {
        padding: 40px 0;
    }

    .activity-main {
        padding: 20px;
    }

    .sort-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .sort-options {
        width: 100%;
    }

    .sort-options select {
        width: 100%;
    }

    .activity-sidebar {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .activities-grid-simple {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .activity-card-simple {
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .activity-card-simple .activity-image {
        height: 220px;
    }

    .activity-info-above {
        padding: 8px;
    }

    .activity-title-above {
        font-size: 1rem;
        line-height: 1.4;
    }

    .activity-price-above {
        font-size: 13px;
    }

    .activity-search-box-simple {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
        border-radius: 20px;
        max-width: 100%;
    }

    .activity-search-box-simple .search-input-group {
        width: 100%;
        padding: 12px 15px;
    }

    .activity-search-box-simple .search-input-group input {
        font-size: 15px;
    }

    .btn-explore {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    .activity-hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .activity-hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .activity-section {
        padding: 30px 0;
    }

    .activity-card {
        display: flex;
        gap: 15px;
    }

    .activity-image {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .activity-info {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .activity-info h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .activity-description {
        display: none;
    }

    .btn-activity-details {
        margin-top: auto;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .activity-hero {
        height: 280px;
    }

    .activity-hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .activity-hero-content p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .activity-search-box-simple {
        padding: 10px;
        gap: 8px;
        border-radius: 16px;
    }

    .activity-search-box-simple .search-input-group {
        padding: 10px 12px;
        border-radius: 12px;
    }

    .activity-search-box-simple .search-input-group input {
        font-size: 14px;
    }

    .btn-explore {
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 12px;
    }

    .activities-grid-simple {
        gap: 15px;
        padding: 0 5px;
    }

    .activity-card-simple {
        border-radius: 12px;
    }

    .activity-card-simple .activity-image {
        height: 200px;
    }

    .activity-info-above {
        padding: 8px;
    }

    .activity-title-above {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .activity-price-above {
        font-size: 12px;
    }

    .activity-section {
        padding: 25px 0;
    }

    .container {
        padding: 0 15px;
    }
}    .activity-search-box {
        padding: 12px;
    }

    .search-input-group input {
        font-size: 13px;
    }

    .activity-sidebar {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .filter-box h4 {
        font-size: 0.9rem;
    }

    .activity-card {
        flex-direction: column;
    }

    .activity-image {
        width: 100%;
        height: 180px;
    }

    .activity-info h3 {
        font-size: 0.95rem;
    }

    .activity-details {
        font-size: 11px;
        gap: 8px;
    }

    .pagination {
        gap: 5px;
    }

    .page-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}


/* Hero Section */
.activity-detail-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.activity-detail-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.activity-detail-hero .hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 0;
    color: var(--white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb i {
    font-size: 10px;
    opacity: 0.7;
}

.activity-detail-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.hero-meta i {
    color: var(--accent-color);
}

/* Content Layout */
.activity-detail-content {
    padding: 60px 0;
    background: var(--light-bg);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

/* Detail Sections */
.detail-main {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.detail-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-section h2 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.detail-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* Highlights List */
.highlights-list {
    list-style: none;
    padding: 0;
}

.highlights-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #555;
    line-height: 1.6;
}

.highlights-list i {
    color: var(--accent-color);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Itinerary Timeline */
.itinerary-timeline {
    position: relative;
    padding-left: 40px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
}

.itinerary-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
}

.itinerary-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.itinerary-time {
    font-weight: 600;
    color: var(--accent-color);
    min-width: 80px;
    flex-shrink: 0;
}

.itinerary-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.itinerary-content p {
    color: #666;
    margin: 0;
}

/* Inclusion Grid */
.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.inclusion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
}

.inclusion-item i {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.inclusion-item span {
    color: #555;
    font-size: 14px;
}

/* Exclusion List */
.exclusion-list {
    list-style: none;
    padding: 0;
}

.exclusion-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.exclusion-list i {
    color: #e74c3c;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-box {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h4 i {
    color: var(--accent-color);
}

.info-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* Sidebar */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.price-section {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--light-bg);
    margin-bottom: 25px;
}

.price-label {
    display: block;
    color: #999;
    font-size: 14px;
    margin-bottom: 8px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    color: #666;
    font-size: 13px;
}

.booking-form {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.form-group label i {
    color: var(--accent-color);
    margin-right: 5px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.btn-book-now,
.btn-inquiry {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-book-now {
    background: var(--accent-color);
    color: var(--white);
    margin-bottom: 12px;
}

.btn-book-now:hover {
    background: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
}

.btn-inquiry {
    background: var(--white);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-inquiry:hover {
    background: var(--accent-color);
    color: var(--white);
}

.booking-features {
    padding-top: 20px;
    border-top: 1px solid var(--light-bg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #555;
    font-size: 14px;
}

.feature-item i {
    color: #27ae60;
}

/* Contact Card */
.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-card h3 i {
    color: var(--accent-color);
}

.contact-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.contact-link:hover {
    background: var(--accent-color);
    color: var(--white);
}

.contact-link.whatsapp {
    background: #25d366;
    color: var(--white);
}

.contact-link.whatsapp:hover {
    background: #128c7e;
}

/* Share Card */
.share-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.share-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-card h3 i {
    color: var(--accent-color);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #ea4335;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        order: -1;
    }

    .booking-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .activity-detail-hero {
        height: 350px;
    }

    .activity-detail-hero h1 {
        font-size: 1.8rem;
    }

    .hero-meta {
        gap: 15px;
    }

    .detail-main {
        padding: 25px;
    }

    .detail-section h2 {
        font-size: 1.5rem;
    }

    .inclusion-grid,
    .info-boxes {
        grid-template-columns: 1fr;
    }

    .itinerary-timeline {
        padding-left: 30px;
    }

    .itinerary-item {
        flex-direction: column;
        gap: 5px;
    }

    .itinerary-time {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .activity-detail-hero {
        height: 300px;
    }

    .activity-detail-hero h1 {
        font-size: 1.5rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 10px;
    }

    .detail-main {
        padding: 20px;
    }

    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}
