/* SUNSET WINES - Vanilla CSS implementation */

/* --- Custom Variables --- */
:root {
    --color-bg: #0D405B;
    --color-text: #FFF3DF;

    --color-navy: #163F63;
    --color-navy-dark: #102F49;
    --color-navy-light: #0B344B;

    --color-gold: #F7C672;
    --color-gold-hover: #F5B443;
    --color-gold-light: #FDE4B7;

    --color-orange: #EE8746;
    --color-orange-light: #F2B45D;
    --color-red: #D85C46;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-base: all 0.3s ease;
}

/* --- SEO Utilities --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- Resets & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* --- Utility Classes --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

.text-center {
    text-align: center;
}

.w-full {
    width: 100%;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-auto {
    margin-top: auto;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-20 {
    margin-bottom: 5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-xl {
    max-width: 36rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.logo-title,
.badge-tag,
.section-label,
.contact-title,
.closing-title {
    font-family: var(--font-heading);
}

.section-label {
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-gold);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-top: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-title.text-huge {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    .section-title.text-huge {
        font-size: 3.75rem;
    }
}

.section-p {
    font-size: 1.125rem;
    line-height: 2rem;
    color: rgba(255, 243, 223, 0.8);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-text);
}

.btn-primary:hover {
    background-color: var(--color-navy-dark);
}

.btn-outline {
    background-color: rgba(255, 243, 223, 0.05);
    /* slightly different for generic use */
    border: 1px solid rgba(246, 195, 107, 0.3);
    color: var(--color-text);
}

.btn-outline:hover {
    background-color: rgba(255, 243, 223, 0.1);
}

.btn-solid-gold {
    background-color: var(--color-gold);
    color: var(--color-navy);
}

.btn-solid-gold:hover {
    background-color: var(--color-gold-hover);
}

.btn-orange {
    background-color: var(--color-orange);
    color: var(--color-text);
}

.btn-orange:hover {
    background-color: var(--color-red);
}

/* --- Page Wrapper --- */
.page-wrapper {
    min-height: 100vh;
    overflow-x: hidden;
}

/* --- Hero Section --- */
.hero-wrapper {
    position: relative;
    min-height: calc(100vh - 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg);
    background-image: linear-gradient(to bottom, rgba(13, 64, 91, 0.55), rgba(13, 64, 91, 0.82)), url('PORTADA/hero_bg_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;

    max-width: 1280px;
    margin: 1.5rem auto 0 auto;
    border-radius: 20px;
    width: calc(100% - 3rem);
}

@media (min-width: 1024px) {
    .hero-wrapper {
        width: calc(100% - 5rem);
    }
}

.hero-ambient {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    pointer-events: none;
}

.ambient-light {
    position: absolute;
    border-radius: 9999px;
    filter: blur(48px);
}

.light-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 2rem;
    background-color: var(--color-gold-light);
}

.light-2 {
    top: 6rem;
    right: 2.5rem;
    width: 24rem;
    height: 2.5rem;
    background-color: #F7D89B;
}

.light-3 {
    top: 12rem;
    left: 33%;
    width: 8rem;
    height: 8rem;
    background-color: var(--color-gold);
    filter: blur(64px);
}

.main-header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
    width: 90%;
    max-width: 1200px;
    padding: 0.85rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(13, 64, 91, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 243, 223, 0.15);
    border-radius: 9999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-header.scrolled {
    background: rgba(13, 64, 91, 0.85);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1024px) {
    .main-header {
        padding: 0.85rem 3rem;
    }
}

.header-logo {
    display: flex;
    align-items: center;
    z-index: 102; /* Mantener encima del menú móvil */
}

.logo-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--color-text);
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.logo-subtitle {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.25em;
    color: rgba(255, 243, 223, 0.8);
}

