/* Base styles and layout */
html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #118B9D;
    --primary-dark: #1E2228;
    --primary-orange: #C1221B;
    --primary-yellow: #ECB629;
    --primary-pink: #EACDD8;
    --text-dark: #333333;
    --text-light: #ffffff;
    --transition-speed: 0.4s;
    --instagram: #E1306C;
    --tiktok: #000000;
    --youtube: #FF0000;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.2);
    --bezier: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

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

body {
    opacity: 0;
    animation: fadeInPage 1s ease forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.will-animate {
    will-change: transform, opacity;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    min-height: 100vh;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    scroll-behavior: smooth;
}

.page-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Top navigation with small logo */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 34, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 45px;
    width: auto;
    border-radius: 50%;
    border: 2px solid var(--primary-yellow);
}

.nav-logo span {
    font-family: 'Horizon', sans-serif;
    color: var(--text-light);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.05);
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2px;
    position: relative;
}

.lang-btn {
    padding: 4px 12px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 18px;
    transition: all 0.3s ease;
    z-index: 1;
}

.lang-btn.active {
    color: var(--primary-dark);
}

.lang-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(50% - 2px);
    height: calc(100% - 4px);
    background: var(--primary-yellow);
    border-radius: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-toggle.en-active .lang-slider {
    transform: translateX(100%);
}

.nav-links a.contact-btn {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
}

.nav-links a.contact-btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 182, 41, 0.4);
}

@media (max-width: 768px) {
    .hero-banner {
        margin-top: 65px;
        /* Mobile: use natural aspect ratio */
        height: auto;
        max-height: none;
    }

    .banner-video {
        /* Reset margins/clips for mobile, use object-fit */
        clip-path: none;
        margin-bottom: 0;
        object-position: center center;
    }
}

.hero-banner {
    width: 100%;
    margin-top: 110px;
    /* Desktop: use natural aspect ratio */
    height: auto;
    max-height: none;
    overflow: hidden;
    position: relative;
    background-color: transparent;
}

.hero-banner-forced {
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
    position: relative;
    background-color: transparent;
    padding-top: 110px;
}

@media (max-width: 768px) {
    .hero-banner-forced {
        padding-top: 85px;  /* Reduce padding on mobile so banner shows properly */
    }
}

.banner-video {
    width: 100%;
    height: 100%;
    display: block;
    /* Cover ensures it fills height without stretching */
    object-fit: cover;
    /* Focus on center-top (people) and naturally crop bottom watermark */
    object-position: center 30%;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 900px;  /* Make the banner smaller on large screens */
    margin: 0 auto;    /* Center the banner */
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(30, 34, 40, 0.08); /* Harmonious floating effect */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
}

/* Experience Hub (Linktree Style) */
.hub-container {
    max-width: 600px;
    margin: -30px auto 60px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hub-header {
    margin-bottom: 50px;
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

.avatar-ring {
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
    padding: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #ffd700 50%, #4facfe 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hub-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-dark);
}

.hub-header h1 {
    font-family: 'Horizon', sans-serif;
    color: var(--text-light);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 12px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hub-subtitle {
    color: var(--text-light);
    opacity: 0.95;
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 20px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.hub-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.hub-social-icons a {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    font-size: 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hub-social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    background: var(--primary-red);
    color: white;
    border-color: var(--primary-red);
    box-shadow: 0 12px 30px rgba(193, 34, 27, 0.4);
}

/* Instagram */
.hub-social-icons a:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* TikTok */
.hub-social-icons a:nth-child(2):hover {
    background: #000;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 2px 2px 0px #fe0979, -2px -2px 0px #00f2fe;
}

/* YouTube */
.hub-social-icons a:nth-child(3):hover {
    background: #ff0000;
    color: white;
}

.balloon-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 100%;
}

.balloon-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) backwards;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.balloon-item:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-balloon {
    background: linear-gradient(135deg, rgba(236, 182, 41, 0.2) 0%, rgba(236, 182, 41, 0.05) 100%);
    border: 1.5px solid rgba(236, 182, 41, 0.3);
}

.highlight-balloon:hover {
    background: linear-gradient(135deg, rgba(236, 182, 41, 0.3) 0%, rgba(236, 182, 41, 0.1) 100%);
    border-color: var(--primary-yellow);
}

.balloon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transition: 0.5s;
}

.balloon-item:hover::before {
    left: 100%;
}

.balloon-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-dark);
    color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.balloon-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.balloon-title {
    font-size: 1.1rem;
    display: block;
}

.balloon-desc {
    font-size: 0.85rem;
    opacity: 0.6;
    font-weight: 400;
}

.whatsapp-balloon {
    background: #25D366;
    color: #fff;
    border: none;
}

.whatsapp-balloon .balloon-icon {
    background: #fff;
    color: #25D366;
}

.whatsapp-balloon:hover {
    background: #128C7E;
    color: #fff;
}

