/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Variables */
:root {
    --primary: #0E3D59;    /* deep blue */
    --primary-light: rgba(14, 61, 89, 0.95);
    --secondary: #58A4B0;  /* cool teal */
    --accent: #FFC857;     /* warm saffron */
    --accent-dark: #E6B54C; /* darker saffron for hover states */
    --background: #F1FAEE; /* frosty near-white */
    --text: #1D1D1D;      /* dark charcoal */
    --white: #ffffff;
    --gradient-overlay: linear-gradient(to bottom, rgba(14, 61, 89, 0.7), rgba(14, 61, 89, 0.5));
    --glass-effect: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease-in-out;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --container-padding: 20px;
    --section-spacing: 6rem;
    --card-border-radius: 16px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive container widths */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    html {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    html {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    html {
        font-size: 13px;
    }
}

/* Navigation */
.navbar {
    background: rgba(14, 61, 89, 0.85);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--glass-effect);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(14, 61, 89, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    background-color: var(--accent);
}

/* Hero Section */
.hero {
    height: 120vh;
    background: var(--gradient-overlay),
                url('./landingPng.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-top: -80px;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 1;
}

.hero-content {
    width: 100%;
    padding: 3rem;
    animation: fadeInUp 1.2s ease-out;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Destinations Section */
.destinations-section {
    padding: var(--section-spacing) 0;
    background: var(--white);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.destination-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.destination-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.destination-overlay p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.destination-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.destination-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-info i {
    color: var(--accent);
}

/* Destination Features */
.destination-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.destination-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.9rem;
}

.destination-features li i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5580 100%);
    color: var(--white);
    padding: 4.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Footer Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.9;
}

.footer-section ul li a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateX(5px);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    opacity: 0.9;
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px);
    opacity: 1;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    border: 2px solid #25D366;
}

.whatsapp-button:hover {
    background-color: transparent;
    color: #25D366;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    margin-right: 8px;
    font-size: 20px;
}

/* Currency Selector */
.currency-selector {
    position: fixed;
    top: 100px;
    right: 10px;
    width: 120px;
    background-color: #ffc65c;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
}

.currency-selector:hover {
    border-radius: 8px 8px 0 0;
    width: 130px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.currency-selector .header {
    padding: 10px 15px;
    background-color: #ffc65c;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.currency-selector .header:hover {
    padding: 12px 15px;
    justify-content: space-between;
}

.currency-selector .header::after {
    content: "▼";
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.currency-selector:hover .header::after {
    transform: rotate(180deg);
}

.currency-selector .currency-options {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.currency-selector:hover .currency-options {
    max-height: 200px;
    opacity: 1;
}

.currency-selector .currency-option {
    padding: 10px 15px;
    cursor: pointer;
    background-color: #f5f5f5;
    transition: all 0.2s ease;
}

.currency-selector .currency-option:hover {
    background-color: #e0e0e0;
    padding-left: 20px;
}

.currency-selector .currency-option.touch-active {
    background-color: #e0e0e0;
    padding-left: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        padding: 0;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        max-width: 100%;
    }
    
    .region-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .region-feature {
        padding: 1.5rem;
    }
    
    .destination-details-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-sidebar {
        position: static;
        width: 100%;
        margin-top: 2rem;
    }
    
    .destination-gallery {
        grid-template-columns: 1fr;
    }
    
    .destination-gallery-item {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .whatsapp-button {
        left: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .currency-selector {
        top: 100px;
        right: 10px;
        width: 100px;
    }
    
    .currency-selector:hover {
        width: 110px;
    }
    
    .currency-selector .header {
        padding: 8px 12px;
    }
    
    .currency-selector .currency-option {
        padding: 8px 12px;
    }
    
    .currency-selector .currency-option:hover {
        padding-left: 15px;
    }
    
    .currency-options {
        width: 110px; /* Match the hover width */
    }
    
    .currency-selector.touch-active {
        width: 110px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .destination-gallery-item {
        height: 200px;
    }
    
    .region-feature {
        padding: 1.2rem 1rem;
    }
    
    .region-feature i {
        font-size: 2rem;
    }
    
    .destination-info {
        padding: 1.5rem 1rem;
    }

    .whatsapp-button {
        left: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Button Styles */
.cta-button, 
.tour-button,
.submit-button,
.search-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    box-shadow: var(--shadow);
}

.cta-button:hover,
.tour-button:hover,
.submit-button:hover,
.search-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Custom Modal/Popup Styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.custom-modal-content {
    background: linear-gradient(135deg, var(--white) 0%, var(--background) 100%);
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-modal-heading {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.custom-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.custom-close:hover {
    color: var(--accent);
}

.custom-rounded-input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.custom-rounded-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(88, 164, 176, 0.2);
}

.custom-rounded-button {
    width: 100%;
    padding: 12px 24px;
    margin-top: 1rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.custom-rounded-button:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.gallery-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:nth-child(3n+1) {
    grid-row: span 1;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.newsletter::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.newsletter-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.newsletter-form input:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    outline: none;
}

.submit-button {
    padding: 1.2rem 2rem;
    background: var(--accent);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Regions Section */
.why-choose-us {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white), var(--background));
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 5px solid var(--accent);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.feature-card:hover i {
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: var(--transition);
}

.feature-card:hover h3 {
    color: var(--white);
}

.feature-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover p {
    color: var(--white);
}

.region-features {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.5rem;
    text-align: left;
}

.region-features li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.region-features li:last-child {
    border-bottom: none;
}

.region-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    transition: all 0.3s ease;
}

.feature-card:hover .region-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateX(5px);
}

.feature-card:hover .region-features li::before {
    color: var(--white);
}

/* Activities Section */
.seasonal-highlights {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.season-card {
    background: var(--background);
    border-radius: var(--card-border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--accent);
}

.season-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.season-card h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.season-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.season-card:hover h3::after {
    width: 100%;
}

.season-card ul {
    list-style: none;
    padding: 0;
}

.season-card ul li {
    color: var(--text);
    margin-bottom: 1rem;
    padding-left: 30px;
    position: relative;
    transition: var(--transition);
}

.season-card ul li:before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition);
}

.season-card:hover ul li:before {
    left: 5px;
    color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .tour-grid, 
    .features-grid,
    .season-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .tour-grid, 
    .features-grid,
    .season-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        grid-auto-rows: 180px;
    }
    
    .gallery-item:nth-child(3n+1) {
        grid-row: span 1;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .submit-button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
    }
}

/* Section Title */
.section-title {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Add these animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhance the tour button */
.tour-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    font-size: 0.9rem;
    text-align: center;
}

.tour-button:hover {
    background-color: transparent;
    color: var(--accent);
}

.feature-card .tour-button {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.feature-card:hover .tour-button {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Enhance the CTA button */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Remove floating decorations */
.hero::after, .hero::before {
    display: none;
}

/* Popular Destinations Section */
.tours {
    padding: 5rem 0;
    background-color: var(--background);
    position: relative;
}

.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
    width: 100%;
}

.tour-card {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    transition: transform 0.3s ease;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
}

.tour-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.tour-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.tour-content {
    padding: 1.5rem;
    background: var(--white);
    position: relative;
}

.tour-content h3 {
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.tour-content p {
    color: var(--text);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.6;
} 


.season-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
  }
  

  
.logo-container {
    display: flex;
    align-items: center;
  }
  
  .logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
  }
  

  
.payment-icons {
    display: flex;
    color: #ffc857;
    justify-content: center;
    gap: 15px;
  }
  
  .payment-icons img {
    width: 60px;
    height: 40px;
  }

  .zyberly-logo {
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  
  }
  