/* --- Navigation System --- */
.main-nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
        align-items: center;
        gap: 2.25rem;
        font-size: 0.875rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .main-nav a {
        transition: var(--transition-base);
    }
    
    .main-nav a:hover {
        color: var(--color-gold);
    }
    
    .main-nav a.nav-event-pill {
        background-color: var(--color-orange);
        color: var(--color-text);
        padding: 0.4rem 1rem;
        border-radius: 9999px;
        font-weight: 700;
        animation: pulseOrange 2s infinite;
    }
    
    .main-nav a.nav-event-pill:hover,
    .main-nav a.nav-event-pill.active {
        background-color: var(--color-red);
        color: var(--color-text);
        animation: none;
        transform: translateY(-2px);
    }
    
    @keyframes pulseOrange {
        0% { box-shadow: 0 0 0 0 rgba(238, 135, 70, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(238, 135, 70, 0); }
        100% { box-shadow: 0 0 0 0 rgba(238, 135, 70, 0); }
    }
    
    .main-nav .nav-cta {
        background-color: var(--color-gold);
        color: var(--color-navy);
        padding: 0.6rem 1.5rem;
        border-radius: 9999px;
        transition: var(--transition-base);
    }
    
    .main-nav .nav-cta:hover {
        background-color: var(--color-gold-hover);
        color: var(--color-navy-dark);
        box-shadow: 0 0 15px rgba(247, 198, 114, 0.4);
    }

    .main-nav .mobile-langs {
        display: none; /* Ocultar idiomas del menú móvil en desktop */
    }
}

/* --- Mobile Menu Styles (< 1024px) --- */
@media (max-width: 1023px) {
    .main-nav {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        top: -1.5rem; /* Compensate for header top offset */
        left: -5%; /* Compensate for header width 90% */
        width: 111.11%; /* Compensate for header width 90% */
        min-height: 120vh; /* Make sure it extends past bottom */
        background: rgba(13, 64, 91, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 150px 2rem; /* Huge padding-bottom to push flags up */
        overflow-y: auto;
        gap: 1.75rem;
        z-index: 100;
        transform: translateY(-100%);
        transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        border-bottom: 1px solid rgba(247, 198, 114, 0.2);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav a {
        font-size: 1.5rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--color-text);
        font-family: var(--font-heading);
    }
    
    .main-nav a:hover {
        color: var(--color-gold);
    }
    
    .main-nav a.nav-event-pill {
        background-color: var(--color-orange);
        color: var(--color-text);
        padding: 0.4rem 1rem;
        border-radius: 9999px;
        font-weight: 700;
        animation: pulseOrange 2s infinite;
    }
    
    .main-nav a.nav-event-pill:hover,
    .main-nav a.nav-event-pill.active {
        background-color: var(--color-red);
        color: var(--color-text);
        animation: none;
        transform: translateY(-2px);
    }
    
    @keyframes pulseOrange {
        0% { box-shadow: 0 0 0 0 rgba(238, 135, 70, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(238, 135, 70, 0); }
        100% { box-shadow: 0 0 0 0 rgba(238, 135, 70, 0); }
    }
    
    .main-nav .nav-cta {
        background-color: var(--color-gold);
        color: var(--color-navy);
        padding: 0.75rem 2.5rem;
        border-radius: 9999px;
        font-weight: 700;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        margin-top: 1rem;
    }
    
    .main-nav .nav-cta:hover {
        background-color: var(--color-gold-hover);
    }

    /* Mobile Languages Section inside menu drawer */
    .mobile-langs {
        display: none; /* Removed from menu since they are now in the header */
    }

    .mobile-langs-title {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: rgba(255, 243, 223, 0.4);
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .mobile-langs-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: center;
        max-width: 320px;
    }
}

/* --- Header Right Section --- */
.header-right {
    display: flex;
    align-items: center;
    z-index: 102; /* Por encima de la navegación móvil */
}

/* Header Languages (Desktop) */
.header-langs {
    display: flex;
    gap: 0.85rem;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 243, 223, 0.15);
}

.lang-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.6rem;
    height: 1.6rem;
    background: rgba(255, 243, 223, 0.05);
    border: 1px solid rgba(255, 243, 223, 0.15);
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lang-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.lang-flag:hover {
    transform: scale(1.3) rotate(5deg);
    border-color: var(--color-gold);
    box-shadow: 0 0 15px rgba(247, 198, 114, 0.4);
}

.lang-flag:hover img {
    filter: brightness(1.1);
}

@media (max-width: 1023px) {
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .header-langs {
        display: flex;
        gap: 0.8rem;
        margin-left: auto;
    }
    .lang-flag {
        width: 1.6rem;
        height: 1.6rem;
    }
}

/* --- Mobile Menu Toggle Button --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-menu-btn:hover {
    color: var(--color-gold);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

@media (max-width: 1023px) {
    .mobile-menu-btn {
        display: block;
        margin-left: 1rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;

    opacity: 0;
    animation: fadeInScale 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@media (min-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding: 4rem 2rem;
        gap: 3.5rem;
        width: 100%;
        max-width: 1500px;
        margin: 0 auto;
    }

    .hero-visual-area {
        flex-shrink: 0;
    }

    .hero-text-area {
        flex: 1;
        max-width: 700px;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-logo-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    border: 1px solid rgba(247, 198, 114, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (min-width: 1024px) {
    .hero-logo-img {
        max-width: 460px;
    }
}

.hero-logo-img:hover {
    transform: scale(1.02);
}

.badge-tag {
    display: inline-flex;
    border-radius: 9999px;
    border: 1px solid rgba(22, 63, 99, 0.2);
    background-color: rgba(255, 243, 223, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--color-navy);
    backdrop-filter: blur(4px);
}

.hero-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    display: block;
    margin-bottom: 0.15rem;
}

.white-text {
    color: var(--color-text);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.highlight-text {
    color: var(--color-gold);
    text-shadow: 0 0 20px rgba(247, 198, 114, 0.3);
}

.hero-description {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 36rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.1rem;
    }
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

.hero-actions .btn-outline {
    background-color: rgba(255, 243, 223, 0.2);
    border-color: rgba(22, 63, 99, 0.3);
    color: var(--color-navy);
}

.hero-actions .btn-outline:hover {
    background-color: rgba(255, 243, 223, 0.3);
}

.hero-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    border-radius: 9999px;
    border: 1px solid rgba(22, 63, 99, 0.15);
    background-color: rgba(255, 243, 223, 0.2);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--color-navy);
}

/* Elaborate Hero Visual Art (mimicking the React version) */
.hero-visual-area {
    position: relative;
    max-width: 36rem;
    margin: 0 auto;
    width: 100%;
}

.visual-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 243, 223, 0.2);
    background-color: rgba(255, 243, 223, 0.1);
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.visual-art {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #F7C672 0%, #F2B45D 18%, #EE8746 36%, #D85C46 58%, #0D405B 76%, #0B344B 100%);
    overflow: hidden;
}

