:root {
    /* Color Palette */
    --primary-blue: #0056b3;
    /* Deep reliable blue */
    --secondary-purple: #6f42c1;
    /* Vibrant purple */
    --accent-yellow: #ffc107;
    /* Energetic yellow */
    --base-white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-text: #333333;
    --gradient-bg: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
}

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

body {
    font-family: 'Outfit', sans-serif;
    /* Modern, clean font */
    color: var(--dark-text);
    background-color: var(--base-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: var(--dark-text);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.3);
}

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

.btn-secondary:hover {
    background: var(--base-white);
    color: var(--primary-blue);
}

/* Hide reCAPTCHA badge (disclaimer is in footer) */
.grecaptcha-badge {
    visibility: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    /* Reduced padding slightly */
    height: 80px;
    /* Fixed height for better alignment */
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.logo-text span {
    color: var(--secondary-purple);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    /* Reduced gap to fit pills */
    list-style: none;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-text);
    padding: 8px 16px;
    /* Pill shape padding */
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(111, 66, 193, 0.08);
    /* Light purple hover */
    color: var(--secondary-purple);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    margin-left: 2px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--base-white);
    min-width: 220px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Arrow indicator */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--base-white);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    color: var(--dark-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(111, 66, 193, 0.05);
    color: var(--primary-blue);
    transform: translateX(5px);
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
    color: var(--secondary-purple);
    font-size: 1rem;
}

/* Specific Style for Promo Link */
.promo-link {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.promo-link:hover {
    background-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.2);
}

/* Ensure CTA button matches height */
nav .btn-primary {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Hamburger Menu Button (Mobile Only) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background: var(--secondary-purple);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1050;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Sidebar - Redesigned (Full Height Drawer) */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    /* Occupy full viewport height */
    background: #ffffff;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    /* Stack children vertically */
    overflow-y: auto;
}

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

/* 1. Header */
.mobile-menu-header {
    flex-shrink: 0;
    /* Don't shrink */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: var(--gradient-bg);
    color: white;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.2rem;
}

.mobile-menu-logo img {
    height: 35px;
    width: auto;
}

.mobile-menu-logo span {
    color: white;
}

.mobile-menu-logo span span {
    color: var(--accent-yellow);
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

/* 2. Navigation List (Flex Grow to fill space) */
.mobile-nav {
    flex-grow: 1;
    /* Pushes footer down */
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    margin: 0;
    gap: 0;
    /* No gaps between items */
    overflow-y: auto;
    /* Allow scrolling if list is long */
}

.mobile-nav-group {
    width: 100%;
    padding-bottom: 5px;
}

.mobile-group-title {
    display: none;
    /* Hide old title style */
}

/* Accordion Styles */
.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    font-weight: 500;

    /* Button Resets */
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: inherit;
    text-align: left;
    margin: 0;
    border-radius: 0;
}

.accordion-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-toggle .chevron {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: #999;
    opacity: 1;
    /* Reset opacity override */
}

.accordion-toggle.active .chevron {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fafafa;
}

.accordion-content.open {
    /* Max height set via JS or large enough value */
    max-height: 500px;
    border-bottom: 1px solid #f0f0f0;
}

.sub-link {
    padding-left: 40px;
    /* Moderate indentation */
    font-size: 0.9rem;
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
}

.sub-link:hover {
    background: #f0f0f0;
}

.mobile-nav-link {
    width: 100%;
    padding: 14px 24px;
    /* Comfortable touch target */
    color: var(--dark-text);
    font-weight: 500;
    background: transparent;
    border: none;
    border-bottom: 1px solid #f5f5f5;
    /* Subtle separation */
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: background 0.2s, color 0.2s;
}

.mobile-nav-link i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
    opacity: 0.8;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: #f8f9fa;
    color: var(--primary-blue);
}

.mobile-nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Remove complex animations for cleaner feel */
.mobile-nav-link::before {
    display: none;
}

/* Special style for CTA (Contacto) */
.mobile-nav-cta {
    margin-top: auto;
    /* Push to bottom of nav section if needed */
    background: rgba(111, 66, 193, 0.05);
    /* Very light purple */
    color: var(--primary-blue);
    font-weight: 600;
    border-bottom: none;
}

