@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Font/GothamBook.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('fonts/Gotham-Font/GothamBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Talina';
    src: url('fonts/talina-demo/Talina%20DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* --- Global Variables & Theme --- */
:root {
    /* Anti-gravity Palette */
    --color-primary: #87CEEB; /* Lighter, more ethereal sky blue */
    --color-secondary: #F0F9FF; /* Near-white blue tint */
    --color-dark: #1A1A1A; /* Deep Charcoal for high contrast */
    --color-light: #FFFFFF;
    --color-accent: #BAE6FD;
    --color-glow: rgba(135, 206, 235, 0.5);
    
    --font-body: 'Gotham', 'Helvetica Neue', sans-serif;
    --font-accent: 'Talina', serif;
    
    /* Golden Ratio Spacing (1.618) */
    --spacing-xs: 0.618rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.618rem;
    --spacing-lg: 2.618rem;
    --spacing-xl: 4.236rem;
    --spacing-xxl: 6.854rem;
    
    --border-radius: 40px;
    
    /* Multi-layered shadows for floating effect */
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 20px 60px rgba(154, 207, 241, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

/* --- Reset & Base --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    background-color: #f8fafc;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M12,4 C11,4 10,5 10,6 L10,16 L10,11 C10,10 9,9 8,9 C7,9 6,10 6,11 L6,18 C6,23 10,27 15,27 L18,27 C21,27 24,24 24,21 L24,14 C24,13 23,12 22,12 C21,12 20,13 20,14 L20,16 L20,12 C20,11 19,10 18,10 C17,10 16,11 16,12 L16,16 L16,6 C16,5 15,4 14,4 C13,4 12,5 12,6 L12,4 Z" fill="white" stroke="%2387CEEB" stroke-width="1.5"/></svg>') 12 0, auto;
}

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

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    color: var(--color-dark);
    letter-spacing: -2px;
    line-height: 1.1;
}

/* --- Utilities (skill.md) --- */
.hero, .about, .about-section, .features, .products, .contact {
    scroll-margin-top: 160px;
}

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

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    position: relative;
    z-index: 120 !important;
    opacity: 1 !important;
    transform: none !important;
}

/* --- Header (True Cloud Organic Shape) --- */
.main-header {
    background: rgba(255, 255, 255, 0.98); /* PERFORMANCE: Solid white fallback instead of expensive blur */
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    z-index: 1000;
    /* Organic bubble shape */
    border-radius: 80px 120px 90px 110px / 110px 90px 120px 80px;
    border: 1.5px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.4);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.6s ease;
}

.main-header::before, .main-header::after {
    content: '';
    position: absolute;
    background: inherit;
    z-index: -1;
    pointer-events: none;
}

.main-header::before {
    width: 200px; height: 120px;
    top: -50px; left: 10%;
    border-radius: 50% 50% 0 0;
    box-shadow: inset 0 10px 15px rgba(255,255,255,0.4);
}

.main-header::after {
    width: 150px; height: 100px;
    bottom: -40px; right: 15%;
    border-radius: 0 0 50% 50%;
}

/* Extra cloud bumps for the header to look 'fluffier' - optimized to remove heavy filters */
.main-header-bump {
    position: absolute;
    background: inherit;
    border: inherit;
    z-index: -1;
    pointer-events: none;
}

.bump-1 { width: 100px; height: 60px; top: -20px; right: 25%; border-radius: 50% 50% 0 0; }
.bump-2 { width: 80px; height: 40px; bottom: -15px; left: 30%; border-radius: 0 0 50% 50%; }

.main-header.scrolled {
    transform: translateX(-50%) translateY(-15px) scale(0.95);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 3rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    position: relative;
    z-index: 10;
}

/* Fluffy logo backgrounds removed completely to prevent overlapping the central menu array */

.logo-img {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 700;
    color: var(--color-dark);
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 120%;
        left: 5%;
        width: 90%;
        background: linear-gradient(180deg, #ffffff 0%, #f0fbff 100%);
        padding: 2rem;
        border-radius: 40px; /* Cloud-like soft edges */
        box-shadow: 0 15px 35px rgba(154, 207, 241, 0.2), 0 5px 15px rgba(0,0,0,0.05);
        text-align: center;
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
        transition: opacity 0.4s ease, transform 0.4s ease, display 0.4s allow-discrete;
    }
    /* Fluffy bumps to simulate a cloud */
    .nav-links::before {
        content: '';
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 50px;
        background: #ffffff;
        border-radius: 50px 50px 0 0;
        z-index: -1;
    }
    .nav-links::after {
        content: '';
        position: absolute;
        top: -15px;
        left: 30%;
        width: 70px;
        height: 40px;
        background: #ffffff;
        border-radius: 40px 40px 0 0;
        z-index: -1;
    }
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    .nav-links a {
        padding: 12px 0;
        font-size: 1.2rem;
        border-bottom: 2px dashed rgba(135, 206, 235, 0.2);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
}

.hero-logo-box {
    margin: 0 auto 1.618rem;
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
}

.hero-center-logo {
    width: 100%;
    height: auto;
    display: block;
    clip-path: inset(2px);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.out-now-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2); /* Enhanced shadow for all devices */
    text-transform: uppercase;
    z-index: 130;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-center-logo {
        max-width: 220px !important; /* Scaled down on mobile to preserve space */
    }
}

/* Hero Product Image - Centered and Premium */
.product-mockup-hero {
    margin: 0 auto 2rem;
    width: 100%;
    max-width: 550px;
    display: flex;
    justify-content: center;
}

.hero-product-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    /* Subtle cloud overlap shadow */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 60; /* Lower than clouds (80) so it's covered */
    display: block;
}

/* --- Hero Section (Ethereal Depth) --- */
.hero {
    min-height: 100vh;
    padding-top: 180px; /* Increased further for safer clearance */
    background: linear-gradient(180deg, #60A5FA 0%, #F8FAFC 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    contain: paint;
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 160px; /* Further increased to clear the curved header cloud on all desktops */
    }
}

.clouds-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(186, 230, 253, 0.3) 0%, transparent 50%);
    z-index: 1;
}