/* Hub Sections & Tags */
.hub-section-tag {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-light);
    opacity: 0.7;
    margin: 2rem 0 0.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hub-section-tag::before,
.hub-section-tag::after {
    content: '';
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    flex: 1;
}

/* Amazon Disclaimer (Minimal) */
.amazon-disclaimer-minimal {
    max-width: 600px;
    margin: 0 auto 4rem;
    padding: 0 20px;
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-light);
    opacity: 0.6;
    font-weight: 300;
}

.balloon-arrow {
    margin-left: auto;
    font-size: 0.9rem;
    opacity: 0.3;
    transition: transform 0.3s ease;
}

.balloon-item:hover .balloon-arrow {
    transform: translateX(5px);
    opacity: 0.8;
}

.amazon-icon {
    background: #FF9900 !important;
    color: #fff !important;
}


/* Modal System - Final Fix for Viewport Clipping & Reachability */
/* Modal System - Clean Slate Rewrite */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    display: none;
    z-index: 2500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 1;
    perspective: 1000px;
    overflow: hidden;
    /* Overlay itself doesn't scroll */
}

.modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 480px;
    max-height: 80vh;
    /* Conservative height to prevent clipping */
    border-radius: 24px;
    position: relative;
    /* Flex Setup */
    display: flex;
    flex-direction: column;
    /* Visuals */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* 3D Tilt Support */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

@media (max-width: 600px) {
    .modal-card {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
    }

    .modal-overlay.active {
        padding: 0;
        align-items: flex-end;
        /* Sheet-like or full screen */
    }
}

/* Internal Layout */
.modal-form-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    /* Critical for nested scrolling */
    overflow: hidden;
}

.modal-form-header {
    flex-shrink: 0;
    padding: 24px 30px;
    border-bottom: 1px solid #f2f2f5;
    background: #fff;
    position: relative;
}

.modal-form-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px 30px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

@media (max-width: 600px) {
    .modal-form-header {
        padding: 20px;
    }

    .modal-form-body {
        padding: 20px;
    }

    /* Ensure inputs are large enough to prevent zoom */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px !important;
    }
}

.modal-form-footer {
    flex-shrink: 0;
    padding: 20px 30px;
    border-top: 1px solid #f2f2f5;
    background: #fafafb;
}

.modal-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: #f1f1f4;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #e5e5e9;
    transform: translateY(-50%) rotate(90deg);
}

.form-header {
    margin: 0;
    text-align: left;
}

.form-title-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 10px;
    vertical-align: middle;
}

.form-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1d1d1f;
    margin: 0;
    letter-spacing: -0.5px;
    display: inline-block;
    vertical-align: middle;
}

.modal-form-content {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.modal-form-body::-webkit-scrollbar {
    width: 6px;
}

.modal-form-body::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 10px;
}

/* Modal Form Controls */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #86868b;
    padding-left: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 14px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 1rem;
    background: #ffffff;
    color: #1d1d1f;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    outline: none;
    background: #fff;
}

.btn-submit {
    margin-top: 10px;
    padding: 14px 24px;
    background: var(--primary-orange);
    /* Switched to Brand Red */
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(193, 34, 27, 0.25);
    /* Red shadow */
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(193, 34, 27, 0.35);
    /* Red shadow hover */
    filter: brightness(1.1);
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Footer Improvements */
footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    text-align: center;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-yellow);
    padding: 5px;
    background: #fff;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand h3 {
    font-family: 'Horizon', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
}

.footer-links h4 {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: transparent;
}

/* Instagram */
.social-icons a:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* TikTok */
.social-icons a:nth-child(2):hover {
    background: #000;
    color: #fff;
    border-color: #00f2fe;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 2px 2px 0px #fe0979;
}

/* YouTube */
.social-icons a:nth-child(3):hover {
    background: #ff0000;
    color: white;
}

.footer-bottom {
    opacity: 0.6;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    #product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 550px) {
    #product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .product-card-wrapper {
        max-width: 100%;
    }

    /* Global Footer styles were extracted from here */
}

/* Mobile Refinements */
@media (max-width: 768px) {
    .nav-logo span {
        display: none;
    }

    .hub-container {
        margin: -60px auto 40px;
        padding: 0 16px;
    }

    .hub-header h1 {
        font-size: 2rem;
    }

    .hub-header p {
        font-size: 0.9rem;
    }

    .avatar-ring {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 480px) {
    .balloon-item {
        padding: 14px 18px;
        gap: 14px;
    }

    .balloon-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .balloon-title {
        font-size: 0.95rem;
    }

    .balloon-desc {
        font-size: 0.8rem;
    }

    /* Premium Bottom Sheet Implementation */
    .modal-overlay {
        padding: 0;
        background: rgba(0, 0, 0, 0.5);
    }

    .modal-card {
        max-width: 100%;
        max-height: 94vh;
        width: 100%;
        height: auto;
        border-radius: 32px 32px 0 0;
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
        padding: 0;
    }

    .modal-overlay.active .modal-card {
        transform: translateY(0);
    }

    .modal-card::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 5px;
        background: #e0e0e0;
        border-radius: 3px;
        z-index: 100;
    }

    .modal-form-header {
        padding: 24px 24px 15px;
    }

    .modal-form-body {
        padding: 10px 24px 20px;
    }

    .modal-form-footer {
        padding: 15px 24px calc(15px + env(safe-area-inset-bottom, 15px));
    }

    .contact-form {
        gap: 12px;
    }
}

