/* Global Styles */
:root {
    --primary-color: #0066cc;
    --secondary-color: #ff6600;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #28a745;
    --border-color: #e9ecef;
    --shadow: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container responsive styles */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 25px;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 30px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;

}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-primary:hover {
    background-color: #ff6600;
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: #ff6600;
    color: white;
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: #ff6600;
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: 14px;
}

/* Header Styles - Updated to match Thrillophilia */
header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-container {
    margin: 0 15px;
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;
}
.search-input i {
    color: #999;
    margin-right: 10px;
}
.search-box i {
    color: #666;
    margin-right: 10px;
}

.search-box input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
}
.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.currency-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.currency-selector img {
    width: 20px;
    margin-right: 5px;
}

.currency-selector i {
    margin-left: 5px;
    font-size: 12px;
}

.login-btn {
    font-weight: 600;
    color: #333;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.login-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.login-btn:hover {
    color: #ff6600;
    background-color: rgba(255, 102, 0, 0.1);
}
/* REMOVE ALL BOTTOM HEADER STYLES FROM HERE - They should be in bottom-header.css */
/* Bottom Header styles removed to avoid duplication */

/* Mobile menu button styles - Updated for responsive bottom header */
.mobile-menu-btn {
    display: none;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;

}

.nav-links a:hover {
    color: #ff6600;
}

.header-buttons .btn {
    margin-left: 10px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}
/* Hero Section */
/* Hero Background Slider */
.hero {
    position: relative;
    padding: 120px 0 40px;
    text-align: center;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-bottom: 40px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}
/* Featured Experiences */
.featured-experiences {
    padding: 80px 0;
    background-color: var(--light-color);
}

.search-box {
    display: flex;
    max-width: 600px;
    margin: 0 auto 30px;
    background-color: white;
    border-radius: 4px;
    overflow: hidden;

}

.search-input {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-input i {
    color: var(--gray-color);
    margin-right: 10px;
}

.search-input input {
    width: 100%;
    padding: 15px 0;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat .number {
    font-size: 20px;
    font-weight: 700;
}

.stat .label {
    font-size: 14px;
    opacity: 0.9;
}

/* Featured Experiences */
.featured-experiences {
    padding: 80px 0;
    background-color: var(--light-color);
}

.experience-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.category {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 200px;
}



.category-icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category h3 {
    font-size: 16px;
    font-weight: 600;
}

/* Destination Sections */
.destination-section {
    padding: 80px 0;
}

.destination-section:nth-child(odd) {
    background-color: var(--light-color);
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.experience-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}



/* Add fallback styles for missing images */
.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
}

.card-image::before {
    content: attr(data-alt);
    position: absolute;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.card-content {
    padding: 20px;
}

.card-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-color);
    font-size: 14px;
}

.card-rating i {
    color: #ffc107;
    margin-right: 5px;
}

.card-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.location {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.location i {
    margin-right: 5px;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.card-features span {
    background-color: var(--light-color);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
}

.card-features span i {
    margin-right: 5px;
}

.card-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price {
    display: flex;
    flex-direction: column;
}

.current {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.original {
    font-size: 14px;
    color: var(--gray-color);
    text-decoration: line-through;
}

.discount {
    font-size: 12px;
    color: var(--success-color);
    font-weight: 500;
}

.per-person {
    font-size: 12px;
    color: var(--gray-color);
}

.view-all-btn {
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background-color: var(--light-color);
}



.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature p {
    color: var(--gray-color);
    font-size: 13px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* For Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.testimonial {
    flex: 0 0 350px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.rating {
    color: #ffc107;
    font-size: 14px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-column p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;

}

.social-links a:hover {
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #aaa;

    font-size: 14px;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.contact-info li i {
    margin-right: 10px;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.footer-bottom p {
    color: #aaa;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #aaa;

}

.footer-links a:hover {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    /* Top header nav-links hidden, bottom header nav-links remain visible */
    .top-header .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .header-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .search-btn {
        width: 100%;
        padding: 12px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .category {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .testimonial {
        flex: 0 0 280px;
    }
}

/* Location Section Styles */
.location-section {
    margin-bottom: 60px;
}

.location-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.location-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;

    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Package Card Styles */
.package-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}



.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.package-badge.premium {
    background-color: #9c27b0;
}

.package-badge.special {
    background-color: #2196F3;
}

.image-dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

.package-content {
    padding: 20px;
}

.package-duration {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 8px;
    font-weight: 500;
}

.package-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.rating-stars {
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 500;
}

.rating-stars i {
    color: #4CAF50;
    margin-right: 4px;
}

.review-count {
    color: var(--gray-color);
    font-size: 14px;
    margin-left: 3px;
}

.package-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--dark-color);
    line-height: 1.3;
}

.package-amenities {
    margin-bottom: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-color);
}

.amenity-item i {
    color: #4CAF50;
    margin-right: 8px;
    font-size: 14px;
}

.package-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 14px;
    color: var(--gray-color);
    text-decoration: line-through;
}

.discount {
    font-size: 12px;
    color: var(--success-color);
    font-weight: 500;
}

.package-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.call-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* .call-btn:hover {
    background-color: #218838;
} */

.request-callback-btn {
    flex: 1;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.request-callback-btn:hover {
    background-color: #128C7E;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-title {
        font-size: 24px;
    }
    
    .package-content {
        padding: 15px;
    }
    
    .package-content h3 {
        font-size: 16px;
    }
}