/* Animated Floating Clouds Using Actual Images */
.floating-cloud {
    position: absolute;
    animation: float 40s infinite linear;
    z-index: 2; /* PERFORMANCE: Lower stacking context */
    pointer-events: none;
    max-width: none;
    object-fit: contain;
    will-change: transform; /* Lock onto GPU */
    transform: translate3d(0, 0, 0); /* Force Hardware Acceleration */
    opacity: 0.8;
}

.overlap-cloud {
    z-index: 3 !important; /* PERFORMANCE: Move below hero content */
}

/* Cloud Bed overhaul for natural overlap */
.cloud-bed {
    position: absolute;
    bottom: -50px; /* Lower on desktop to reveal products */
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 80;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
}

@media (max-width: 768px) {
    .cloud-bed {
        bottom: -120px; /* Much lower on mobile to reveal the product mockup */
        height: 350px;
        opacity: 0.8;
    }
    
    .product-mockup-hero {
        transform: translateY(-40px); /* Lift the product packs slightly on mobile */
    }
}

.bed-cloud {
    position: absolute;
    bottom: 0;
    opacity: 0.98;
    filter: brightness(1.05); /* Make them pop */
    will-change: transform;
    animation: breathe 10s ease-in-out infinite alternate;
}

.bc1 { width: 900px; left: -200px; height: auto; animation-delay: 0s; }
.bc2 { width: 800px; left: 15%; height: auto; animation-delay: -3s; bottom: -20px; }
.bc3 { width: 950px; right: -250px; height: auto; animation-delay: -5s; }
.bc4 { width: 850px; left: 40%; height: auto; animation-delay: -2s; bottom: -40px; }

@keyframes breathe {
    0% { transform: scale(1) translate3d(0, 0, 0); }
    100% { transform: scale(1.08) translate3d(15px, -25px, 0); }
}

@keyframes float-reverse {
    0% { transform: translate3d(100vw, 0, 0); }
    100% { transform: translate3d(-100vw, 0, 0); }
}

.float-reverse {
    animation: float-reverse 45s infinite linear;
}

/* --- Social Links (Footer) --- */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap; /* Fix for mobile stretching */
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    text-decoration: none;
    flex-shrink: 0; /* Prevent squashing */
}