.mobile-menu-separator {
    display: none;
    /* Separator lines handled by border-bottom */
}

/* 3. Footer (Fixed at bottom of flex container) */
.mobile-menu-footer {
    flex-shrink: 0;
    padding: 1.5rem;
    padding-bottom: 4rem;
    /* Extra padding to prevent cutout on some mobile browsers */
    background: #fcfcfc;
    border-top: 1px solid #eee;
    text-align: center;
}

.mobile-footer-item {
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}

.mobile-footer-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 0.5rem;
    border: none;
    padding: 0;
}

.mobile-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eee;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.mobile-footer-social a:hover {
    background: var(--gradient-bg);
    color: white;
    transform: translateY(-3px);
}

/* Body scroll lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-bg);
    color: var(--base-white);
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1672851612972-651dd2bb6363?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    opacity: 0.2;
    /* Blend image with gradient */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 450px;
    /* Control max width */
    margin: 0 auto;
}

.hero-buttons .btn {
    flex: 1;
    /* Force equal width */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 10px;
    /* Uniform vertical padding */
    white-space: nowrap;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.founders-row {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.founder-card {
    background: var(--base-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 0 1 300px;
    text-align: center;
    transition: transform 0.3s;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-card h4 {
    color: var(--secondary-purple);
    margin-bottom: 0.5rem;
}

/* Enhanced About Section Styles */
.about-slogan {
    display: block;
    color: var(--accent-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.about-highlight {
    background: rgba(0, 86, 179, 0.05);
    /* Light blue tint */
    border-left: 4px solid var(--primary-blue);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    font-weight: 500;
    color: var(--primary-blue);
}

.about-features {
    list-style: none;
    margin: 1.5rem 0;
}

.about-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.about-features i {
    color: var(--secondary-purple);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.about-closing {
    font-weight: 700;
    margin-top: 1.5rem;
    color: var(--dark-text);
}

/* Mission & Vision Restructure */
.mv-container {
    margin-top: 5rem;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--base-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.mission-card::before {
    background: var(--accent-yellow);
}

.vision-card::before {
    background: var(--secondary-purple);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    background: var(--light-gray);
}

.mission-card .mv-icon {
    color: var(--accent-yellow);
    background: rgba(255, 193, 7, 0.1);
}

.vision-card .mv-icon {
    color: var(--secondary-purple);
    background: rgba(111, 66, 193, 0.1);
}

.mv-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: #555;
    font-style: italic;
}

/* Regional Plans Section */
.regional-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: block;
    color: var(--accent-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.regional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.regional-card {
    background: var(--base-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.regional-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.regional-image-wrapper {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.regional-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.regional-card:hover .regional-image-wrapper img {
    transform: scale(1.1);
}

.regional-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 86, 179, 0.2) 100%);
}

.regional-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.regional-icon {
    position: absolute;
    top: -25px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--base-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.regional-content h3 {
    margin-top: 1rem;
    color: var(--dark-text);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.regional-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.regional-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.regional-list li i {
    color: var(--secondary-purple);
    font-size: 0.8rem;
}

.btn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% + 40px);
    padding: 16px 20px;
    margin: 0 -20px -20px -20px;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    border: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    transition: left 0.5s;
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.5);
}

.btn-link:hover::before {
    left: 100%;
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-blue);
}


/* Destinations Section */
.destinations {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

/* Carousel Styling */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destinations-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 1rem;
    /* Extra top/bottom padding for shadows */
    width: 100%;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.destinations-carousel::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.carousel-btn {
    background: var(--base-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: transform 0.2s, background-color 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    background-color: var(--light-gray);
}

.carousel-btn.prev-btn {
    margin-right: -1rem;
}

.carousel-btn.next-btn {
    margin-left: -1rem;
}

.destination-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--base-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    min-width: 320px;
    /* Fixed width for carousel items */
    scroll-snap-align: center;
}


.destination-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--base-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    min-width: 320px;
    /* Fixed width for carousel items on desktop */
    scroll-snap-align: center;
}

@media (max-width: 768px) {
    .destination-card {
        min-width: 100%;
        /* Full width for one-by-one feel */
        margin: 0;
    }

    .destinations-carousel {
        padding: 2rem 0;
        /* Remove extra side padding on mobile */
        gap: 1rem;
        /* Smaller gap */
    }
}

.destination-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--secondary-purple);
    margin-bottom: 0.5rem;
}

.price {
    color: var(--accent-yellow);
    font-weight: 800;
    font-size: 1.2rem;
    display: block;
    margin-top: 1rem;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
    /* Legibility on white */
    color: #d4a000;
    /* Darker yellow for text contrast */
}

/* Tabs */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.tab-buttons {
    background: var(--light-gray);
    padding: 5px;
    border-radius: 50px;
    display: flex;
    gap: 10px;
}

.tab-btn {
    padding: 10px 30px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-blue);
    color: var(--base-white);
    box-shadow: 0 4px 10px rgba(0, 86, 179, 0.3);
}

/* Transport Badges */
.card-image {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
}

.transport-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.transport-badges i {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Budget Section */
.budget-section {
    padding: 5rem 0;
    background: var(--secondary-purple);
    color: var(--base-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.budget-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.budget-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.budget-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.budget-form input {
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    width: 60%;
    font-size: 1rem;
}

.budget-result {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-gray);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--base-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-yellow);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gradient-bg);
    color: var(--base-white);
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    /* Allow wrapping on mobile */
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
        /* Less padding on mobile */
    }

    .captcha-group {
        justify-content: center;
        /* Center items when wrapped */
    }

    .captcha-group input {
        width: 100% !important;
        /* Full width input on mobile */
        flex: 100%;
    }
}

/* Contact Wrapper - 2 Column Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info Sidebar */
.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.contact-info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--secondary-purple);
    margin-bottom: 5px;
}

