/* Base Styles */
:root {
    --primary: #FF6B6B;
    --primary-dark: #E05555;
    --secondary: #4ECDC4;
    --dark: #292F36;
    --light: #F7FFF7;
    --gray: #6C757D;
    --light-gray: #F8F9FA;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
     --white: #FFFFFF;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

/*h1 { font-size: 2.5rem; }*/
/*h2 { font-size: 2rem; }*/
/*h3 { font-size: 1.5rem; }*/

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.cta-button.primary {
    background-color: var(--primary);
    color: white;
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.cta-button.secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button.secondary:hover {
    background-color: var(--light-gray);
}

.cta-button.large {
    padding: 15px 30px;
    font-size: 1.3rem;
}

.cta-button.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,107,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); }
}

/* Header */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 15px 0;
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-header nav ul {
    display: flex;
    list-style: none;
}

.sticky-header nav ul li {
    margin: 0 15px;
}

.sticky-header nav ul li a {
    color: var(--dark);
    font-weight: 500;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .phone {
    margin-right: 20px;
    color: var(--dark);
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
/* Hero Section Styles */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            color: white;
            overflow: hidden;
        }

        .media-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .media-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .media-slide.active {
            opacity: 1;
        }

        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
        }

        .hero-content {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 10%; /* Added left/right margins */
            padding-top: 80px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .breadcrumbs {
            padding: 10px 0px;
            font-size: 0.9rem;
            list-style: none;
            background-color: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
            border-radius: 4px;
        }
        
        .breadcrumbs ul{
            margin-left: -20px;
        }
        
        .breadcrumbs li{
            list-style-type: none;
            display: inline-block;
        }
        
        .breadcrumbs li + li:before {
            padding: 0 5px;
            color: #ccc;
            content: "/\00a0";
        }

        .breadcrumbs a {
            color: rgba(255,255,255,0.8);
        }

        .breadcrumbs span {
            color: white;
            font-weight: 500;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            max-width: 100%;
        }

        .subtitle {
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            margin-bottom: 30px;
            max-width: 700px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .trip-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
            max-width: 100%;
        }

        .meta-item {
            display: flex;
            align-items: center;
            background-color: rgba(255,255,255,0.2);
            padding: 10px 15px;
            border-radius: 4px;
            backdrop-filter: blur(5px);
        }

        .meta-item i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .trust-badges {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .badge {
            background-color: white;
            color: var(--primary-color);
            text-align: left;
            padding: 10px;
            border-radius: 4px;
            display: flex;
            align-items: center;
        }

        .badge img {
            height: 30px;
            width: auto;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content {
                padding: 0 5%;
                padding-top: 80px;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .trip-meta {
                gap: 10px;
            }
        }

        

/* Page Navigation */
.page-nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 80px;
    z-index: 999;
}

.page-nav ul {
    display: flex;
    list-style: none;
    justify-content: space-around;
    padding: 15px 0;
}

.page-nav a {
    color: var(--gray);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.page-nav a i {
    margin-right: 8px;
}

.page-nav a:hover {
    color: var(--primary);
}

/* Highlights Section */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.highlight-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.highlight-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.highlight-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

/* Itinerary Section */
.itinerary-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.itinerary-tabs::-webkit-scrollbar {
    display: none;
}

.tab-button {
    padding: 12px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gray);
}

.tab-button i {
    font-size: 0.9em;
}

.tab-button.active {
    background-color: var(--primary);
    color: white;
}

.tab-button:hover:not(.active) {
    background-color: #e0e0e0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Itinerary Day Styles */
.itinerary-day {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.day-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

.day-meta {
    display: flex;
    flex-direction: column;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.day-location {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.toggle-details {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    transition: transform 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.toggle-details:hover {
    background: rgba(255,107,107,0.1);
}

.toggle-details i {
    transition: transform 0.3s;
}

.day-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.day-details.active {
    max-height: 2000px; /* Adjust based on your content */
    padding: 0 20px 20px;
}

.day-image {
    height: 250px;
    overflow: hidden;
}

.day-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.day-image:hover img {
    transform: scale(1.03);
}

.day-content {
    padding: 20px 0;
}

.day-content h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.day-highlights {
    margin: 20px 0;
    padding: 15px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 8px;
}

.day-highlights h4 {
    margin-bottom: 10px;
    color: var(--dark);
}

.day-highlights ul {
    list-style: none;
}

.day-highlights li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.day-highlights i {
    margin-right: 10px;
    color: var(--primary);
}

.day-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.stat {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.stat i {
    margin-right: 8px;
    color: var(--primary);
}

/* Map View */
.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.map-toolbar {
    display: flex;
    gap: 10px;
    padding: 15px;
    background-color: white;
    border-bottom: 1px solid #eee;
}

.map-control {
    padding: 8px 15px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}

.map-control.active {
    background-color: var(--primary);
    color: white;
}

.map-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.map-base {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
    object-fit: cover;
}

.map-layer.active {
    opacity: 1;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(255,255,255,0.9);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 200px;
}

.map-legend h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.map-legend ul {
    list-style: none;
}

.map-legend li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
}

.legend-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.legend-icon.route {
    background-color: #FF6B6B;
}

.legend-icon.photo {
    background-color: #4ECDC4;
}

.legend-icon.lodge {
    background-color: #6B48FF;
}

.legend-icon.peak {
    background-color: #FFD166;
}

.map-zoom-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.map-zoom-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s;
}

.map-zoom-controls button:hover {
    background-color: var(--primary);
    color: white;
}

/* Elevation Profile */
.elevation-controls {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.elevation-control {
    padding: 8px 15px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 0.9rem;
}

.elevation-control.active {
    background-color: var(--primary);
    color: white;
}

.elevation-chart-container {
    position: relative;
    height: 300px;
    margin: 20px 0;
}

.elevation-tooltip {
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.elevation-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.elevation-stats .stat {
    text-align: center;
}

.elevation-stats .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.elevation-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Pricing Section */
.pricing-content {
    margin-top: 30px;
}

.price-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.price-card.featured {
    border: 2px solid var(--primary);
    position: relative;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-header {
    margin-bottom: 20px;
}

.price-header h3 {
    color: var(--dark);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.price span {
    font-size: 1rem;
    color: var(--gray);
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--warning);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-features {
    list-style: none;
    margin-bottom: 20px;
}

.price-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.price-features i {
    margin-right: 10px;
    color: var(--success);
}

.inclusions-exclusions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.inclusions ul, .exclusions ul {
    list-style: none;
}

.inclusions li, .exclusions li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.inclusions i {
    color: var(--success);
    margin-right: 10px;
}

.exclusions i {
    color: var(--danger);
    margin-right: 10px;
}

.currency-converter {
    margin-top: 30px;
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.converter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.converter-form input, .converter-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Reviews Section */
.review-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    margin: 40px 0;
}

.review-card {
    min-width: 350px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.review-meta {
    flex: 1;
}

.stars {
    color: var(--warning);
    margin: 5px 0;
}

.date {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-proof img {
    height: 80px;
}

/* FAQs Section */
.faq-accordion {
    margin-top: 40px;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Booking CTA */
.booking-cta {
    padding: 60px 0;
    background-color: var(--primary);
    color: white;
}

.cta-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h2 {
    color: var(--dark);
}

.cta-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.cta-timer {
    margin-top: 20px;
}

.timer-label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.timer {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col li {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods img {
    height: 30px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--danger);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.chat-container.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background-color: var(--primary);
    color: white;
    padding: 15px;
}

.chat-header h4 {
    margin-bottom: 5px;
}

.chat-header p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.chat-messages {
    height: 300px;
    padding: 15px;
    overflow-y: auto;
}

.chat-input {
    display: flex;
    padding: 10px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
}

.chat-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    width: 40px;
    border-radius: 4px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sticky-header nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .inclusions-exclusions {
        grid-template-columns: 1fr;
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .page-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 300px;
    }

    .day-image {
        height: 200px;
    }
    
    .day-stats {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .trip-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .chat-container {
        width: 280px;
    }

    .day-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .toggle-details {
        margin-top: 10px;
        align-self: flex-end;
    }
}


/* Gallery */
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gallery-container h1 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 15px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.likes-preview {
    display: flex;
    align-items: center;
    gap: 5px;
}

.likes-preview i {
    color: #ff6b6b;
}

.comments-preview {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: var(--dark);
}

#modalImage {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 4px;
}

.image-details {
    display: flex;
    flex-direction: column;
}

.image-meta {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 15px;
}

.likes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.like-btn {
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--gray);
    transition: all 0.2s;
}

.like-btn.liked {
    color: #ff6b6b;
    transform: scale(1.1);
}

.comments-section {
    flex-grow: 1;
    overflow-y: auto;
    max-height: 400px;
}

.comments-container {
    margin-top: 15px;
}

.comment {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.comment:last-child {
    border-bottom: none;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-text {
    margin-bottom: 8px;
}

.comment-actions {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--gray);
}

.comment-actions span {
    cursor: pointer;
}

.comment-actions span:hover {
    text-decoration: underline;
}

.replies {
    margin-left: 30px;
    margin-top: 10px;
    padding-left: 15px;
    border-left: 2px solid var(--light-gray);
}

.add-comment {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.comment-input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    outline: none;
}

.post-comment {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.post-comment:hover {
    background-color: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
        width: 90%;
    }
    
    #modalImage {
        max-height: 50vh;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 2% auto;
        width: 95%;
    }
}
/* ./Gallery */