/* styles.css */

        :root {
    --primary: #2a5c8d;
    --secondary: #f8a51b;
    --light: #f5f7fa;
    --dark: #1e2a3a;
}

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
        }
        
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        /* Dropdown menu styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            border-radius: 5px;
            overflow: hidden;
            z-index: 1000;
        }
        
        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--dark);
            text-decoration: none;
            transition: background-color 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .dropdown-content a:last-child {
            border-bottom: none;
        }
        
        .dropdown-content a:hover {
            background-color: var(--light);
            color: var(--primary);
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .language-switcher {
            display: flex;
            margin-left: 20px;
        }
        
        .language-switcher button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            margin: 0 5px;
            font-weight: 600;
            color: var(--dark);
            transition: color 0.3s;
        }
        
        .language-switcher button.active {
            color: var(--primary);
            text-decoration: underline;
        }
        
        .language-switcher button:hover {
            color: var(--primary);
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #1d4b7a;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            background-color: #e69516;
        }

/* Tour Hero Section */
.tour-hero {
            position: relative;
            height: 60vh; /* Reduced height for mobile */
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;

            text-align: center;
            padding-top: 80px;
            overflow: hidden;
            margin-bottom: 40px;
        }

        .tour-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tour-hero-image img {
            max-width: 95%;
            max-height: 80%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }

        .tour-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .tour-hero-content {
            max-width: 90%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            padding: 0 15px;
        }

        .tour-hero h1 {
            font-size: 32px; /* Smaller for mobile */
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
        }

        .tour-hero p {
            font-size: 16px; /* Smaller for mobile */
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            line-height: 1.4;
        }

        .tour-price {
            font-size: 22px; /* Smaller for mobile */
            font-weight: 700;
            color: var(--secondary);
            margin: 15px 0;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

/* Tour Details Section */
.tour-details {
    padding: 60px 0;
}

.tour-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tour-description {
    margin-bottom: -100px;
}

.tour-description h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 28px;
}

.tour-highlights {
    margin: 30px 0;
}

.tour-highlights h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.highlight-list i {
    color: var(--secondary);
    margin-right: 10px;
    margin-top: 4px;
}

/* Itinerary */
.itinerary {
    margin: 40px 0;
}

.itinerary h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.itinerary-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.itinerary-time {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.itinerary-content {
    color: #555;
}

/* Included Section */
.included-section {
    padding: 60px 0;
}

.included-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.included-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.included-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.included-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.not-included {
    opacity: 0.7;
}

.not-included .included-icon {
    color: #ccc;
}

/* CTA Section */
.tour-cta {
    text-align: center;
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
}

.tour-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.tour-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 20px;
    max-height: 300px;
}

/* Footer */
footer {
            background-color: var(--dark);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 14px;
        }

/* Mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

.tour-details {
    padding: 80px 0;
    background-color: var(--light);
}

.tour-tabs {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-headers {
    display: flex;
    background-color: var(--light);
    border-bottom: 2px solid var(--primary);
}

.tab-header {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.tab-header.active {
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
    background-color: white;
}

.tab-header:hover {
    color: var(--primary);
}

.tab-contents {
    padding: 30px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.price-info {
    margin: 20px 0;
    padding: 20px;
    background-color: var(--light);
    border-radius: 8px;
}

.regular-price, .discount-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-amount {
    font-weight: 700;
    color: var(--secondary);
    font-size: 20px;
}

.discount-note {
    width: 100;
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.included-section, .excluded-section {
    margin: 20px 0;
}

.included-section h4, .excluded-section h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.tour-tabs ul {
    padding-left: 20px;
    margin: 10px 0;
}

.tour-tabs li {
    margin-bottom: 8px;
}

.payment-options {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--light);
    border-radius: 8px;
}

@media (max-width: 992px) {
    .tour-content {
        grid-template-columns: 1fr;
    }
    
    .booking-sidebar {
        order: -1;
        margin-bottom: 40px;
    }
}
 @media (min-width: 769px) {
            .tour-hero {
                height: 70vh;
            }
            
            .tour-hero-content {
                max-width: 800px;
                padding: 0 20px;
            }
            
            .tour-hero h1 {
                font-size: 48px;
                margin-bottom: 20px;
            }
            
            .tour-hero p {
                font-size: 20px;
                margin-bottom: 30px;
            }
            
            .tour-price {
                font-size: 28px;
                margin: 20px 0;
            }
            
            .tour-hero-image img {
                max-width: 90%;
                max-height: 90%;
            }
        }
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .language-switcher {
        margin: 15px 0 0 0;
        justify-content: center;
    }
    
    .tour-hero h1 {
        font-size: 36px;
    }
    
    .tour-hero p {
        font-size: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-headers {
        flex-direction: column;
    }
    
    .tab-header {
        text-align: center;
        padding: 12px;
    }
    
    .tab-contents {
        padding: 20px;
    }
    
    .regular-price, .discount-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-amount {
        margin-top: 5px;
    }
    
    /* Mobile adjustments for hero image */
    .tour-hero-image {
        max-width: 95%;
        max-height: 80%;
    }
}
@media (max-width: 480px) {
            .tour-hero {
                height: 50vh; /* Even smaller for very small screens */
                padding-top: 70px; /* Less padding for mobile */
            }
            
            .tour-hero h1 {
                font-size: 24px;
                margin-bottom: 10px;
            }
            
            .tour-hero p {
                font-size: 14px;
                margin-bottom: 15px;
            }
            
            .tour-price {
                font-size: 18px;
                margin: 10px 0;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .tour-hero-image img {
                max-width: 98%;
                max-height: 90%;
                margin-top: 100px;
                margin-left: 20px;
            }
        }
    
    @media (max-width: 768px) {
        .tab-headers {
            flex-direction: column;
        }
        
        .tab-header {
            text-align: center;
            padding: 12px;
        }
        
        .tab-contents {
            padding: 20px;
        }
        
        .regular-price, .discount-price {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .price-amount {
            margin-top: 5px;
        }
    }