.contact-info-item strong {
    display: block;
    color: var(--dark-text);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #2ee673 0%, #15a085 100%);
}

/* Enhanced Form */
.enhanced-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.required {
    color: #e74c3c;
}

.optional {
    color: #95a5a6;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Input Wrapper with Icons */
.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.input-wrapper i {
    color: var(--secondary-purple);
    font-size: 1.3rem;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 100px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

/* Validation States */
.input-wrapper.error input,
.input-wrapper.error select,
.input-wrapper.error textarea {
    border-color: #e74c3c;
}

.input-wrapper.success input,
.input-wrapper.success select,
.input-wrapper.success textarea {
    border-color: #27ae60;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-purple) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(111, 66, 193, 0.5);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    animation: successSlideIn 0.5s ease;
}

.success-message.show {
    display: block;
}

.success-message i {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1rem;
    animation: successPulse 0.6s ease;
}

.success-message h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #666;
}

@keyframes successSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-card {
        position: relative;
        top: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Legacy form styles for compatibility */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
}

/* Footer */
footer {
    background: var(--dark-text);
    color: var(--base-white);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {

    /* Show hamburger button on mobile */
    .hamburger-btn {
        display: flex;
    }

    /* Hide desktop nav links on mobile */
    .nav-links {
        display: none;
    }

    /* Adjust nav layout for mobile */
    nav {
        justify-content: space-between;
    }

    /* Smaller header for mobile */
    header {
        padding: 0.5rem 0;
    }

    .logo-image {
        height: 35px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    /* Compact reserve button for mobile */
    nav .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    /* Larger destination cards for mobile */
    .card-image {
        height: 350px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

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

/* ========================================
   PROMOTIONS SECTION - MODERN GRID LAYOUT
   ======================================== */

.promotions-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

/* Grid Layout */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Promo Card */
.promo-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.promo-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.promo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.promo-card:hover .promo-card-image img {
    transform: scale(1.05);
}

/* Badges */
.promo-badge-new,
.promo-badge-hot,
.promo-badge-special {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.promo-badge-new {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
}

.promo-badge-hot {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.promo-badge-special {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

/* Card Content */
.promo-card-content {
    padding: 1.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.promo-card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.promo-tagline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.25rem;
}

/* Price Display */
.promo-price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.price-detail {
    font-size: 0.9rem;
    color: #666;
}

/* Compact Options */
.promo-options-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.option-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-purple);
}

.option-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
}

.option-price-compact {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.option-dates {
    font-size: 0.75rem;
    color: #888;
}

/* Details */
.promo-details-compact {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.promo-details-compact span {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-details-compact i {
    color: var(--secondary-purple);
    font-size: 0.9rem;
}

/* Includes */
.promo-includes-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.promo-includes-compact span {
    font-size: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: #e8f5e9;
    border-radius: 12px;
}

.promo-includes-compact i {
    color: #27ae60;
    font-size: 0.85rem;
}

/* CTA Button */
.promo-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin-top: auto;
}

.promo-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #2ee673 0%, #15a085 100%);
}

.promo-cta-btn i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .promos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .promotions-section {
        padding: 4rem 0;
    }

    .promos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .promo-card-image {
        height: 200px;
    }

    .promo-card-content {
        padding: 1.5rem;
    }

    .promo-card-content h3 {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .option-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Remove old promo styles */
.testimonials-section {
    padding: 5rem 0;
    background: var(--base-white);
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.testimonials-track-container {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 2rem 0;
    /* Space for shadow */
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.client-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: -65px auto 1.5rem;
    border: 5px solid var(--base-white);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
}

.client-info p {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--accent-yellow);
    font-size: 0.9rem;
}

.testi-btn {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    display: flex;
    /* Center icon */
    align-items: center;
    /* Center icon */
    justify-content: center;
    /* Center icon */
}

.testi-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 10px;
}

.testi-indicator {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.testi-indicator.current-slide {
    background: var(--primary-blue);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--base-white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--secondary-purple);
}

.faq-question.active i {
    transform: rotate(45deg);
    color: #e74c3c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafafa;
}

.faq-answer p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-answer.show {
    padding-bottom: 1.5rem;
    /* Only add padding when shown to avoid jumpiness */
}

@media (max-width: 768px) {
    .testi-btn {
        display: none;
        /* Hide arrows on mobile, use dots/swipe */
    }

    .testimonials-wrapper {
        padding: 0 1rem;
    }
}

/* Urgency Countdown Styles */
.countdown-container {
    margin: 1.5rem 0;
    text-align: center;
}

.countdown-label {
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    background: white;
    padding: 10px;
    border-radius: 8px;
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.time-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.time-unit {
    font-size: 0.7rem;
    color: #777;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Wishlist / Favorites Styles */
.destination-card {
    position: relative;
    /* Ensure heart is positioned relative to card */
}

.heart-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ccc;
    transition: all 0.3s ease;
}

.heart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.heart-btn.active {
    color: #e74c3c;
}

.heart-btn.active i {
    font-weight: 900;
    /* Solid heart */
    animation: heartPop 0.4s ease;
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* Favorites Tab Grid */
.favorites-grid {
    display: flex;
    /* Or grid */
    flex-wrap: wrap;
    /* Similar to carousel but wrapped for clarity in favorites tab */
    gap: 2rem;
    justify-content: center;
}

.empty-favorites {
    text-align: center;
    padding: 3rem;
    color: #aaa;
    width: 100%;
}

.empty-favorites i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-favorites p {
    font-size: 1.1rem;
}

/* ========================================
   CURRENCY CONVERTER STYLES
   ======================================== */

/* Floating Action Button */
.converter-fab {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6f42c1 0%, #0056b3 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(111, 66, 193, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    transition: all 0.3s ease;
    animation: fabPulse 2s infinite;
}

.converter-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(111, 66, 193, 0.6);
    animation: none;
}

.converter-fab:active {
    transform: scale(0.95);
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(111, 66, 193, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(111, 66, 193, 0.7);
    }
}

/* Tooltip */
.fab-tooltip {
    position: absolute;
    left: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.converter-fab:hover .fab-tooltip {
    opacity: 1;
}

.fab-tooltip::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.8);
}

/* Modal Overlay */
.converter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.converter-modal.active {
    display: flex;
}

/* Modal Content */
.converter-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Header */
.converter-header {
    background: var(--gradient-bg);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.converter-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.converter-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.converter-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Modal Body */
.converter-body {
    padding: 2rem;
}

.converter-input-group {
    margin-bottom: 1.5rem;
}

.converter-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 15px;
    font-size: 1.2rem;
    color: #888;
    font-weight: 600;
}

.converter-input-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.converter-input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.converter-input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.converter-input-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.converter-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Result Display */
.converter-result {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.converter-result:empty {
    display: none;
}

.converter-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.converter-disclaimer i {
    margin-right: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .converter-fab {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .fab-tooltip {
        display: none;
        /* Hide tooltip on mobile */
    }

    .converter-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .converter-body {
        padding: 1.5rem;
    }
}

/* ========================================
   MOBILE OPTIMIZATIONS (Touch Devices < 768px)
   ======================================== */
@media (max-width: 768px) and (pointer: coarse) {

    /* Header Compact Mode */
    .logo-text {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 35px;
    }

    .btn-primary {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    header {
        padding: 0.5rem 0;
        height: 70px;
    }

    /* Promo Section Compact */
    .promo-container {
        padding: 1rem;
    }

    .promo-content h3 {
        font-size: 1.6rem;
    }

    .promo-price .amount {
        font-size: 2.2rem;
    }

    .promo-timer {
        gap: 0.5rem;
    }

    .promo-timer span {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-width: 55px;
    }

    .promo-details {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 0.95rem;
    }

    .promo-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
    }

    /* Converter FAB */
    .converter-fab {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 15px;
        left: 15px;
    }

    /* General Mobile Fixes */
    .container {
        padding: 0 1rem;
    }
}

/* ========================================
   DESKTOP MODE ON MOBILE (Wide Viewport)
   ======================================== */
@media (min-width: 769px) {

    /* Force desktop header layout */
    .hamburger-btn {
        display: none !important;
    }

    .nav-links {
        display: flex !important;
        gap: 0.5rem;
    }

    /* Optimize Nav for "compact desktop" viewports (like mobile desktop mode) */
    @media (max-width: 1100px) {
        .logo-text {
            font-size: 1.2rem;
        }

        .nav-link {
            padding: 6px 10px;
            font-size: 0.85rem;
        }

        nav .btn-primary {
            padding: 8px 16px;
            font-size: 0.85rem;
        }

        .container {
            padding: 0 1rem;
        }
    }

    nav .btn-primary {
        display: inline-block !important;
    }

    /* Ensure hero section doesn't stretch */
    .hero {
        height: 100vh;
        min-height: 600px;
        max-height: 900px;
    }

    /* Proper header sizing */
    header {
        height: 80px;
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 45px;
    }
}

/* =========================================
   BLOG / NEWS SECTION
   ========================================= */
.blog-section {
    padding: 5rem 0;
    background: var(--base-white);
}

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

.news-card {
    background: var(--base-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--dark-text);
}

.news-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-link {
    font-weight: 600;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
}

.news-link:hover {
    gap: 10px;
    color: var(--secondary-purple);
}

.loading-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #888;
    font-size: 1.2rem;
}

/* =========================================
   VISUAL IMPROVEMENTS (3D Effects & Micro-interactions)
   ========================================= */

/* 1. Enhanced Destination Cards */
.destination-card {
    /* Enable 3D space */
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.destination-card:hover {
    /* Lift and slight rotation */
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.card-image .transport-badges {
    transition: transform 0.3s ease;
}

.destination-card:hover .transport-badges {
    transform: translateY(-5px) scale(1.05);
}

/* 2. Button Micro-interactions */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }

    20% {
        transform: scale(25, 25);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

/* 3. Smooth Scale on Regional Cards */
.regional-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.regional-card:hover {
    transform: scale(1.02) translateY(-5px);
}

/* FORCE TAWK.TO VISIBILITY */
div[class*='tawk-'],
iframe[title*='chat'] {
    z-index: 2147483647 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Promotions Carousel Styles */
.promo-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    /* Optimized for vertical cards */
    margin: 0 auto;
    padding: 0 60px;
    /* More space for nav buttons */
}

.promo-carousel {
    display: flex;
    overflow-x: hidden;
    /* Hide overflow */
    scroll-behavior: smooth;
    gap: 0;
    /* No gap between slides handled by width */
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.promo-slide {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
}

.promo-slide .promo-container {
    margin: 0;
    /* Reset margins from original styling */
    box-shadow: none;
    /* Remove shadow from inner container as wrapper has it */
    border-radius: 0;
    height: 100%;
    /* Full height */
}

.promo-btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--primary-blue);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-btn-nav:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-promo {
    left: -10px;
}

.next-promo {
    right: -10px;
}

@media (max-width: 768px) {
    .promo-carousel-wrapper {
        padding: 0;
    }

    .promo-btn-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-promo {
        left: 10px;
        background: rgba(255, 255, 255, 0.9);
    }

    .next-promo {
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
    }
}

/* ========================================
   PROMO LIGHTBOX MODAL
   ======================================== */

.promo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.promo-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.promo-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    /* Prevent content scroll, scroll info only */
    z-index: 10001;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.promo-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10002;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-modal-close:hover {
    background: #e74c3c;
    transform: rotate(90deg);
}

.promo-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    height: 100%;
}

.promo-modal-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 20px 0 0 20px;
    height: 100%;
    overflow: hidden;
    /* No scroll here */
}

.promo-modal-image img {
    width: 100%;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    padding: 10px;
    /* Minimal padding for breathing room */
}

.promo-modal-info {
    padding: 3rem;
    overflow-y: auto;
    max-height: 90vh;
}

/* Modal Content Styles */
.promo-modal-info h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.promo-modal-info .modal-tagline {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.promo-modal-info .modal-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.promo-modal-info .modal-price-detail {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.promo-modal-info .modal-section {
    margin-bottom: 2rem;
}

.promo-modal-info .modal-section h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.promo-modal-info .modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.promo-modal-info .modal-option {
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-purple);
}

.promo-modal-info .modal-option h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.promo-modal-info .modal-option .option-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.promo-modal-info .modal-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.promo-modal-info .modal-includes span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #e8f5e9;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
}

.promo-modal-info .modal-includes i {
    color: #27ae60;
}

.promo-modal-info .modal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-top: 1rem;
}

.promo-modal-info .modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.promo-modal-info .modal-cta i {
    font-size: 1.3rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .promo-modal-content {
        max-height: 95vh;
        width: 95%;
        border-radius: 15px;
    }

    .promo-modal-body {
        grid-template-columns: 1fr;
        height: auto;
        display: block;
        /* Switch from grid to block for better flow on mobile */
    }

    .promo-modal-image {
        border-radius: 15px 15px 0 0;
        height: 350px;
        /* Specific height for mobile posters */
        padding: 0;
    }

    .promo-modal-image img {
        padding: 0;
        max-height: 100%;
        border-radius: 15px 15px 0 0;
    }

    .promo-modal-info {
        padding: 1.5rem;
        max-height: none;
        /* Let the content flow */
        overflow-y: visible;
    }

    .promo-modal-info h2 {
        font-size: 1.5rem;
    }

    .promo-modal-info .modal-price {
        font-size: 1.8rem;
    }

    .promo-modal-info .modal-tagline {
        margin-bottom: 1.5rem;
    }

    .promo-modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.5);
    }
}

/* ========================================
   FULL IMAGE VIEW MODAL
   ======================================== */

.full-image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.full-image-modal.active {
    display: flex;
}

.full-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.full-image-modal img {
    position: relative;
    max-width: 95%;
    max-height: 95vh;
    object-fit: contain;
    z-index: 20001;
    border-radius: 8px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    cursor: zoom-out;
}

.full-image-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.full-image-close:hover {
    background: rgba(231, 76, 60, 0.8);
    transform: rotate(90deg);
}

.promo-modal-image img {
    cursor: zoom-in;
}