/* Decorative elements within the visual art */
.art-light-1 {
    position: absolute;
    left: 0;
    right: 0;
    top: 2.5rem;
    height: 1rem;
    background-color: rgba(255, 226, 168, 0.4);
    filter: blur(24px);
}

.art-sun {
    position: absolute;
    left: 50%;
    top: 7rem;
    transform: translateX(-50%);
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    background-color: #F5B443;
}

/* Abstract representations mimicking properties from code */
.visual-art::before {
    content: "";
    position: absolute;
    left: 2rem;
    top: 4rem;
    height: 0.75rem;
    width: 11rem;
    border-radius: 9999px;
    background-color: rgba(251, 225, 180, 0.35);
}

.visual-art::after {
    content: "";
    position: absolute;
    right: 2.5rem;
    top: 6rem;
    height: 0.75rem;
    width: 14rem;
    border-radius: 9999px;
    background-color: rgba(246, 212, 154, 0.3);
}

.art-wave-1 {
    position: absolute;
    left: 0;
    top: 9rem;
    height: 11rem;
    width: 18rem;
    background-color: var(--color-navy);
    clip-path: polygon(0% 100%, 0% 55%, 10% 55%, 10% 40%, 18% 40%, 18% 20%, 28% 20%, 28% 0%, 33% 0%, 33% 34%, 40% 34%, 40% 24%, 48% 24%, 48% 42%, 58% 42%, 58% 26%, 66% 26%, 66% 48%, 75% 48%, 75% 36%, 84% 36%, 84% 55%, 92% 55%, 92% 70%, 100% 100%);
}

.art-wave-2 {
    position: absolute;
    left: 45%;
    top: 31%;
    transform: translateX(-50%);
    height: 8rem;
    width: 14rem;
    border-radius: 48%;
    background-color: var(--color-navy);
}

.art-wave-3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 47%;
    height: 1px;
    background-color: rgba(255, 243, 223, 0.2);
}

