/* Global Styles */
:root {
    --primary-color: #0054a6;
    /* Logo Blue */
    --primary-dark: #003d7a;
    --secondary-color: #00a3e0;
    /* Logo Cyan */
    --accent-color: #f7b500;
    /* Gold */
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--secondary-color);
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 74, 173, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    /* Dark background */
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-item i {
    color: #00AEEF;
    /* Cyan icon matches theme */
    font-size: 1rem;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

/* Global Section Tag (Innovation) */
.section-tag {
    display: block;
    color: #00AEEF;
    /* Cyan Blue */
    font-size: 0.9rem;
    font-weight: 800;
    /* Extra Bold */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-list {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    font-size: 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
}

.search-btn:hover {
    color: var(--primary-color);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0078d4;
    /* WhatsApp brand color or Site Primary */
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
    background: linear-gradient(135deg, #00a8cc 0%, #004aad 100%);
    /* Blue gradient */
}

.whatsapp-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 10px rgba(0, 74, 173, 0.3);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.75rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: 0;
    /* Align left */
}

.hero-subtitle {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-tag {
    display: block;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Popular Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.location {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location i {
    color: var(--secondary-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.rating i {
    color: var(--accent-color);
}

.btn-link {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

/* Services */
.bg-light {
    background-color: #f4f7f6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 168, 204, 0.1) 0%, rgba(0, 74, 173, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: rotateY(360deg);
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    background-color: #f9f9f9;
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.features-list {
    margin: 30px 0 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.features-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA */
.cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}


/* Premium Card Styling */
.premium-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    height: 100%;
    /* Fill grid cell */
    display: flex;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.premium-img {
    width: 100%;
    height: 100%;
    /* Fill card */
    object-fit: cover;
    /* No borders, crop to fit */
    display: block;
    filter: contrast(1.15) saturate(1.3);
    /* Boost colors */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.premium-card:hover .premium-img {
    filter: contrast(1.2) saturate(1.4) brightness(1.05);
    transform: scale(1.03);
    /* Subtle zoom */
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    /* Brand wider */
    gap: 60px;
    margin-bottom: 40px;
}

.logo-footer {
    font-size: 1.75rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: var(--secondary-color);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 5px;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    opacity: 0.5;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .why-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .why-text {
        order: -1;
    }

    .features-list li {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Mobile Nav - Fixed Layout */
    .nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center vertically */
        align-items: center;
        box-shadow: none;
        transform: translateX(100%);
        visibility: hidden;
        /* Hide when off-screen to prevent scroll width expansion */
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        z-index: 999;
        overflow-y: auto;
    }

    .nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 35px;
        /* Larger gap */
        width: 100%;
    }

    .nav-link {
        font-size: 1.5rem;
        /* Larger text */
        font-weight: 700;
        color: #333;
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    .nav-link:hover {
        color: var(--primary-color);
        background-color: rgba(0, 0, 0, 0.03);
        border-radius: 8px;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .payment-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Services Header Icons */
.services-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 10px 0;
}

.services-icons-list {
    display: flex;
    flex-flow: row wrap;
    /* Allow wrapping */
    justify-content: center;
    /* Center items */
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.services-icons-list li {
    text-align: center;
    flex: 0 0 auto;
}

.services-icons-list a {
    display: flex;
    flex-direction: column;
    /* Icon top, text bottom */
    align-items: center;
    text-decoration: none;
    color: #002366;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px;
    border-radius: 8px;
}

.services-icons-list i,
.cvc-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: #000033;
    display: inline-block;
}

.cvc-icon {
    width: 28px;
    height: 22px;
    background-size: 200% 270%;
    background-repeat: no-repeat;
}

/* Set 1 */
.cvc-icon-pacotes {
    background-image: url('images/cvc_icons_set1.png');
    background-position: 0 0%;
}

.cvc-icon-passagens {
    background-image: url('images/cvc_icons_set1.png');
    background-position: 100% 0%;
}

.cvc-icon-hoteis {
    background-image: url('images/cvc_icons_set1.png');
    background-position: 0 82%;
}

.cvc-icon-cruzeiros {
    background-image: url('images/cvc_icons_set1.png');
    background-position: 100% 82%;
}

/* Set 2 */
.cvc-icon-carros {
    background-image: url('images/cvc_icons_set2.png');
    background-position: 0 0%;
}

.cvc-icon-promocoes {
    background-image: url('images/cvc_icons_set2.png');
    background-position: 100% 0%;
}

.cvc-icon-ingressos {
    background-image: url('images/cvc_icons_set2.png');
    background-position: 0 82%;
}

.cvc-icon-onibus {
    background-image: url('images/cvc_icons_set2.png');
    background-position: 100% 82%;
}

/* Set 3 */
.cvc-icon-viagens {
    background-image: url('images/cvc_icons_set3.png');
    background-position: 0 0%;
}

.cvc-icon-seguro {
    background-image: url('images/cvc_icons_set3.png');
    background-position: 100% 0%;
}

.cvc-icon-disney {
    background-image: url('images/cvc_icons_set3.png');
    background-position: 0 82%;
}

.cvc-icon-beto {
    background-image: url('images/cvc_icons_set3.png');
    background-position: 100% 82%;
}


.services-icons-list a:hover,
.services-icons-list a.active {
    color: #004aad;
    background-color: #f0f4f8;
    /* Subtle hover bg */
}

.services-icons-list a.active i {
    color: #004aad;
}

/* Price Carousel Section */
.price-carousel-section {
    background-color: #f9f9f9;
}

.price-carousel-container {
    display: flex;
    flex-direction: column;
    /* Stack Title and Carousel */
    gap: 30px;
    margin: 0 auto;
}

.carousel-main-column {
    width: 100%;
    /* Full width */
    display: flex;
    flex-direction: column;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-track-container {
    width: 100%;
    overflow: hidden;
    margin: 0 20px;
    /* Space for buttons */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
    padding: 10px 0;
    /* Avoid shadow clip */
}

/* Carousel Card - CVC Redesign */
.carousel-card {
    min-width: 300px;
    flex: 0 0 300px;
    /* Default for medium screens */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: visible;
    position: relative;
    transition: transform 0.3s ease;
    margin-top: 25px;
    /* Restored space for floating icon */
    border: none;
    overflow: visible;
    /* Allow icon to float */
}

/* 4-Card Innovative Layout for Large Screens */
@media (min-width: 1200px) {
    .carousel-card {
        min-width: auto !important;
        flex: 0 0 calc(25% - 15px) !important;
        /* 4 cards per row with gap */
    }
}

.carousel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.carousel-card .card-image {
    height: 180px;
    /* Slightly taller for impact */
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Badge Style */
.pkg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #005697;
    /* CVC Blue */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* New Title Style */
.card-details h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}

/* Duration/Location Row */
.pkg-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
}

.pkg-info i {
    color: #00AEEF;
    /* Cyan icon */
}

/* Divider */
.pkg-divider {
    height: 1px;
    background-color: #eee;
    margin: 0 -20px 15px -20px;
    /* Full width divider */
}

/* Footer Section */
.pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pkg-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

.pkg-rating i {
    color: #FFD700;
    /* Gold Star */
}

.pkg-link {
    color: #005697;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.pkg-link:hover {
    gap: 8px;
    text-decoration: none;
}



.carousel-card .card-details {
    padding: 20px 20px 15px 20px;
    position: relative;
}

/* Floating Icon (Overlapping Image & Content) */
.carousel-card .card-icon {
    position: absolute;
    top: -20px;
    /* Adjusted for smaller icon */
    left: 20px;
    background: #000080;
    color: #fff;
    width: 40px;
    /* Reduced from 50px */
    height: 40px;
    /* Reduced from 50px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    /* Smaller icon font */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
    z-index: 2;
}

.carousel-card h3 {
    margin-top: 25px;
    /* Clears the icon */
    font-size: 1.1rem;
    color: #000080;
    font-weight: 800;
    margin-bottom: 5px;
}

.carousel-card .origin {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 15px;
}

/* Grey Date Box */
.flight-dates {
    background: #F8F9FA;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.flight-dates p {
    font-size: 0.8rem;
    color: #555;
    margin: 4px 0;
    font-weight: 500;
}

/* Price Layout (Flexbox) */
.price-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
}

.installment-info {
    font-size: 0.75rem;
    color: #666;
    text-align: left;
}

.total-price {
    text-align: right;
}

.total-price span {
    display: block;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 2px;
}

.total-price strong {
    display: block;
    font-size: 1.6rem;
    color: #000;
    font-weight: 800;
    line-height: 1;
}

/* Mobile Scroll Snap */
@media (max-width: 768px) {
    .carousel-track {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        /* Space for shadow */
        -webkit-overflow-scrolling: touch;
    }

    .carousel-card {
        scroll-snap-align: center;
        flex: 0 0 85%;
        /* Shows part of next card */
        margin-right: 0;
    }

    /* Hide desktop arrows on mobile if desired, or keep them */
    .carousel-btn {
        display: none;
        /* Swipe is native on mobile */
    }
}

.carousel-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #000080;
    color: #fff;
    border-color: #000080;
}

.carousel-disclaimer {
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
    text-align: left;
    margin-left: 60px;
}

.carousel-info {
    flex: 0 0 300px;
    background: transparent;
    /* Removed Navy Blue Background */
    color: #000080;
    padding: 50px 40px 50px 0;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-icon {
    position: relative;
    width: 80px;
    height: 70px;
    margin-bottom: 20px;
}

.carousel-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.carousel-info .origin-link {
    color: #000080;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
    font-size: 1rem;
}

.carousel-info .origin-link:hover {
    background: transparent;
    text-decoration: underline;
}

/* Floating Button */
.floating-mary-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-mary-btn:hover {
    transform: scale(1.05);
}

.mary-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Focus on face */
}

.mary-tooltip {
    background-color: #25d366;
    /* WhatsApp Green */
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Video Grid Layout - Request: "Show All" / "Column Below" */
/* Video Carousel Desktop Layout */
.video-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Hide overflow for carousel effect */
}

.video-carousel-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    width: max-content;
    /* Allow track to be as wide as needed */
    transition: transform 0.5s ease-in-out;
}

/* Show navigation buttons */
.video-prev-btn,
.video-next-btn {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.video-prev-btn:hover,
.video-next-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.video-prev-btn {
    left: -20px;
}

.video-next-btn {
    right: -20px;
}

.video-card {
    min-width: 250px;
    /* Fixed width for calculation */
    width: 250px;
    height: 400px;
    /* Taller for vertical video feel */
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    position: relative;
    border: none;
}

.video-card:hover {
    transform: scale(1.02);
    /* Slight scale instead of translateY */
    z-index: 2;
}

/* Ensure images cover the card area */
.video-thumbnail {
    height: 100%;
    /* Fill the card */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center play button */
    padding: 0;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: transparent;
    /* No gray background */
    backdrop-filter: none;
    /* No blur */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    /* Larger icon to stand out without bg */
    transition: all 0.3s;
    border: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Shadow for visibility */
}

.video-card:hover .video-overlay {
    background: transparent;
    color: #fff;
    /* Keep white on hover */
    transform: translate(-50%, -50%) scale(1.2);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    /* Glow effect */
}

/* Hiding standardized text info since thumbnails already have text */
.video-info {
    display: none;
}

/* Video Modal Styles - Refined for Local Playback */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    /* High z-index to stay on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    /* Darker background */
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    /* Flex to center content */
}

.modal-content {
    position: relative;
    background-color: transparent;
    padding: 0;
    border: none;
    width: 90%;
    max-width: 1000px;
    /* Larger max-width for 4K */
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

.close-modal {
    color: #fff;
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* About Page Specific */
.about-page {
    background-color: var(--bg-white);
}

.experience-box,
.differentials-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

/* Fix for Exclusive Carousel Text Color */
.exclusive-card .card-content h3 {
    color: #fff !important;
}

/* Hover Effect for Exclusive Cards */
.exclusive-card:hover .card-bg {
    transform: scale(1.1) !important;
}

/* Floating Mary Button Styles (Pill Design) */
.floating-mary-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: linear-gradient(90deg, #0AB3E4 0%, #004AAD 100%);
    border-radius: 50px;
    /* Pill shape */
    padding: 4px 4px 4px 15px;
    /* Space for text on left */
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 74, 173, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
    overflow: visible;
}

.floating-mary-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 173, 0.5);
}

.floating-mary-btn .mary-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
}

.floating-mary-btn .mary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-text {
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tooltip Arrow Effect (Triangle on the right of text/left of avatar) */
.btn-text::after {
    display: none;
    /* Simplified for cleaner look */
}

/* --- CVC Disney Page Redesign Styles --- */

/* CVC Hero Section */
.cvc-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 80px;
    /* Offset for fixed header if needed */
}

.cvc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
}

.cvc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.cvc-breadcrumbs {
    font-size: 0.9rem;
    color: #f0f0f0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cvc-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* CVC Quick Nav Bar */
.cvc-quick-nav-container {
    background: transparent;
    margin-top: -40px;
    /* Overlap hero */
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.cvc-quick-nav {
    background: white;
    border-radius: 50px;
    /* Highly rounded links bar */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    padding: 10px 40px;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 90%;
}

.cvc-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
    gap: 8px;
}

.cvc-nav-item i {
    font-size: 1.5rem;
    color: #004aad;
    /* Brand Blue */
    background: #f4f6f9;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.cvc-nav-item:hover {
    color: #004aad;
}

.cvc-nav-item:hover i {
    background: #004aad;
    color: white;
    transform: translateY(-3px);
}

/* CVC Product Grid Layout */
.cvc-main-container {
    display: flex;
    gap: 30px;
    padding-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.cvc-sidebar {
    width: 250px;
    flex-shrink: 0;
    display: none;
    /* Hidden on mobile by default, shown on desktop */
}

@media (min-width: 992px) {
    .cvc-sidebar {
        display: block;
    }
}

.cvc-content {
    flex: 1;
}

.cvc-section-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 25px;
    border-left: 5px solid #ffcc00;
    /* CVC-like accent */
    padding-left: 15px;
}

/* CVC Product Card */
.cvc-product-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .cvc-product-card {
        flex-direction: row;
        height: 220px;
    }
}

.cvc-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (min-width: 768px) {
    .cvc-card-image {
        width: 35%;
        height: 100%;
    }
}

.cvc-card-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cvc-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.cvc-card-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cvc-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cvc-card-features li {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cvc-card-features li i {
    color: #28a745;
    /* Green check */
}

.cvc-card-price-section {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cvc-price-block {
    text-align: left;
}

.cvc-price-label {
    font-size: 0.8rem;
    color: #777;
    display: block;
}

.cvc-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #004aad;
}

.cvc-price-installments {
    font-size: 0.8rem;
    color: #666;
}

.cvc-btn {
    background-color: #ffcc00;
    color: #000;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.cvc-btn:hover {
    background-color: #e6b800;
}

@media (max-width: 768px) {
    .services-icons-list {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        /* Smooth scrolling on iOS */
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE 10+ */
        gap: 10px;
        padding-left: 15px;
        /* Start with some padding */
        padding-right: 15px;
    }

    .services-icons-list::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }

    .services-icons-list li {
        flex: 0 0 auto;
    }

    .services-icons-list a {
        min-width: 70px;
        /* Ensure uniform width for touch targets */
        padding: 5px;
    }

    /* Mobile Typography & Spacing */
    :root {
        --radius-lg: 0.75rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .carousel-info h2 {
        font-size: 2rem;
    }

    /* Header & Navigation */
    .header-container {
        height: 70px;
    }

    .logo img {
        height: 80px !important;
        /* Adjust logo size */
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        /* Hidden by default */
        transition: clip-path 0.4s ease-in-out;
        z-index: 999;
    }

    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: block;
        padding: 10px;
        z-index: 1001;
    }

    .header-actions {
        margin-right: 10px;
    }

    .whatsapp-btn span {
        display: none;
        /* Hide text, keep icon */
    }

    .whatsapp-btn {
        padding: 10px;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        justify-content: center;
    }

    /* Grids & Cards */
    .destinations-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .hero-slider .container {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* CVC Page Mobile */
    .cvc-main-container {
        flex-direction: column;
    }

    .cvc-hero h1 {
        font-size: 2rem;
    }

    .cvc-quick-nav {
        padding: 10px 20px;
        border-radius: 20px;
        width: 100%;
        max-width: 100%;
        gap: 15px;
    }

    .cvc-nav-item span {
        display: none;
    }

    .cvc-card-price-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cvc-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==========================================================================
   MOBILE REFINEMENTS (Pixel-Perfect Overrides)
   ========================================================================== */
@media (max-width: 768px) {

    /* Ultra-Compact Typography */
    .hero h1 {
        font-size: 2rem !important;
        /* Force smaller size */
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem !important;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 1.75rem !important;
    }

    .carousel-info h2 {
        font-size: 1.75rem !important;
    }

    /* Tighter Spacing */
    .section-padding {
        padding: 30px 0 !important;
    }

    .header-container {
        height: 60px !important;
    }

    .logo img {
        height: 50px !important;
        /* Even smaller logo */
        margin-top: 5px;
    }

    .nav {
        top: 60px !important;
    }

    /* Fix Floating Button Overlap (Allow Full Width Pill) */


    footer {
        padding-bottom: 90px !important;
    }

    /* About Page Mobile Refinements */
    .about-content {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .about-image,
    .about-text {
        min-width: 100% !important;
        flex: auto !important;
    }

    /* Reduce Floating Button Size on Mobile */
    /* Reduce Floating Button Size on Mobile & Allow Text Expansion */
    .floating-mary-btn {
        padding: 4px 4px 4px 12px !important;
        gap: 6px !important;
        bottom: 70px !important;
        right: 10px !important;
        width: auto !important;
        height: auto !important;
        max-width: 90vw;
    }

    .floating-mary-btn .btn-text {
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }

    .floating-mary-btn .mary-avatar {
        width: 32px !important;
        height: 32px !important;
        border-width: 1.5px !important;
    }

    /* Smaller text */
}


/* Mobile Standardization (Package Style - Horizontal Carousel) */
@media (max-width: 768px) {
    .carousel-track-container {
        margin: 0;
        padding-left: 15px;
        /* Peek effect starter */
        padding-right: 15px;
        overflow-x: auto;
        /* Enable native horizontal scroll */
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        /* Snap effect */
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
    }

    .carousel-track {
        display: flex;
        /* Keep horizontal */
        flex-direction: row;
        /* Force row */
        gap: 15px;
        width: auto;
        /* Let content dictate width */
        transform: none !important;
        /* Disable JS interference */
    }

    .carousel-card {
        flex: 0 0 85% !important;
        /* Peek next card */
        width: 85% !important;
        min-width: 280px;
        margin-right: 0;
        scroll-snap-align: start;
        /* Snap to start */
    }

    /* Hide Navigation Buttons on Mobile */
    .carousel-btn {
        display: none !important;
    }

    .card-details h3 {
        font-size: 1rem;
        /* Slightly smaller title */
    }

    .pkg-info {
        font-size: 0.8rem;
    }

    .pkg-rating,
    .pkg-link {
        font-size: 0.85rem;
    }

    /* Adjust floating icon for mobile */
    .carousel-card .card-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        top: -18px;
        left: 15px;
    }

    /* Prevent text clipping in price section - Optimized for Row Layout */
    .price-section {
        flex-direction: row;
        /* Keep standard row layout */
        align-items: flex-end;
        /* Align bottom like desktop */
        justify-content: space-between;
    }

    .installment-info {
        font-size: 0.65rem;
        /* Smaller font to fit */
        max-width: 55%;
        /* Prevent overlap */
        line-height: 1.2;
    }

    .total-price {
        text-align: right;
        margin-top: 0;
    }

    .total-price strong {
        font-size: 1.3rem;
        /* Scaled down from 1.6rem */
    }

    .total-price span {
        font-size: 0.65rem;
    }


    /* Ensure content isn't hidden behind floating button */
    body {
        padding-bottom: 140px !important;
    }
}

.about-text .lead {
    font-size: 1rem !important;
}

/* Video Modal Styling */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    /* Highest priority */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Video Carousel Mobile - Horizontal Scroll */
@media (max-width: 768px) {
    .video-carousel-track {
        display: flex !important;
        overflow-x: auto !important;
        gap: 15px !important;
        scroll-snap-type: x mandatory;
        grid-template-columns: none !important;
        padding-left: 20px;
        /* Start padding */
        padding-right: 20px;
        /* End padding */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .video-carousel-track::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome/Safari */
    }

    .video-card {
        min-width: 260px !important;
        width: 260px !important;
        height: 400px !important;
        /* Adjust height for mobile */
        flex: 0 0 auto !important;
        scroll-snap-align: center;
        margin-bottom: 0 !important;
    }
}

/* Responsive Typography & Logo Fixes */
.header-logo {
    height: 120px;
    width: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-title {
    font-size: 2.2rem;
    margin-top: 10px;
    line-height: 1.3;
    font-weight: 700;
}

@media (max-width: 768px) {
    .header-logo {
        height: 60px;
        /* Reduced for mobile */
    }

    .hero-title {
        font-size: 2rem;
        /* Reduced from 3.5rem */
    }

    .section-title {
        font-size: 1.5rem;
        /* Reduced from 2.2rem */
    }

    .container {
        padding: 0 15px !important;
        /* Ensure content isn't too tight but has room */
        overflow-x: hidden;
        /* Prevent horizontal scroll within container if any */
    }

    body {
        width: 100%;
        overflow-x: hidden;
    }
}

/* Spacing adjustments for Price Carousel */
.price-carousel-section.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
}

.price-carousel-section .section-header {
    margin-bottom: 20px;
}