.social-link svg {
    display: block;
    width: 22px;
    height: 22px;
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--color-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.c1 { height: 180px; width: 300px; top: 10%; left: -20%; animation-duration: 60s; opacity: 0.9; }
.c2 { height: 120px; width: 200px; top: 35%; left: -30%; animation-duration: 45s; opacity: 0.75; }
.c3 { height: 250px; width: 400px; top: 60%; left: -40%; animation-duration: 70s; opacity: 1; }
.c4 { height: 150px; width: 250px; top: 5%; left: -10%; animation-duration: 50s; opacity: 0.85; animation-delay: -15s; }

@keyframes float {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(130vw, 0, 0); }
}

.hero-content {
    position: relative;
    z-index: 500 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.out-now-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 2rem;
    letter-spacing: 0.2rem;
    z-index: 501;
}

.subtitle {
    margin-bottom: 2.5rem;
    color: white !important;
    font-size: 1.4rem;
    font-weight: 500;
    z-index: 501;
}

.brand-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    color: white;
    text-shadow: 0 4px 15px rgba(0,0,0,0.1);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}
/* For Firefox and fallback */
@supports not (-webkit-text-stroke: 4px white) {
    .brand-title { color: white; -webkit-text-stroke: 0; }
}

.subtitle {
    font-size: 1.4rem;
    color: #1A365D; /* Deep corporate blue for maximum contrast */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 25px rgba(255, 255, 255, 1), 0 0 10px rgba(255, 255, 255, 0.8); /* Multi-layered glow for legibility */
    position: relative;
    z-index: 100; /* In front of clouds */
}

/* Removed duplicate definitions to prevent alignment conflicts */

/* Section removed as it was a duplicate */

.hero-product-text {
    background: transparent;
    padding: 1rem 0;
    z-index: 10; /* Keep above waves tightly */
    position: relative;
    width: 100%;
}

.mockup-brand {
    font-size: 1.4rem;
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mockup-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    text-shadow: 0 4px 10px rgba(101, 177, 230, 0.8);
    margin-bottom: 0.5rem;
}

.mockup-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mockup-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

/* --- Performance Optimization (Off-screen sections) --- */
.about-section, .products, .contact {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px;
}


.badge.eco {
    color: var(--color-success);
}
.badge .icon { font-size: 1.5rem; }

/* --- Features Section --- */
.features {
    padding: var(--spacing-xl) 0;
    background: white;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.95); /* PERFORMANCE: No blur */
    padding: 3rem 2rem;
    border-radius: 20px; /* Simplified radius */
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(224, 242, 254, 0.9);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float-loop 3s ease-in-out infinite alternate;
}

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

/* --- Products / Lightbox Setup --- */
.products {
    padding: var(--spacing-xl) 0;
    background: var(--color-secondary);
    opacity: 1 !important;
    transform: none !important;
}

.products .section-title { color: var(--color-dark); }

.products-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .products-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    border: 1px solid var(--glass-border);
    border-radius: 20px; /* Simplified radius */
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9); /* Replaced heavy backdrop-filter with solid color */
    box-shadow: var(--box-shadow);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent);
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(154, 207, 241, 0.3);
}

.order-btn {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    background: var(--color-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-btn:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
}

/* --- Lightbox Overhaul (Image Focus) --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.9);
    z-index: 2500;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 800px;
    width: 100%;
    background: white;
    padding: 1rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoom-in 0.3s ease;
}

@keyframes zoom-in {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 16px;
}

.lightbox-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- Order / Contact Popup Modal --- */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: relative;
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 3rem 2rem;
    border-radius: 32px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: modal-slide-up 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes modal-slide-up {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #94a3b8;
}

.modal-header h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-top: 1rem;
}

.modal-form {
    margin-top: 2rem;
}

.modal-form .form-group {
    margin-bottom: 1rem;
}

.product-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    padding: 30px;
    transition: transform 0.8s ease;
}

.gallery-item:hover .product-img {
    transform: scale(1.1) rotate(2deg);
}

/* Lightbox Base Styles (Skill.md) */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- About & Contact Section (Fading/Cloud Transition Styling) --- */
.about-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #F8FAFC 0%, var(--color-secondary) 100%);
    text-align: center;
    position: relative;
    color: var(--color-dark);
}

.contact {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, var(--color-secondary) 0%, #F8FAFC 100%);
    text-align: center;
    position: relative;
    color: var(--color-dark);
}

.about-section .section-title, .contact .section-title {
    color: var(--color-dark);
}



.relative-z {
    position: relative;
    z-index: 50;
}

.contact-grid {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95); /* Solid fallback */
    border: 1px solid var(--glass-border);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    color: var(--color-dark);
}