.art-boat {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 53%;
    background: linear-gradient(180deg, #285A79 0%, #0D405B 100%);
}

.art-clouds {
    position: absolute;
    left: 12%;
    bottom: 5rem;
    height: 12rem;
    width: 20rem;
    background-color: var(--color-navy);
    clip-path: polygon(10% 100%, 0% 62%, 8% 44%, 20% 44%, 26% 26%, 58% 26%, 64% 0%, 72% 26%, 84% 26%, 94% 44%, 100% 62%, 92% 100%);
}

.art-bottle {
    position: absolute;
    right: 2.5rem;
    bottom: 3rem;
    height: 52%;
    width: 7rem;
    border-radius: 9999px 9999px 110px 110px;
    border: 10px solid var(--color-navy);
    background-color: rgba(246, 212, 154, 0.35);
}

.art-glass {
    position: absolute;
    right: 3.55rem;
    bottom: 10.6rem;
    height: 7rem;
    width: 4.6rem;
    border-radius: 0 0 50px 50px;
    background-color: rgba(171, 33, 39, 0.8);
}

.visual-floater {
    position: absolute;
    bottom: -1.25rem;
    left: -1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 243, 223, 0.2);
    background-color: var(--color-navy);
    padding: 1rem 1.25rem;
    color: var(--color-text);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.floater-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.floater-title {
    margin-top: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

/* --- Sections Common --- */
.section-container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .section-container {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
}

/* --- Benefits Banner --- */
.benefits-banner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(246, 195, 107, 0.2);
    background: linear-gradient(180deg, rgba(247, 198, 114, 0.15) 0%, rgba(216, 92, 70, 0.08) 50%, rgba(13, 64, 91, 0.25) 100%);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 1.5rem;
    }
}

.benefit-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(255, 243, 223, 0.05);
    padding: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.75rem;
    color: rgba(255, 243, 223, 0.9);
}

/* --- Experiencia --- */
.experience-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.services-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(255, 243, 223, 0.05);
    padding: 1.25rem;
}

.service-card .line-dec, .vp-card .line-dec {
    height: 0.5rem;
    width: 2.5rem;
    border-radius: 9999px;
    background-color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.service-card p, .vp-card p {
    line-height: 1.75;
    color: rgba(255, 243, 223, 0.85);
}

/* --- Packs --- */
.packs-header {
    margin-bottom: 3rem;
}

.packs-grid {
    margin-top: 3rem;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .packs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pack-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(255, 243, 223, 0.05);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(247, 198, 114, 0.15);
}

.pack-card.premium {
    border-color: rgba(247, 198, 114, 0.4);
    background: linear-gradient(180deg, rgba(247, 198, 114, 0.16) 0%, rgba(216, 92, 70, 0.12) 50%, rgba(255, 243, 223, 0.05) 100%);
}

.pack-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.pack-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.pack-badge {
    border-radius: 9999px;
    background-color: var(--color-navy);
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--color-text);
}

.pack-title {
    margin-top: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
}

.pack-desc {
    margin-top: 1rem;
    line-height: 1.75;
    color: rgba(255, 243, 223, 0.78);
}

.pack-features {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pack-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 243, 223, 0.88);
}

.pack-features li .dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-gold);
}

/* --- Target Groups --- */
.target-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.target-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(255, 243, 223, 0.05);
    padding: 1.75rem;
}

.target-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-gold);
}

.target-p {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 2rem;
    color: rgba(255, 243, 223, 0.82);
}

/* --- Value Prop --- */
.value-prop-box {
    border-radius: 2.5rem;
    border: 1px solid rgba(246, 195, 107, 0.2);
    background: linear-gradient(135deg, rgba(247, 198, 114, 0.16) 0%, rgba(216, 92, 70, 0.1) 50%, rgba(13, 64, 91, 0.35) 100%);
    padding: 2rem;
}

@media (min-width: 768px) {
    .value-prop-box {
        padding: 3rem;
    }
}

.value-prop-content {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .value-prop-content {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
    }
}

.value-points {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .value-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

.vp-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(22, 63, 99, 0.4);
    padding: 1.25rem;
    color: rgba(255, 243, 223, 0.85);
}

/* --- FAQ --- */
.faq-layout {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .faq-layout {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 2.5rem;
    }
}

