/*
Theme Name: Visit Local Travel
Theme URI: https://visitlocaltravel.com
Author: Keo Sopherth
Author URI: https://visitlocaltravel.com
Description: A modern, professional WordPress theme for travel agent portal with optimized performance and security features.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: visit-local-travel
Tags: travel, agent, portal, b2b, booking, responsive, clean, modern
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --primary-color: #11315f;
    --primary-dark: #0d2143;
    --primary-light: #1a4a8a;
    --accent-color: #f98ab8;
    --accent-dark: #e66a9a;
    --accent-light: #fba8c8;
    --text-dark: #1a1a2e;
    --text-medium: #373737;
    --text-light: #7a7a9a;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fc;
    --bg-tertiary: #f0f4f8;
    --border-color: #e0e6ed;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    --shadow-sm: 0 2px 8px rgba(17, 49, 95, 0.08);
    --shadow-md: 0 4px 16px rgba(17, 49, 95, 0.12);
    --shadow-lg: 0 8px 32px rgba(17, 49, 95, 0.16);
    --shadow-xl: 0 16px 48px rgba(17, 49, 95, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --container-width: 1440px;
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 3rem);margin-top: 40px;padding-bottom: 15px; }
h2 { font-size: 26px;padding: 20px 0px 10px 0px; }
h3 { font-size: 23px;padding: 15px 0px 10px 0px; }
h4 { font-size: 19px; }
h5 { font-size: 17px; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color) !important;
}
ol, ul {
    box-sizing: border-box;
    margin-left: 25px;
    color: #4a4a6a;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    animation: slideDown 0.5s ease-out;
}
.entry-content {
    margin-top: 15px;
    margin-bottom: 60px;
}

.container-fluid {
    width: 100%;
    padding: 0 24px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.col {
    flex: 1;
    padding: 0 16px;
}

.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--bg-secondary);
}

.section-dark {
    background-color: var(--primary-color);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.875rem;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #f8f9fa;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid #dfdfdf;
}

/* Make header sticky on mobile devices */
@media (max-width: 768px) {
    .header {
        z-index: 99998;
    }
    
    /* Adjust header position when WordPress admin bar is present on mobile */
    body.admin-bar .header {
        top: 46px;
    }
}

