      :root {
            --primary-orange: #F1661C;
            --beige-green: #C4BD86;
            --dark-brown: #3B1E0D;
            --black: #000000;
            --off-white: #fefefe;
            --light-gray: #f8f9fa;
            --sunset-orange: #F1661C;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--black);
        }

        /* Navigation */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(241, 102, 28, 0.1);
            padding: 10px 0;
        }

        .navbar-brand img {
            height: 50px;
        }

        .navbar-nav .nav-link {
            color: var(--dark-brown) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-orange) !important;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary-orange), #ff8c42);
            border: none;
            color: white;
            font-weight: 600;
            padding: 12px 25px;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;

        }
   
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 102, 28, 0.3);
            color: white;
        }

        

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .hero-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .hero-badge {
            background: linear-gradient(45deg, var(--primary-orange), var(--beige-green));
            color: var(--black);
            padding: 10px 18px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Section Styling */
        .section-padding {
            padding: 80px 0;
        }

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

        .section-header h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-brown);
        }

        .section-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, var(--primary-orange), var(--beige-green));
            margin: 0 auto 25px;
            border-radius: 2px;
        }

        /* Overview Cards */
        .overview-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            height: 100%;
        }

        .overview-card:hover {
            transform: translateY(-5px);
        }

        .overview-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--primary-orange), var(--beige-green));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 1.8rem;
            color: white;
        }

        .highlight-list {
            list-style: none;
            padding: 0;
        }

        .highlight-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }

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

        .highlight-list i {
            color: var(--primary-orange);
            margin-right: 10px;
            width: 16px;
        }

        /* Itinerary Section */
        .itinerary-compact {
            max-width: 100%;
        }

        .itinerary-tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .day-tab {
            background: transparent;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 12px 20px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
            min-width: 100px;
        }

        .day-tab.active,
        .day-tab:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-2px);
        }

        .day-content-wrapper {
            position: relative;
        }

        .day-item {
            display: none;
            animation: fadeIn 0.5s ease-in;
        }

        .day-item.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .day-image-compact {
            position: relative;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
        }

        .day-image-compact img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .day-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 8px 16px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .day-info h4 {
            color: var(--dark-brown);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .day-stats-compact {
            background: var(--light-gray);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }

        .stat-compact {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .stat-compact:last-child {
            margin-bottom: 0;
        }

        .stat-badge-small {
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            text-align: center;
        }

        /* Includes/Excludes Section */
        .includes-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            height: 100%;
        }

        .includes-list {
            list-style: none;
            padding: 0;
        }

        .includes-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }

        .includes-list i {
            margin-right: 12px;
            margin-top: 4px;
            width: 16px;
            font-size: 0.9rem;
        }

        /* Similar Tours Section */
        .similar-tour-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            height: 100%;
        }

        .similar-tour-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .tour-card-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

        .tour-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .similar-tour-card:hover .tour-card-image img {
            transform: scale(1.1);
        }

        .tour-difficulty-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .tour-duration-badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: var(--primary-orange);
            color: white;
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .tour-card-content {
            padding: 25px;
        }

        .tour-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark-brown);
        }

        .tour-card-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .btn-tour-outline {
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            background: transparent;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .btn-tour-outline:hover {
            background: var(--primary-orange);
            color: white;
            text-decoration: none;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--black) 100%);
            color: white;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .whatsapp-btn:hover {
            background: #128c7e;
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid var(--primary-orange);
            padding: 13px 28px;
            border-radius: 30px;
            color: var(--primary-orange);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-orange);
            color: white;
            text-decoration: none;
            transform: translateY(-3px);
        }

        /* Similar Routes Slideshow */
        .similar-routes-slideshow {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }

        .routes-slider-container {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .routes-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .route-slide {
            min-width: 100%;
            padding: 40px;
            display: none;
        }

        .route-slide.active {
            display: block;
        }

        .route-slide-image {
            position: relative;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
        }

        .route-slide-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .route-slide-content {
            padding: 20px 0;
        }

        .route-slide-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark-brown);
        }

        .route-slide-description {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .route-highlights {
            margin-bottom: 25px;
        }

        .route-highlight {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .route-highlight i {
            color: var(--primary-orange);
            margin-right: 10px;
            width: 16px;
        }

        .routes-slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .slider-btn {
            background: rgba(0,0,0,0.7);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            pointer-events: all;
        }

        .slider-btn:hover {
            background: var(--primary-orange);
            transform: scale(1.1);
        }

        .routes-slider-indicators {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px 0;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-orange);
            transform: scale(1.2);
        }

        /* Mobile Tab Enhancements */
        .show-on-mobile {
            display: none;
        }

        .hide-on-mobile {
            display: block;
        }

        .itinerary-tabs-mobile {
            margin-bottom: 30px;
        }

        .day-selector-dropdown {
            width: 100%;
            background: white;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            padding: 15px 20px;
            border-radius: 25px;
            font-weight: 600;
            text-align: left;
            position: relative;
            cursor: pointer;
        }

        .day-selector-dropdown::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .day-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid var(--primary-orange);
            border-radius: 15px;
            margin-top: 5px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            z-index: 1000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .day-dropdown-menu.show {
            max-height: 400px;
        }

        .day-dropdown-item {
            padding: 15px 20px;
            cursor: pointer;
            border-bottom: 1px solid #eee;
            transition: background-color 0.3s ease;
        }

        .day-dropdown-item:last-child {
            border-bottom: none;
        }

        .day-dropdown-item:hover,
        .day-dropdown-item.active {
            background: var(--primary-orange);
            color: white;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .route-slide {
                padding: 30px;
            }
            
            .route-slide-image {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            /* Mobile text alignment - all paragraphs left-aligned */
            p {
                text-align: left !important;
            }
            
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
                text-align: left !important;
            }
            
            .hero-badges {
                justify-content: center;
            }

            .hero-badge {
                padding: 8px 15px;
                font-size: 0.8rem;
            }
            
            .day-image-compact {
                height: 200px;
            }

            .itinerary-tabs {
                justify-content: flex-start;
            }

            .day-tab {
                padding: 10px 15px;
                font-size: 0.85rem;
                min-width: 80px;
            }
            
            /* Mobile slideshow adjustments */
            .route-slide {
                padding: 20px;
            }
            
            .route-slide-image {
                height: 200px;
                margin-bottom: 20px;
            }
            
            .route-slide-title {
                font-size: 1.4rem;
            }
            
            .route-slide-description {
                font-size: 1rem;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            
            .routes-slider-nav {
                padding: 0 10px;
            }
            
            /* Mobile tab styles */
            .show-on-mobile {
                display: block;
            }

            .hide-on-mobile {
                display: none;
            }
            
            .itinerary-tabs-mobile {
                position: relative;
            }
        }
        /* Mobile Tab Styles */
.show-on-mobile {
    display: none;
}

.hide-on-mobile {
    display: block;
}

/* Mobile Dropdown Styles */
.itinerary-tabs-mobile {
    position: relative;
    margin-bottom: 30px;
    z-index: 100;
}

.day-selector-dropdown {
    width: 100%;
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-align: left;
    position: relative;
    cursor: pointer;
    font-size: 0.9rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.day-selector-dropdown::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.day-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.day-dropdown-menu.show {
    max-height: 400px;
    overflow-y: auto;
}

.day-dropdown-item {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    font-size: 0.85rem;
    line-height: 1.4;
}

.day-dropdown-item:last-child {
    border-bottom: none;
}

.day-dropdown-item:hover,
.day-dropdown-item.active {
    background: var(--primary-orange);
    color: white;
}

/* Scrollable Tabs Wrapper */
.itinerary-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.itinerary-tabs-wrapper::-webkit-scrollbar {
    height: 6px;
}

.itinerary-tabs-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.itinerary-tabs-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.itinerary-tabs-wrapper::-webkit-scrollbar-thumb:hover {
    background: #d84d10;
}

/* Ensure tabs in wrapper maintain their styling */
.itinerary-tabs-wrapper .itinerary-tabs {
    display: flex;
    gap: 10px;
    min-width: max-content;
    padding: 0 10px;
}

.itinerary-tabs-wrapper .day-tab {
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 80px;
    font-size: 0.8rem;
    padding: 10px 15px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .show-on-mobile {
        display: block;
    }

    .hide-on-mobile {
        display: none !important;
    }
    
    /* Override any existing tab styles for mobile */
    .itinerary-tabs {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .day-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
        min-width: 70px;
        white-space: nowrap;
    }
    
    /* Ensure dropdown is always visible on mobile */
    .itinerary-tabs-mobile {
        display: block !important;
    }
    
    /* Adjust day content for mobile */
    .day-item {
        animation: fadeIn 0.3s ease-in;
    }
    
    .day-item.active {
        display: block;
    }
}

/* Animation for day content switching */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(10px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Fix for very small screens */
@media (max-width: 480px) {
    .day-selector-dropdown {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .day-dropdown-item {
        padding: 12px 16px;
        font-size: 0.8rem;
    }
    
    .day-tab {
        padding: 6px 10px;
        font-size: 0.7rem;
        min-width: 60px;
    }
}

/* ==============================================
   IMPROVED DAY CONTENT STYLING
   ============================================== */

/* Day Content Wrapper - Better Container */
.day-content-wrapper {
    position: relative;
    min-height: 400px; /* Ensure consistent height */
}

/* Individual Day Items - Enhanced Styling */
.day-item {
    display: none;
    animation: fadeIn 0.5s ease-in;
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
}

.day-item.active {
    display: block;
}

/* Day Content Inner Wrapper */
.day-info {
    position: relative;
}

/* Day Headings - Better Typography */
.day-info h4 {
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 1.4rem;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-orange);
    position: relative;
}

.day-info h4 i {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Day Description Paragraphs */
.day-info p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    font-size: 1rem;
}

.day-info p strong {
    color: var(--dark-brown);
    font-weight: 600;
}

/* Enhanced Day Stats Container */
.day-stats-compact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-orange);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Stat Items Layout */
.stat-compact {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.stat-compact:last-child {
    margin-bottom: 0;
}

.stat-compact i {
    color: var(--primary-orange);
    margin-right: 12px;
    width: 20px;
    font-size: 1.1rem;
}

.stat-compact strong {
    color: var(--dark-brown);
    font-weight: 600;
}

/* Stat Badges - Better Visual Design */
.stat-badge-small {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 2px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Enhanced Alert Boxes */
.day-item .alert {
    border-radius: 10px;
    border: none;
    padding: 15px 20px;
    margin: 20px 0;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.alert-info {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    border-left: 4px solid #2196f3;
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert i {
    font-size: 1.1rem;
    margin-right: 8px;
}

/* Day Images - Better Presentation */
.day-image-compact {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border: 3px solid white;
}

.day-image-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.day-image-compact:hover img {
    transform: scale(1.05);
}

/* Day Badge on Images */
.day-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8c42 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 12px rgba(241, 102, 28, 0.4);
}

/* Enhanced Row Layout for Day Content */
.day-item .row {
    align-items: stretch;
}

.day-item .col-md-4,
.day-item .col-md-8,
.day-item .col-md-12 {
    display: flex;
    flex-direction: column;
}

/* Better Typography Hierarchy */
.day-info h5 {
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .day-item {
        padding: 20px;
        margin-top: 15px;
    }
    
    .day-info h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .day-image-compact {
        height: 200px;
        margin-bottom: 15px;
    }
    
    .day-stats-compact {
        padding: 20px;
        margin: 20px 0;
    }
    
    .stat-badge-small {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Animation for Content Changes */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Loading State (Optional) */
.day-item.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Content Focus Indicators */
.day-item:focus-within {
    box-shadow: 0 10px 30px rgba(241, 102, 28, 0.2);
    border-color: var(--primary-orange);
}

/* Enhanced Dividers */
.day-info hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, var(--primary-orange), var(--beige-green));
    margin: 20px 0;
    border-radius: 2px;
}



 /* Footer */
        .footer {
            background: var(--dark-brown);
            color: white;
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--sunset-orange);
            margin-bottom: 20px;
        }

        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer a:hover {
            color: var(--sunset-orange);
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: var(--sunset-orange);
            color: white;
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-gold);
            transform: translateY(-2px);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .contact-item i {
            color: var(--sunset-orange);
            margin-right: 10px;
            width: 20px;
        }

        .footer-links a {
            margin: 0 5px;
        }
