:root {
    /* Weros Diving Custom Palette - Navy & Cream from Logo */
    --primary-color: #D4A373; /* Golden Sand for accents/buttons (llama la atención) */
    --primary-dark: #B58356;
    --secondary-color: #14354D; /* Logo Dark Navy */
    --text-dark: #14354D; /* Logo Dark Navy */
    --text-light: #F5EFEB; /* Logo Cream */
    --bg-light: #F5EFEB; /* Logo Cream */
    --white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --glass-bg: rgba(20, 53, 77, 0.4);
    --glass-border: rgba(245, 239, 235, 0.2);
    --shadow-sm: 0 4px 6px rgba(20, 53, 77, 0.1);
    --shadow-md: 0 10px 25px rgba(20, 53, 77, 0.15);
    --shadow-lg: 0 20px 40px rgba(20, 53, 77, 0.2);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light); /* Matches the cream background of the logo */
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.grid {
    display: grid;
    gap: 2rem;
}

.transition-all {
    transition: var(--transition);
}

/* Typography Base */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--primary-color);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.tour-content .divider {
    margin: 0 0 1.5rem 0;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white); /* White text on Gold looks better than Navy */
    box-shadow: 0 4px 15px rgba(212, 163, 115, 0.4);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.6);
}

.btn-secondary {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(20, 53, 77, 0.95); /* Adjusted to match new Navy */
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
}

.logo i {
    color: var(--primary-color);
    display: none; /* Hide icon when image is used */
}

.logo img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--white);
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('assets/hero_bg.jpg'); /* We will generate this */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,27,61,0.85) 0%, rgba(11,27,61,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Recommended Cards */
.cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.card-body p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-link {
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.card-link:hover {
    gap: 0.8rem;
    color: var(--secondary-color);
}

/* Categories Area */
.categories-grid {
    grid-template-columns: repeat(3, 1fr);
}

.category-item {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.cat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.category-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.category-item p {
    color: #666;
    margin-bottom: 2rem;
}

/* Why Choose Us Feature */
.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-stack {
    position: relative;
}

.img-main {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.glass-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.glass-card i {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.glass-card h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.glass-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.feature-list h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-list p {
    color: #666;
}

/* Call to Action */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background-image: url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11,27,61,0.85);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0 0 0;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.padi-badge {
    display: block;
    max-width: 120px;
    height: auto;
    margin-top: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: var(--transition);
}

.padi-badge:hover {
    transform: scale(1.05);
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #aaa;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 0.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.reviewer-info strong {
    display: block;
    color: var(--secondary-color);
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: #888;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

/* Responsiveness */
@media (max-width: 992px) {
    .feature-container {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }
    
    .glass-card {
        right: 10px;
        bottom: -20px;
        padding: 1rem;
    }
}

/* Tour Page Specific Styles */
.tour-header {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

.text-center {
    text-align: center;
}

.tour-title {
    font-size: 3.5rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.tour-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    background: rgba(0,0,0,0.4);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.tour-grid {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.detail-block {
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
}

.detail-block:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--secondary-color);
}

.detail-block h3 i {
    color: var(--primary-color);
}

.detail-block ul {
    list-style-type: none;
}

.detail-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: #555;
}

.detail-block ul li::before {
    content: '•';
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.detail-block p {
    color: #555;
}

.booking-card {
    background: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.05);
}

.booking-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.booking-card .price {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.booking-card .price strong {
    font-size: 2rem;
    color: var(--secondary-color);
    display: block;
    margin-top: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.booking-hr {
    margin: 2rem 0;
    border: 0;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

.booking-card h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.help-contact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #555;
    font-weight: 500;
}

.help-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    .booking-card {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .tour-title {
        font-size: 2.5rem;
    }
    .tour-subtitle {
        font-size: 0.9rem;
    }
}

/* Cenote Page Specific Styles */
.cenotes-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.cenote-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cenote-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(212, 163, 115, 0.3);
}

.cenote-header {
    background: var(--secondary-color);
    padding: 1.5rem;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--primary-color);
}

.cenote-header h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.level-badge {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.level-badge.easy {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.level-badge.advanced {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.cenote-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cenote-body p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.cenote-stats {
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1rem;
}

.cenote-stats li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cenote-stats i {
    color: var(--primary-color);
}

/* Courses Tabs System */
.tabs-container {
    margin-bottom: 3rem;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: transparent;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1rem;
    color: #888;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border-radius: 10px;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--secondary-color);
    background: rgba(212, 163, 115, 0.1);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

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

@media (max-width: 768px) {
    .tabs-nav {
        gap: 0.5rem;
    }
    .tab-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        flex: 1 1 auto;
        text-align: center;
    }
}

/* Lead Capture Modal */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lead-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lead-modal-content {
    background: var(--dark-blue);
    width: 90%;
    max-width: 450px;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lead-modal-overlay.active .lead-modal-content {
    transform: scale(1);
}

.lead-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.lead-modal-close:hover {
    color: var(--primary-color);
}

.lead-modal-content h3 {
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.lead-modal-content p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.lead-form .form-group {
    margin-bottom: 1.5rem;
}

.lead-form label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.lead-form input, 
.lead-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.lead-form input:focus, 
.lead-form select:focus {
    border-color: var(--primary-color);
}

.lead-form select option {
    background-color: var(--dark-white); /* Use a standard light color for compatibility */
    color: #1a1a1a; /* Dark text for light background dropdowns */
}

/* Specific styling for some mobile/browser behaviors */
.lead-form select {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.lead-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.lead-submit-btn:hover {
    background: #c5a02c;
    transform: translateY(-2px);
}

/* Dual Booking Button Options */
.booking-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
    width: 100%;
}

.booking-options .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.booking-options.row {
    flex-direction: row;
}

@media (max-width: 576px) {
    .booking-options.row {
        flex-direction: column;
    }
}

/* --- Cookie Compliance (GDPR/CCPA) --- */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
    z-index: 9999;
    padding: 1.5rem 0;
    transition: bottom 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}

.cookie-text a {
    color: #0077b6;
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
}

.btn-cookie {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.btn-accept {
    background: #0077b6;
    color: white;
}

.btn-accept:hover {
    background: #0096c7;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: #64748b;
    border-color: #e2e8f0;
}

.btn-reject:hover {
    background: #f8fafc;
}

.btn-manage {
    background: transparent;
    color: #0077b6;
    font-size: 0.85rem;
    text-decoration: underline;
    border: none;
    cursor: pointer;
}

/* Cookie Preferences Modal */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.modal-header {
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: #64748b;
}

.preference-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.preference-info {
    max-width: 80%;
}

.preference-info h4 {
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.preference-info p {
    font-size: 0.85rem;
    color: #64748b;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: '';
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0077b6;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    background-color: #f1f5f9;
    cursor: not-allowed;
}

.modal-footer {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .cookie-btns {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    .btn-cookie {
        flex: 1;
        min-width: 120px;
    }
}


/* Language Switcher Styles */
.lang-switcher {
    margin-left: 1rem;
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.lang-switcher a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.lang-switcher a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .lang-switcher {
        margin: 1.5rem 0;
        justify-content: center;
    }
}