.faq-list.accordion {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(255, 243, 223, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
    border-color: rgba(247, 198, 114, 0.3);
    background-color: rgba(255, 243, 223, 0.08);
}

.faq-item.active {
    border-color: rgba(247, 198, 114, 0.5);
    background-color: rgba(255, 243, 223, 0.1);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s;
}

.faq-item.active .faq-question {
    color: var(--color-gold);
}

.faq-icon {
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.4s;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    border-radius: 999px;
    transition: transform 0.4s;
}

/* Horizontal line */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Large enough to contain any answer */
    opacity: 1;
}

.faq-answer-content {
    padding: 0 2rem 2rem;
    line-height: 1.75;
    color: rgba(255, 243, 223, 0.75);
}

/* --- Closing Actions --- */
.closing-box {
    border-radius: 2rem;
    border: 1px solid rgba(246, 195, 107, 0.25);
    background: linear-gradient(90deg, rgba(247, 198, 114, 0.15) 0%, rgba(238, 135, 70, 0.12) 50%, rgba(216, 92, 70, 0.1) 100%);
    padding: 2rem;
    text-align: center;
}

.closing-actions {
    display: flex;
    justify-content: center;
}

.closing-actions a:hover {
    box-shadow: 0 0 25px rgba(247, 198, 114, 0.6);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.contact-info-card,
.contact-form-card {
    border-radius: 2rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(255, 243, 223, 0.05);
    padding: 2rem;
}

.contact-title {
    margin-top: 1rem;
    font-size: 1.875rem;
    font-weight: 700;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: rgba(255, 243, 223, 0.5);
    margin-bottom: 0.25rem;
}

.contact-link,
.contact-text {
    display: block;
    font-size: 1.125rem;
}

.contact-link:hover {
    color: var(--color-gold);
}

.booking-form {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr 1fr;
    }
}

.form-input,
.form-select,
.form-textarea {
    border-radius: 1rem;
    border: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(11, 52, 75, 0.6);
    padding: 1rem 1.25rem;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
    font-size: 1rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 243, 223, 0.35);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--color-gold);
}

.form-select {
    color: rgba(255, 243, 223, 0.7);
    appearance: none;
}

.full-width {
    grid-column: 1 / -1;
}