@media (max-height: 700px) {
    .modal-card {
        max-height: 96vh;
    }

    .modal-form-header {
        padding: 15px 24px;
    }

    .modal-form-body {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

/* Flying Airplane Animation */

/* Dynamic Airplane Animation */
.airplane-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.plane-wrapper {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 150px;
    height: 60px;

    /* Complex Loop Path */
    offset-path: path("M -100,500 C 200,500 400,200 600,400 S 900,300 1200,100");

    animation: flyLoop 20s linear infinite;
}

.plane-icon-dynamic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    font-size: 3.5rem;
    color: #FFD700;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.plane-trail-dynamic {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 8px;
    z-index: 1;

    /* Dotted tapered tail */
    background: radial-gradient(circle, #FFD700 30%, transparent 70%);
    background-size: 20px 100%;
    background-repeat: repeat-x;

    /* Fade out */
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);

    opacity: 0.8;
}

@keyframes flyLoop {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Specific styling for the Contact Button to match user request */
.nav-cta {
    background-color: #c1221b !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: background-color 0.3s !important;
    font-family: "Montserrat", sans-serif !important;
}

.nav-cta:hover {
    background-color: #a01b15 !important;
}

/* Overriding Airplane Animation for Visibility */
.airplane-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    z-index: 50 !important;
    overflow: hidden !important;
}

.plane-wrapper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 150px !important;
    height: 60px !important;
    /* Refined Aesthetic Path */
    offset-path: path("M -100,200 C 300,50 600,400 900,200 S 1400,0 1800,300");
    animation: flyLoop 30s linear infinite !important;
    /* Slower, more delicate */
}

.plane-icon-dynamic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    font-size: 1.8rem !important;
    /* Much smaller/finer */
    color: #e6c200;
    /* Slightly more muted gold */
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    /* Soft glow */
    z-index: 2;
}

.plane-trail-dynamic {
    position: absolute;
    right: 25px;
    /* Tucked right behind the tail */
    top: 52%;
    /* Precise alignment with tail */
    transform: translateY(-50%);
    width: 150px;
    /* Longer, elegant trail */
    height: 2px !important;
    /* Very thin/fine */
    z-index: 1;

    /* Delicate dotted line */
    background: linear-gradient(to left, rgba(230, 194, 0, 0.8), transparent);
    /* Alternative: Dotted */
    background: repeating-linear-gradient(to left,
            rgba(230, 194, 0, 0.6) 0,
            rgba(230, 194, 0, 0.6) 4px,
            transparent 4px,
            transparent 10px);

    /* Soft fade out */
    mask-image: linear-gradient(to right, transparent, black 20%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 20%);

    opacity: 0.8;
}

@keyframes flyLoop {
    0% {
        offset-distance: 0%;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        offset-distance: 100%;
        opacity: 0;
    }
}

/* Final fix for Contact Button using correct class */
.nav-contact-btn {
    background-color: #c1221b !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 4px !important;
    border: none !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: background-color 0.3s !important;
    font-family: "Montserrat", sans-serif !important;
    cursor: pointer !important;
}

.nav-contact-btn:hover {
    background-color: #a01b15 !important;
}

/* Airplane Animation Container - ensure it matches Home Page */
.airplane-container-svg {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.airplane-container-svg svg {
    width: 100%;
    height: auto;
    display: block;
}

/* GDPR & Cookie Compliance Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-primary:hover {
    background-color: #d1a01c;
}

.btn-cookie-secondary {
    color: var(--text-light);
    text-decoration: underline;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Privacy Checkbox & Summary Styles */
.checkbox-group {
    margin-top: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    -webkit-appearance: none !important;
    appearance: none !important;
    padding: 0 !important;
    border: 2px solid #86868b !important;
    border-radius: 4px !important;
    background: #fff !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label input[type="checkbox"]:checked {
    background-color: #c1221b !important;
    border-color: #c1221b !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3E%3C/svg%3E") !important;
    background-size: 80% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.checkbox-label a {
    color: #c1221b;
    text-decoration: underline;
}

.privacy-summary {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.75rem;
    color: #777;
    text-align: left;
    line-height: 1.5;
}

.privacy-summary p {
    margin: 3px 0;
}

@media (max-width: 768px) {
    .cookie-buttons {
        width: 100%;
        justify-content: flex-end;
    }
}