.contact-form {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: left;
    background: rgba(255, 255, 255, 0.98); /* Heavy filter removed */
    padding: var(--spacing-xxl) var(--spacing-xl);
    border-radius: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.1);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--color-glow);
    opacity: 0.1; /* PERFORMANCE: Removed heavy blur, using low opacity instead */
    z-index: -1;
    border-radius: 50%;
}

.contact-form > * {
    position: relative;
    z-index: 1; /* keep inputs above the cloud bumps */
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 200px;
    padding: 1.2rem 2.5rem;
    background: radial-gradient(circle at top left, #ffffff, #E0F2FE);
    color: var(--color-dark);
    font-size: 1.1rem;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,1);
    border-radius: 40px; /* Simplified radius */
    box-shadow: 0 15px 35px rgba(154, 207, 241, 0.3), inset 0 0 10px rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-loop 4s ease-in-out infinite;
    margin: 0 auto;
    position: relative;
    overflow: visible; /* CRITICAL: Allows bumps to show outside boundary */
    z-index: 1;
}

.cta-button::before, .cta-button::after {
    content: '';
    position: absolute;
    background: inherit; /* Matches the button's gradient exactly */
    border: inherit;
    z-index: -1; 
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(154, 207, 241, 0.2);
}

.cta-button::before {
    width: 65px; height: 60px;
    top: -25px; left: 10%;
    border-radius: 50%;
}

.cta-button::after {
    width: 55px; height: 50px;
    bottom: -20px; right: 15%;
    border-radius: 50%;
}

.cta-button:hover {
    background: #ffffff;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 50px rgba(224, 242, 254, 1);
    border-radius: 40px 60px 40px 60px / 60px 40px 60px 40px;
}

.cta-button:hover::before { top: -20px; left: 25%; }
.cta-button:hover::after { bottom: -15px; right: 20%; }

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

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.footer-links {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

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

.copyright {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 0.5rem;
}

.credit {
    font-size: 0.8rem;
    color: #888;
}

.credit a {
    color: var(--color-primary);
}

/* --- WhatsApp Float --- */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 30px 40px 20px 40px / 40px 30px 40px 20px; /* organic cloud shape */
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    font-weight: bold;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: float-loop 4.5s ease-in-out infinite reverse;
}

.whatsapp-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* --- Order/Contact Modal Styles --- */
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
}

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

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 3001;
    animation: modal-up 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

@keyframes modal-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
}

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

.modal-header h2 {
    color: var(--color-primary);
    margin-top: 1rem;
    font-size: 1.8rem;
}

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

/* =====================================================
   🍪 Cookie Consent Banner
   ===================================================== */
/* --- Premium Cookie Popup (Cloud-themed) --- */
.cookie-popup {
    position: fixed;
    bottom: 30px; /* Aligned with typical float position */
    left: 30px;
    right: auto;
    max-width: 380px;
    width: 90%;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid var(--glass-border);
    /* Organic cloud-like shape */
    border-radius: 50px 80px 40px 70px / 70px 40px 80px 50px;
    padding: 1.8rem;
    box-shadow: 0 20px 50px rgba(154, 207, 241, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.6);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    will-change: transform, opacity;
}

.cookie-popup {
    /* Base visibility: hidden to start, then visible with hide class removal */
    visibility: visible;
    opacity: 1;
    transform: none;
}

.cookie-popup.hide {
    visibility: hidden;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
}

/* Extra cloud fluff for the popup */
.cookie-popup::before, .cookie-popup::after {
    content: '';
    position: absolute;
    background: inherit;
    border: inherit;
    z-index: -1;
}

.cookie-popup::before {
    width: 80px; height: 50px;
    top: -20px; left: 20%;
    border-radius: 50% 50% 0 0;
}

.cookie-popup::after {
    width: 60px; height: 40px;
    bottom: -15px; right: 25%;
    border-radius: 0 0 50% 50%;
}

.cookie-icon {
    font-size: 2.5rem;
    animation: float-loop 3s ease-in-out infinite;
}

.cookie-text p {
    font-size: 0.95rem;
    color: #1A365D;
    font-weight: 500;
    line-height: 1.5;
}

.cookie-popup .cta-button {
    min-width: 140px;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    animation: none; /* Keep static in popup */
}

.cookie-popup .cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background: white;
}