.form-footer {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .form-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.form-disclaimer {
    max-width: 28rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    color: rgba(255, 243, 223, 0.55);
}

/* --- Footer --- */
/* Language Grid in FAQ */
.lang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.lang-item {
    background: rgba(255, 243, 223, 0.05);
    border: 1px solid rgba(255, 243, 223, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.lang-item img {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 243, 223, 0.2);
}

.lang-item:hover {
    background: rgba(255, 243, 223, 0.1);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.main-footer {
    border-top: 1px solid rgba(255, 243, 223, 0.1);
    background-color: rgba(11, 52, 75, 0.4);
    padding: 3rem 0 1.5rem;
    color: rgba(255, 243, 223, 0.7);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
        text-align: center;
    }
}

.footer-links, .footer-contact-info p {
    justify-content: center;
}

.footer-logo {
    width: 130px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(0.9);
}

.footer-brand-text {
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 20rem;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(255, 243, 223, 0.05);
    border: 1px solid rgba(255, 243, 223, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-text);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 198, 114, 0.3);
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block; /* Removed fixed height, using margin for rhythm */
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    transition: all 0.3s;
    font-size: 0.95rem;
    display: block;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.footer-contact-info i {
    color: var(--color-gold);
    margin-right: 1rem;
    width: 1rem;
    text-align: center;
}

.footer-contact-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.legal-transparency {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 243, 223, 0.1);
    font-size: 0.825rem;
    color: rgba(255, 243, 223, 0.5);
}

.legal-transparency p {
    margin-bottom: 0.4rem;
}

.footer-cta-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    background: rgba(255, 243, 223, 0.05);
    border: 1px solid rgba(255, 243, 223, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-size: 0.875rem;
}

.newsletter-input:focus {
    border-color: var(--color-gold);
    outline: none;
}

.newsletter-btn {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: none;
    border-radius: 0.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background-color: var(--color-gold-light);
    transform: scale(1.05);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 243, 223, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    font-size: 0.825rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-copy {
    color: rgba(255, 243, 223, 0.3);
}

/* --- Active Flag Styling --- */
.lang-flag.active {
    border-color: var(--color-gold) !important;
    box-shadow: 0 0 10px rgba(247, 198, 114, 0.6) !important;
    transform: scale(1.15) rotate(3deg) !important;
}

/* --- Contact Form Status Feedback --- */
.form-status {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    display: none;
    line-height: 1.5;
    transition: var(--transition-base);
}

.form-status.success {
    display: block;
    background-color: rgba(247, 198, 114, 0.12);
    color: var(--color-gold);
    border: 1px solid rgba(247, 198, 114, 0.3);
}

.form-status.error {
    display: block;
    background-color: rgba(216, 92, 70, 0.12);
    color: #F87171;
    border: 1px solid rgba(216, 92, 70, 0.3);
}

.form-status.loading {
    display: block;
    background-color: rgba(255, 243, 223, 0.05);
    color: rgba(255, 243, 223, 0.7);
    border: 1px solid rgba(255, 243, 223, 0.1);
}

/* --- Upcoming Event Section --- */
.event-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: rgba(255, 243, 223, 0.03);
    border: 1px solid rgba(247, 198, 114, 0.2);
    border-radius: 2.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.event-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at top left, rgba(238, 135, 70, 0.15) 0%, transparent 50%),
                radial-gradient(circle at bottom right, rgba(247, 198, 114, 0.1) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.event-poster-container, .event-details-container {
    position: relative;
    z-index: 1;
}

.event-poster-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-poster {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.event-poster:hover {
    transform: translateY(-5px) scale(1.02);
}

.event-details-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-features-list {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.event-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: rgba(255, 243, 223, 0.9);
}

.event-features-list i {
    color: var(--color-gold);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.event-cta-box {
    margin-top: 3rem;
    background: rgba(13, 64, 91, 0.5);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(247, 198, 114, 0.1);
}

.event-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 243, 223, 0.6);
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .event-wrapper {
        flex-direction: row;
        padding: 4rem;
        align-items: center;
    }

    .event-features-list {
        grid-template-columns: 1fr 1fr;
    }
}

/* ======================= STICKY EVENT BANNER ======================= */
.sticky-event-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(13, 64, 91, 0.95) 0%, rgba(247, 198, 114, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(247, 198, 114, 0.3);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-icon {
    font-size: 1.5rem;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { opacity: 0.8; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.1); text-shadow: 0 0 10px rgba(247, 198, 114, 0.8); }
    100% { opacity: 0.8; transform: scale(0.95); }
}

.banner-text {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-banner {
    background: var(--color-text);
    color: var(--color-navy-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-banner:hover {
    background: var(--color-gold);
    color: var(--color-navy-dark);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .sticky-event-banner {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
        text-align: center;
        background: rgba(13, 64, 91, 0.98);
        border-top: 2px solid var(--color-gold);
    }
    
    .banner-content {
        justify-content: center;
    }
    
    .banner-text {
        font-size: 0.85rem;
    }
    
    .btn-banner {
        width: 100%;
        text-align: center;
    }
}

/* ======================= GIVEAWAY MODAL ======================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background-color: transparent;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-image-link {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border: 3px solid var(--color-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-image-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(247, 198, 114, 0.3);
}

.modal-image-link img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: var(--color-orange);
    color: white;
    transform: rotate(90deg);
}

/* ======================= SCROLL ANIMATIONS ======================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================= TESTIMONIALS ======================= */
.testimonials-header {
    text-align: left;
    margin-bottom: 3rem;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
    width: 100%;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none; /* Chrome */
}

.testimonial-card {
    min-width: 300px;
    max-width: 350px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: var(--color-gold);
    color: var(--color-navy);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.carousel-arrow.left-arrow {
    left: -1rem;
}

.carousel-arrow.right-arrow {
    right: -1rem;
}

.carousel-arrow:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    .carousel-arrow.left-arrow {
        left: 0;
    }
    .carousel-arrow.right-arrow {
        right: 0;
    }
}

.stars {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.test-text {
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.test-author {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounce-in 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #1EBE5D;
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

@keyframes bounce-in {
    0% { transform: scale(0); opacity: 0; }
    80% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 7rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }

    /* Rendimiento móvil: Desactivar filtros pesados */
    .hero-ambient, .ambient-light {
        display: none !important;
    }
    
    .main-header, .main-header.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(13, 64, 91, 0.95) !important;
    }
}