.header-scrolled {
    box-shadow: 0 4px 16px rgb(17 49 95 / 0%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    margin-top: 7px !important;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 48px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    text-transform: uppercase;
    font-size: 16px;
}

.nav-menu a {
    font-weight: 500;
    color: #11315f;
    position: relative;
    font-size: 16px;
    text-transform: uppercase;
}
.nav-menu a:active {
    color: #e66a9a !important;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 0px;
    background: var(--accent-color);
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.current-menu-item,
.nav-menu a.current_page_item {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a.current-menu-item::after,
.nav-menu a.current_page_item::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 230px;
    margin-top: 10px;
    display: none;
    overflow: hidden;
    z-index: 1000;
    overflow: visible;
}

.dropdown-content.show {
    display: block;
    animation: dropdownSlide 0.2s ease;
    padding: 10px;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 10px 8px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    gap: 10px;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: #f1f1f1;
}

/* Destination Navigation Dropdown Grid Layout */
.sub-menu.destinations-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    min-width: 460px;
    padding: 15px;
}

.sub-menu.destinations-menu a {
    border-bottom: none;
    padding: 14px 15px;
    border-radius: 9px;
    transition: background 0.2s ease;
}

.sub-menu.destinations-menu a:hover {
    background: #f8f9fc;
}

/* Mobile: Single column for destination dropdown */
@media screen and (max-width: 768px) {
    .sub-menu.destinations-menu {
        grid-template-columns: 1fr;
        min-width: 280px !important;
        margin-left: 0px !important;
    }
}

.dropdown-content .logout-link {
    color: #ef4444;
    font-weight: 500;
}

.dropdown-content .wishlist-link {
    position: relative;
}

.dropdown-content .wishlist-link svg {
    color: #ef4444;
}

.wishlist-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    margin-left: auto;
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all var(--transition-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    color: white;
    line-height: 1.2;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 60px 0 80px;
    background: var(--bg-secondary);
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose {
    padding: 100px 0;
}
.section-title-overview h3,
.section-title-itinerary h3,
.section-title-inclusions h3 {
    font-family: Montserrat, sans-serif;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.home-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.home-section-header h2 {
    margin-bottom: 16px;
}

.home-section-header p {
    max-width: 600px;
    margin: 0 auto;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.vm-card {
    padding: 40px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.vm-card h3 {
    margin-bottom: 24px;
}

.vm-list {
    list-style: none;
}

.vm-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.vm-list li:last-child {
    border-bottom: none;
}

.vm-list strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.usp-card {
    padding: 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.usp-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.usp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.usp-card h4 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    /* Default desktop behavior */
    white-space: normal;
}

/* Mobile styles for destinations-grid - horizontal scrolling */
@media (max-width: 768px) {
    .destinations-wrapper {
        position: relative;
        width: 100%;
        padding: 0 45px; /* Space for navigation buttons */
    }
    
    .destinations-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        /* Force horizontal scroll */
        white-space: nowrap !important;
        /* Ensure flex container works properly */
        width: 100%;
        /* No margin needed since wrapper has padding */
        margin: 0 !important;
    }
    
    .destinations-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .destinations-grid .destination-card {
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 85vw !important;
        /* Prevent card from shrinking */
        flex-shrink: 0 !important;
        /* Reset grid properties for flex behavior */
        width: auto !important;
        /* Ensure proper card display */
        height: auto !important;
        aspect-ratio: 4/3 !important;
    }
    
    .destinations-grid .destination-card .destination-image {
        height: 100% !important;
        min-height: 200px !important;
    }
    
    .destinations-nav-buttons {
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
    }
    
    .destinations-nav-btn {
        display: flex !important;
        width: 88px !important;
        height: 88px !important;
        font-size: 18px !important;
        background: #11315f00 !important;
        box-shadow: 0 2px 12px rgb(0 0 0 / 0%) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .destinations-nav-btn.prev-btn {
        left: 5px !important;
    }
    
    .destinations-nav-btn.next-btn {
        right: 5px !important;
    }
    
    .destinations-dots {
        display: flex !important;
    }
}

/* Additional mobile optimization for smaller screens */
@media (max-width: 480px) {
    .destinations-wrapper {
        padding: 0 40px !important;
    }
    
    .destinations-grid {
        gap: 10px !important;
        padding: 15px 0 !important;
    }
    
    .destinations-grid .destination-card {
        flex: 0 0 100% !important;
        min-width: 260px !important;
        max-width: 90vw !important;
    }
    
    .destinations-nav-btn {
        width: 30px !important;
        height: 113px !important;
        font-size: 75px !important;
    }
    
    .destinations-nav-btn.prev-btn {
        left: 0px !important;
    }
    
    .destinations-nav-btn.next-btn {
        right: 3px !important;
    }
    
    .destinations-dots {
        display: flex !important;
        gap: 6px !important;
    }
    
    .destinations-dot {
        width: 14px !important;
        height: 14px !important;
    }
}

/* Desktop styles for destinations-grid */
@media (min-width: 769px) {
    .destinations-wrapper {
        position: static;
        padding: 0 !important;
    }
    
    .destinations-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 10px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        white-space: normal !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    .destinations-grid .destination-card {
        flex: auto !important;
        scroll-snap-align: none !important;
        min-width: auto !important;
        flex-shrink: 1 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
    }
    
    .destinations-nav-buttons {
        display: none !important;
    }
    
    .destinations-dots {
        display: none !important;
    }
}

/* Add navigation buttons for mobile carousel */
.destinations-wrapper {
    position: relative;
}

.popular-destinations-section {
    position: relative;
}

.destinations-nav-buttons {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 5px;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.destinations-nav-btn {
    pointer-events: auto;
    background: rgba(17, 49, 95, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.destinations-nav-btn.prev-btn {
    left: 5px;
}

.destinations-nav-btn.next-btn {
    right: 5px;
}

.destinations-nav-btn:hover {
    background: rgba(17, 49, 95, 1);
}

.destinations-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Destinations slider dots */
.destinations-dots {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
}

.destinations-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 49, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.destinations-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

.destinations-dot:hover {
    background: rgba(17, 49, 95, 0.6);
}

/* Featured Tours Carousel Styles */
.featured-tours-wrapper {
    position: relative;
    width: 100%;
}

.featured-tours-section {
    position: relative;
}

.featured-tours-nav-buttons {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 5px;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.featured-tours-nav-btn {
    pointer-events: auto;
    background: rgba(17, 49, 95, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.featured-tours-nav-btn.prev-btn {
    left: 5px;
}

.featured-tours-nav-btn.next-btn {
    right: 5px;
}

.featured-tours-nav-btn:hover {
    background: rgba(17, 49, 95, 1);
}

.featured-tours-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Featured tour card base styles */
.featured-tour-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Featured tours slider dots */
.featured-tours-dots {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
}

.featured-tours-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 49, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.featured-tours-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

.featured-tours-dot:hover {
    background: rgba(17, 49, 95, 0.6);
}

/* Why Choose Us Carousel Styles */
.why-choose-wrapper {
    position: relative;
    width: 100%;
}

.why-choose-us-section {
    position: relative;
}

.why-choose-nav-buttons {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 5px;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.why-choose-nav-btn {
    pointer-events: auto;
    background: rgba(17, 49, 95, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.why-choose-nav-btn.prev-btn {
    left: 5px;
}

.why-choose-nav-btn.next-btn {
    right: 5px;
}

.why-choose-nav-btn:hover {
    background: rgba(17, 49, 95, 1);
}

.why-choose-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Why choose us slider dots */
.why-choose-dots {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
}

.why-choose-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 49, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.why-choose-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

.why-choose-dot:hover {
    background: rgba(17, 49, 95, 0.6);
}

/* Why choose us item base styles */
.why-choose-item {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.why-choose-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Why choose us grid base styles */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    /* Default desktop behavior */
    white-space: normal;
}

/* Mobile styles for why-choose-grid - horizontal scrolling */
@media (max-width: 768px) {
    .why-choose-wrapper {
        position: relative;
        width: 100%;
        padding: 0 45px; /* Space for navigation buttons */
    }
    
    .why-choose-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        /* Force horizontal scroll */
        white-space: nowrap !important;
        /* Ensure flex container works properly */
        width: 100%;
        /* No margin needed since wrapper has padding */
        margin: 0 !important;
    }
    
    .why-choose-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .why-choose-grid .why-choose-item {
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 85vw !important;
        /* Prevent card from shrinking */
        flex-shrink: 0 !important;
        /* Reset grid properties for flex behavior */
        width: auto !important;
        /* Ensure proper card display */
        height: auto !important;
    }
    
    .why-choose-nav-buttons {
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
    }
    
    .why-choose-nav-btn {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        background: rgb(17 49 95 / 0%) !important;
        box-shadow: 0 2px 12px rgb(0 0 0 / 0%) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .why-choose-nav-btn.prev-btn {
        left: 5px !important;
    }
    
    .why-choose-nav-btn.next-btn {
        right: 5px !important;
    }
    
    .why-choose-dots {
        display: flex !important;
    }
}

/* Additional mobile optimization for why choose us on smaller screens */
@media (max-width: 480px) {
    .why-choose-wrapper {
        padding: 0 0px !important;
    }
    
    .why-choose-grid {
        gap: 12px !important;
        padding: 15px 0 !important;
    }
    
    .why-choose-grid .why-choose-item {
        flex: 0 0 100% !important;
        min-width: 260px !important;
        max-width: 90vw !important;
    }
    
    .why-choose-nav-btn {
        width: 25px !important;
        height: 90px !important;
        font-size: 75px !important;
    }
    
    .why-choose-nav-btn.prev-btn {
        left: 3px !important;
        color: #c9a84c;
    }
    
    .why-choose-nav-btn.next-btn {
        right: 3px !important;
        color: #c9a84c;
    }
    .country-cards-section {
        padding: 20px 0 50px 0 !important;
    }
    .why-choose-dots {
        display: flex !important;
        gap: 6px !important;
    }
    
    .why-choose-dot {
        width: 15px !important;
        height: 15px !important;
    }
}

/* Desktop styles for why-choose-grid */
@media (min-width: 769px) {
    .why-choose-wrapper {
        position: static;
        padding: 0 !important;
    }
    
    .why-choose-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        white-space: normal !important;
        width: auto !important;
        margin: 0 auto !important;
        max-width: 1400px !important;
    }
    
    .why-choose-grid .why-choose-item {
        flex: auto !important;
        scroll-snap-align: none !important;
        min-width: auto !important;
        flex-shrink: 1 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
    }
    
    .why-choose-nav-buttons {
        display: none !important;
    }
    
    .why-choose-dots {
        display: none !important;
    }
}

/* Country Cards Carousel Styles */
.country-cards-wrapper {
    position: relative;
    width: 100%;
}

.country-cards-section {
    position: relative;
}

.country-cards-nav-buttons {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: space-between;
    position: absolute;
    top: 66%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 5px;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.country-cards-nav-btn {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    background: rgba(17, 49, 95, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.country-cards-nav-btn.prev-btn {
    left: 0px;
}

.country-cards-nav-btn.next-btn {
    right: 0px;
}

.country-cards-nav-btn:hover {
    background: rgba(17, 49, 95, 1);
}

.country-cards-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Country cards slider dots */
.country-cards-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
}

.country-cards-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 49, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.country-cards-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

.country-cards-dot:hover {
    background: rgba(17, 49, 95, 0.6);
}

/* Country card base styles */
.country-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Country cards grid base styles */
.country-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    white-space: normal;
}

/* Mobile styles for country-cards-grid - horizontal scrolling */
@media (max-width: 768px) {
    .country-cards-wrapper {
        position: relative;
        width: 100%;
        padding: 0 45px; /* Space for navigation buttons */
    }
    
    .country-cards-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        /* Force horizontal scroll */
        white-space: nowrap !important;
        /* Ensure flex container works properly */
        width: 100%;
        /* No margin needed since wrapper has padding */
        margin: 0 !important;
    }
    
    .country-cards-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .country-cards-grid .country-card {
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 85vw !important;
        /* Prevent card from shrinking */
        flex-shrink: 0 !important;
        /* Reset grid properties for flex behavior */
        width: auto !important;
        /* Ensure proper card display */
        height: auto !important;
    }
    
    .country-cards-nav-buttons {
        display: flex !important;
        top: 64% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
    }
    
    .country-cards-nav-btn {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        background: #ffffff00 !important;
        border: 0px solid #d4af37 !important;
        border-radius: 50% !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .country-cards-nav-btn.prev-btn {
        left: 5px !important;
    }
    
    .country-cards-nav-btn.next-btn {
        right: 5px !important;
    }
    
    .country-cards-dots {
        display: flex !important;
    }
}

/* Mobile Destinations Toggle Styles */
.mobile-destinations-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    position: relative;
}

.mobile-section-arrow {
    transition: transform 0.3s ease;
}

.mobile-destinations-toggle.active .mobile-section-arrow {
    transform: rotate(180deg);
}

.mobile-destinations-content {
    display: none;
    overflow: hidden;
}

.mobile-destinations-content.show {
    display: block;
}

/* Additional mobile optimization for country cards on smaller screens */
@media (max-width: 480px) {
    .country-cards-wrapper {
        padding: 0 0px !important;
    }
    
    .country-cards-grid {
        gap: 12px !important;
        padding: 15px 0 !important;
    }
    
    .country-cards-grid .country-card {
        flex: 0 0 100% !important;
        min-width: 260px !important;
        max-width: 90vw !important;
    }
    
    .country-cards-nav-btn {
        width: 25px !important;
        height: 90px !important;
        font-size: 75px !important;
    }
    
    .country-cards-nav-btn.prev-btn {
        left: 0px !important;
        color: #c9a84c;
    }
    
    .country-cards-nav-btn.next-btn {
        right: 0px !important;
        color: #c9a84c;
    }
    
    .country-cards-dots {
        display: none !important;
        gap: 6px !important;
    }
    
    .country-cards-dot {
        width: 15px !important;
        height: 15px !important;
    }
}

/* Desktop styles for country-cards-grid */
@media (min-width: 769px) {
    .country-cards-wrapper {
        position: static;
        padding: 0 !important;
    }
    
    .country-cards-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        white-space: normal !important;
        width: auto !important;
        margin: 0 auto !important;
        max-width: 1400px !important;
    }
    
    .country-cards-grid .country-card {
        scroll-snap-align: none !important;
        min-width: auto !important;
        width: 320px !important;
        max-width: none !important;
        height: auto !important;
    }
    
    .country-cards-nav-buttons {
        display: flex !important;
        top: 64% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
        max-width: 1440px !important;
        margin: 0 auto !important;
    }
    
    .country-cards-nav-btn {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 90px !important;
        background: #ffffff00 !important;
        border: 0px solid #d4af37 !important;
        border-radius: 50% !important;
        box-shadow: 0 4px 12px rgb(0 0 0 / 0%) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .country-cards-nav-btn:hover {
        background: #d4af3700 !important;
        color: #e66a9a !important;
    }
    
    .country-cards-dots {
        display: none !important;
    }
}

/* Recently Viewed Carousel Styles */
.recently-viewed-wrapper {
    position: relative;
    width: 100%;
}

.recently-viewed-section {
    position: relative;
}

.recently-viewed-nav-buttons {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 0 5px;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.recently-viewed-nav-btn {
    pointer-events: auto;
    background: rgba(17, 49, 95, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.recently-viewed-nav-btn.prev-btn {
    left: 5px;
}

.recently-viewed-nav-btn.next-btn {
    right: 5px;
}

.recently-viewed-nav-btn:hover {
    background: rgba(17, 49, 95, 1);
}

.recently-viewed-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Recently viewed slider dots */
.recently-viewed-dots {
    display: none; /* Hidden by default, shown on mobile via JS */
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    width: 100%;
}

.recently-viewed-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 49, 95, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.recently-viewed-dot.active {
    background: #c9a84c;
    transform: scale(1.2);
}

.recently-viewed-dot:hover {
    background: rgba(17, 49, 95, 0.6);
}

/* Recently viewed card base styles */
.recently-viewed-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.recently-viewed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

/* Recently viewed grid base styles */
.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    /* Default desktop behavior */
    white-space: normal;
}

/* Mobile styles for recently-viewed-grid - horizontal scrolling */
@media (max-width: 768px) {
    .recently-viewed-wrapper {
        position: relative;
        width: 100%;
        padding: 0 45px; /* Space for navigation buttons */
    }
    
    .recently-viewed-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        /* Force horizontal scroll */
        white-space: nowrap !important;
        /* Ensure flex container works properly */
        width: 100%;
        /* No margin needed since wrapper has padding */
        margin: 0 !important;
    }
    
    .recently-viewed-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .recently-viewed-grid .recently-viewed-card {
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 85vw !important;
        /* Prevent card from shrinking */
        flex-shrink: 0 !important;
        /* Reset grid properties for flex behavior */
        width: auto !important;
        /* Ensure proper card display */
        height: auto !important;
    }
    
    .recently-viewed-nav-buttons {
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
    }
    
    .recently-viewed-nav-btn {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        background: rgb(17 49 95 / 0%) !important;
        box-shadow: 0 2px 12px rgb(0 0 0 / 0%) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .recently-viewed-nav-btn.prev-btn {
        left: 5px !important;
    }
    
    .recently-viewed-nav-btn.next-btn {
        right: 5px !important;
    }
    
    .recently-viewed-dots {
        display: flex !important;
    }
}

/* Additional mobile optimization for recently viewed on smaller screens */
@media (max-width: 480px) {
    .recently-viewed-wrapper {
        padding: 0 0px !important;
    }
    
    .recently-viewed-grid {
        gap: 12px !important;
        padding: 15px 0 !important;
    }
    
    .recently-viewed-grid .recently-viewed-card {
        flex: 0 0 100% !important;
        min-width: 260px !important;
        max-width: 90vw !important;
    }
    
    .recently-viewed-nav-btn {
        width: 25px !important;
        height: 90px !important;
        font-size: 75px !important;
    }
    
    .recently-viewed-nav-btn.prev-btn {
        left: 3px !important;
        color: #c9a84c;
    }
    
    .recently-viewed-nav-btn.next-btn {
        right: 3px !important;
        color: #c9a84c;
    }
    
    .recently-viewed-dots {
        display: flex !important;
        gap: 6px !important;
    }
    
    .recently-viewed-dot {
        width: 15px !important;
        height: 15px !important;
    }
}

/* Desktop styles for recently-viewed-grid */
@media (min-width: 769px) {
    .recently-viewed-wrapper {
        position: static;
        padding: 0 !important;
    }
    
    .recently-viewed-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        white-space: normal !important;
        width: auto !important;
        margin: 0 auto !important;
        max-width: 1400px !important;
    }
    
    .recently-viewed-grid .recently-viewed-card {
        flex: auto !important;
        scroll-snap-align: none !important;
        min-width: auto !important;
        flex-shrink: 1 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
    }
    
    .recently-viewed-nav-buttons {
        display: none !important;
    }
    
    .recently-viewed-dots {
        display: none !important;
    }
}

/* Fixed Departure Toggle Styles */
.fixed-sup-wrapper {
    position: relative;
    margin-top: 10px;
}

.fixed-sup-toggle {
    display: none; /* Hidden by default, shown on mobile via JS */
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, #11315f 0%, #667eea 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(17, 49, 95, 0.2);
    margin-bottom: 20px;
    flex-direction: row;
    pointer-events: auto;
}

.fixed-sup-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgb(17 49 95 / 0%);
}

.fixed-sup-toggle .toggle-text {
    flex: 1;
    text-align: center;
}

.fixed-sup-toggle .toggle-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.fixed-sup-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.fixed-sup {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}

.fixed-sup.expanded {
    max-height: 5000px; /* Large enough to show all content */
    opacity: 1;
}

/* Mobile styles for fixed-sup toggle */
@media (max-width: 768px) {
    .fixed-sup-toggle {
        display: flex !important;
        color: #11315f;
        background: transparent;
        box-shadow: 0 4px 12px rgb(17 49 95 / 0%);
        padding: 0px 20px;
    }
    
    /* Fixed-date-home 2-column layout for mobile */
    .fixed-date-home {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .fixed-sup {
        max-height: 0 !important;
        opacity: 0 !important;
        overflow: hidden !important;
    }
    
    .fixed-sup.expanded {
        max-height: 5000px !important;
        opacity: 1 !important;
    }
}

/* Desktop styles for fixed-sup */
@media (min-width: 769px) {
    .fixed-sup-toggle {
        display: none !important;
    }
    
    .fixed-sup {
        max-height: none !important;
        opacity: 1 !important;
        overflow: visible !important;
    }
}

/* Mobile styles for featured-tours-grid - horizontal scrolling */
@media (max-width: 768px) {
    .featured-tours-wrapper {
        position: relative;
        width: 100%;
        padding: 0 45px; /* Space for navigation buttons */
    }
    
    .featured-tours-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 16px !important;
        padding: 20px 0 !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        /* Force horizontal scroll */
        white-space: nowrap !important;
        /* Ensure flex container works properly */
        width: 100%;
        /* No margin needed since wrapper has padding */
        margin: 0 !important;
    }
    
    .featured-tours-grid::-webkit-scrollbar {
        display: none !important;
    }
    
    .featured-tours-grid .featured-tour-card {
        flex: 0 0 100% !important;
        scroll-snap-align: start !important;
        min-width: 280px !important;
        max-width: 85vw !important;
        /* Prevent card from shrinking */
        flex-shrink: 0 !important;
        /* Reset grid properties for flex behavior */
        width: auto !important;
        /* Ensure proper card display */
        height: auto !important;
    }
    
    .featured-tours-nav-buttons {
        display: flex !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 0 !important;
    }
    
    .featured-tours-nav-btn {
        display: flex !important;
        width: 36px !important;
        height: 36px !important;
        font-size: 18px !important;
        background: rgb(17 49 95 / 0%) !important;
        box-shadow: 0 2px 12px rgb(0 0 0 / 0%) !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    .featured-tours-nav-btn.prev-btn {
        left: 0px !important;
    }
    
    .featured-tours-nav-btn.next-btn {
        right: 0px !important;
    }
    
    .featured-tours-dots {
        display: flex !important;
        margin-top: 2px;
    }
}

/* Additional mobile optimization for featured tours on smaller screens */
@media (max-width: 480px) {
    .featured-tours-wrapper {
        padding: 0 0px !important;
    }
    
    .featured-tours-grid {
        gap: 12px !important;
        padding: 15px 0 !important;
    }
    
    .featured-tours-grid .featured-tour-card {
        flex: 0 0 100% !important;
        min-width: 260px !important;
        max-width: 90vw !important;
    }
    
    .featured-tours-nav-btn {
        width: 25px !important;
        height: 135px !important;
        font-size: 75px !important;
        color: #c9a84c;
    }
    
    .featured-tours-nav-btn.prev-btn {
        left: 0px !important;
    }
    
    .featured-tours-nav-btn.next-btn {
        right: 0px !important;
    }
    
    .featured-tours-dots {
        display: flex !important;
        gap: 6px !important;
    }
    
    .featured-tours-dot {
        width: 15px !important;
        height: 15px !important;
    }
}

/* Desktop styles for featured-tours-grid */
@media (min-width: 769px) {
    .featured-tours-wrapper {
        position: static;
        padding: 0 !important;
    }
    
    .featured-tours-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 24px !important;
        overflow-x: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        white-space: normal !important;
        width: auto !important;
        margin: 0 !important;
    }
    
    .featured-tours-grid .featured-tour-card {
        flex: auto !important;
        scroll-snap-align: none !important;
        min-width: auto !important;
        flex-shrink: 1 !important;
        width: auto !important;
        max-width: none !important;
        height: auto !important;
    }
    
    .featured-tours-nav-buttons {
        display: none !important;
    }
    
    .featured-tours-dots {
        display: none !important;
    }
}

.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    group: destination;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 49, 95, 0.9) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.destination-name {
    color: white;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   TRAVEL STYLES
   ============================================ */
.travel-styles {
    padding: 100px 0;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.style-card {
    padding: 40px 32px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.style-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    transform: translateY(-4px);
}

.style-card h4 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.style-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 16px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 1.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #e9ecef;
    color: #11315f;
    padding: 40px 0 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer h4 {
    color: #11315f;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}
.widget-title {
    font-size: 20px;
    font-family: var(--font-secondary);
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 24px;
    position: relative;
    color: #11315f;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #d4af37 0%, #f5d78e 50%, #d4af37 100%);
    border-radius: 2px;
}

/* Remove bullets from all lists in footer */
.footer ul, 
.footer ul li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
    padding: 0px 0px;
}

.footer ul li::before {
    content: none !important;
}

.footer-links a {
    color: #11315f;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid #cfcfcf;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}
.footer-bottom p {
    color: #11315f;
    margin-top: 12px;
}

.payment-methods {
    margin: 5px 0 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.we-accept {
    font-size: 17px;
    color: #089700;
    font-weight: 600;
}

.payment-method-image {
    max-width: 300px;
    height: auto;
}

.footer-links-text {
    color: #11315f;
    font-size: 0.875rem;
    margin-top: 10px;
}

.footer-links-text a {
    color: #11315f;
    text-decoration: none;
    transition: color var(--transition-fast);
    padding: 15px;
}

.footer-links-text a:hover {
    color: var(--accent-color);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* Hide back-to-top button on mobile devices */
@media (max-width: 768px) {
    .back-to-top {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-image {
        width: 40%;
        clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .logo img {
        max-height: 48px;
    }
    .logo {
        font-size: 1.5rem;
        color: #ffffff;
    }
    .btn-sm {
        padding: 7px 19px;
        font-size: 0.875rem;
    }
    .header {
        background:#ffffff;
        border-bottom: 0px solid #dfdfdf;
    }
    .footer {
        padding: 40px 20px 10px;
    }
    .nav-menu {
        display: none;
    }
    .header-inner {
        margin: 10px 0px;
    }
    .btn-outline {
        color: #ffffff;
        border: 1px solid #ffffff;
    }
    .mobile-toggle {
        display: none;
    }
    .container {
        max-width: 100%;
        padding: 0px 15px;
    }
    .header-actions {
        gap: 5px;
    }
    .header-actions .btn-primary {
        display: none;
    }
    .seo-faq-section {
        display:none;
    }
}

/* Calendar Toggle Button */
.calendar-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: radial-gradient(100% 100% at 100% 0, #fff 0, #e0e6ed 100%);
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #11315f;
    transition: all 0.2s ease;
}

.calendar-toggle-btn:hover {
    background: #11315f;
    color: white;
    border-color: #11315f;
}

.calendar-toggle-btn svg {
    flex-shrink: 0;
}

/* Calendar Popup */
.calendar-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.calendar-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(1px);
}

.calendar-popup-content {
    animation: slideDown 0.7s ease-out;
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    height: 65vh;
    max-height: 90vh;
    overflow: hidden;
    z-index: 1;
}

.calendar-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e6ed;
    background: #f8f9fa;
    display:none;
}

.calendar-popup-header-wrapper {
    display: block;
}

.calendar-popup-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #11315f;
}

.calendar-popup-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.calendar-popup-close:hover {
    background: #e0e6ed;
    color: #11315f;
}

.calendar-popup-body {
    padding: 20px 5px;
    overflow-y: auto;
    max-height: calc(90vh - 70px);
}

.calendar-nav-container {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0px;
}

.calendar-nav-container .calendar-nav {
    width: 50px;
    height: 50px;
}

.calendar-months-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.calendar-month {
    background: #ffffff;
    border-radius: 8px;
    padding: 0px 16px 16px 16px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.calendar-header h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #11315f;
}

.calendar-nav {
    width: 28px;
    height: 28px;
    border: none;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: 1px solid #e0e6ed;
}

.calendar-nav:hover {
    background: #11315f;
    color: white;
    border-color: #11315f;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-day-name {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    padding: 4px;
}

@media (max-width: 768px) {
    .calendar-months-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .calendar-popup-content {
        width: 95%;
        max-height: 95vh;
        height: 85vh;
    }
    .calendar-popup-body {
        padding: 10px 5px;
    }
    .calendar-day-number {
        font-size: 17px;
    }
    .global-hero-section {
        min-height: 640px !important;
    }
    .hero-slider {
        height: 640px !important;
    }
    .hero {
        min-height: auto;
        padding: 120px 15px 80px;
    }
    .global-hero-section h2 {
        font-size: clamp(2.5rem, 6vw, 3.5rem) !important;
    }
    .hero-slider-dots {
        justify-content: center !important;
    }
    .hero-image {
        display: none;
    }
    
    .stats {
        margin-top: 0;
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }

    .notes-fullwidth {
        padding: 0 0px !important;
    }
    .traveller-review-form-container {
        margin: 0px;
    }
        .traveller-reviews-container {
        padding: 15px 0px;
    }
    .reviews-header {
        padding: 20px 10px;
    }
    .calendar-month {
        padding: 0px 5px 16px 5px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Add navigation buttons for mobile carousel */
    .popular-destinations-section {
        position: relative;
    }
    
    .destinations-nav-buttons {
        display: none; /* Hidden by default, shown on mobile via JS */
        justify-content: space-between;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        padding: 0 10px;
        pointer-events: none;
        z-index: 10;
    }
    
    .destinations-nav-btn {
        pointer-events: auto;
        background: rgba(17, 49, 95, 0.9);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: background 0.3s ease;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    .destinations-nav-btn:hover {
        background: rgba(17, 49, 95, 1);
    }
    
    .destinations-nav-btn:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
}
