/* Aqua Nest - Advanced Campa Layout System */
:root {
    --purple-deep: #240046;
    --purple-mid: #3C096C;
    --orange-vibrant: #FF9E00;
    --orange-red: #FF6D00;
    --text-white: #FFFFFF;
    --navy-dark: #10002B;

    --font-primary: 'Outfit', sans-serif;
    --font-display: 'Oswald', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    font-family: var(--font-primary);
    background-color: var(--navy-dark);
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
}

/* Menu backdrop overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1400;
    pointer-events: none;
}

body.menu-open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    /* Slight reduction */
    font-weight: 700;
    letter-spacing: 1px;
    font-style: italic;
    cursor: pointer;
    white-space: nowrap;
    /* Prevent logo wrapping */
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    /* Reduced from 3rem */
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.85rem;
    /* Reduced from 1rem */
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
    /* Prevent text wrapping */
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--orange-vibrant);
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    /* Compact padding */
    border: 1px solid white;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    white-space: nowrap;
}

.nav-btn:hover {
    background: white;
    color: var(--purple-deep) !important;
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 2000;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- DROPDOWN MENU STYLES --- */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: var(--navy-dark);
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    padding: 0.5rem 0;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: background 0.3s;
    cursor: pointer;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--orange-vibrant);
}

/* Ensure mobile overrides work */
@media screen and (max-width: 768px) {
    .nav-links a {
        font-size: 1.1rem;
        white-space: normal;
        justify-content: center;
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- HERO SECTION (Sunset Impact) --- */
.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #240046 0%, #5A189A 50%, #FF9E00 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 180px;
    /* Increased from 100px */
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    /* Force hidden on all sections */
}

.hero-text-container {
    text-align: center;
    z-index: 20;
    margin-bottom: 2rem;
}

.hero-tagline {
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: skew(-5deg);
}

.btn-cta {
    margin-top: 2rem;
    padding: 1rem 3rem;
    background: white;
    color: var(--purple-deep);
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.1) translateY(-5px);
}

/* --- HERO IMAGE SLIDER SECTION --- */
.hero-slider-section {
    padding-top: 100px;
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 550px;
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.45, 0, 0.15, 1);
}

.hero-slide {
    position: relative;
    width: 100%;
    flex: 0 0 calc(100% / 5);
    height: 100%;
    background: #0a001a;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottle wrapper — centered right */
.slide-bottle-wrap {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slide-bottle {
    height: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.7s cubic-bezier(0.45, 0, 0.15, 1), filter 0.7s ease;
}

/* === Slide Style 1 — Blue Glow + Floating === */
.slide-style-1 .slide-bottle {
    filter: drop-shadow(0 0 40px rgba(0, 150, 255, 0.5)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: bottleFloat 3s ease-in-out infinite;
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* === Slide Style 2 — Slight Tilt + Orange Glow === */
.slide-style-2 .slide-bottle {
    transform: rotate(-5deg) scale(1.05);
    filter: drop-shadow(0 0 35px rgba(255, 158, 0, 0.45)) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    animation: bottlePulse 2.5s ease-in-out infinite;
}

@keyframes bottlePulse {
    0%, 100% { transform: rotate(-5deg) scale(1.05); }
    50% { transform: rotate(-5deg) scale(1.1); }
}

/* === Slide Style 3 — Perspective Rotate + Purple Glow === */
.slide-style-3 .slide-bottle {
    transform: perspective(800px) rotateY(-8deg);
    filter: drop-shadow(0 0 40px rgba(150, 50, 255, 0.45)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: bottleSway 3.5s ease-in-out infinite;
}

@keyframes bottleSway {
    0%, 100% { transform: perspective(800px) rotateY(-8deg); }
    50% { transform: perspective(800px) rotateY(4deg); }
}

/* === Slide Style 4 — Soda Fizz + Cyan/Blue Glow === */
.slide-style-4 .slide-bottle {
    transform: rotate(3deg) scale(1.02);
    filter: drop-shadow(0 0 45px rgba(59, 130, 246, 0.6)) drop-shadow(0 0 25px rgba(6, 182, 212, 0.4)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: bottleFizz 2s ease-in-out infinite;
}

@keyframes bottleFizz {
    0%, 100% { transform: rotate(3deg) scale(1.02) translateY(0); }
    25% { transform: rotate(2deg) scale(1.04) translateY(-8px); }
    50% { transform: rotate(4deg) scale(1.02) translateY(-12px); }
    75% { transform: rotate(3deg) scale(1.05) translateY(-6px); }
}

/* === Slide Style 5 — Soda Spin + Gold/Blue Glow === */
.slide-style-5 .slide-bottle {
    transform: rotate(-4deg) scale(1.03);
    filter: drop-shadow(0 0 50px rgba(251, 191, 36, 0.5)) drop-shadow(0 0 30px rgba(59, 130, 246, 0.4)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: bottleSpin 3s ease-in-out infinite;
}

@keyframes bottleSpin {
    0%, 100% { transform: rotate(-4deg) scale(1.03) translateY(0); }
    33% { transform: rotate(-2deg) scale(1.05) translateY(-10px); }
    66% { transform: rotate(-6deg) scale(1.04) translateY(-5px); }
}

/* Text overlay on left side */
.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    z-index: 5;
    max-width: 600px;
}

.slide-content h2 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.slide-highlight {
    background: var(--orange-vibrant);
    color: #1a1a2e;
    padding: 2px 12px;
    border-radius: 4px;
    display: inline-block;
    text-shadow: none;
}

.slide-content p {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* Side Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-slider-arrow.hero-prev {
    left: 20px;
}

.hero-slider-arrow.hero-next {
    right: 20px;
}

.hero-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.1);
}

/* Bottom Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
    align-items: center;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.hero-dot.active {
    background: white;
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.5);
}

/* Hero Visuals (Group Shot) */
.hero-visuals {
    position: relative;
    width: 100%;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
    margin-bottom: -5vh;
}

.bottle {
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
    transition: transform 0.5s ease;
}

.bottle-center {
    height: 120%;
    z-index: 3;
    transform: translateY(10%);
}

.bottle-side {
    height: 90%;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4)) brightness(0.9);
}

.bottle-left {
    transform: rotate(-10deg) translateX(40px);
}

.bottle-right {
    transform: rotate(10deg) translateX(-40px);
}

/* --- LEGACY BANNER --- */
.legacy-banner {
    background: linear-gradient(90deg, #10002B, #3C096C);
    padding: 6rem 10%;
    position: relative;
    z-index: 10;
    box-shadow: 0 -50px 100px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.legacy-text h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-style: italic;
    line-height: 1;
    margin-bottom: 1rem;
}

.legacy-stat {
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange-vibrant);
    font-family: var(--font-display);
    font-style: italic;
    line-height: 1;
}

/* --- GRID SECTION --- */
.grid-section {
    padding: 100px 5%;
    background: #0d0022;
}

.grid-header {
    text-align: center;
    margin-bottom: 4rem;
}

.grid-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-style: italic;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ... */

.power-heading {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 0.9;
    font-style: italic;
    background: linear-gradient(to right, #e0aaff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    border-radius: 40px;
    height: 550px;
    position: relative;
    overflow: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-20px) scale(1.02);
    z-index: 2;
}

.card-bg-text {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.1;
    white-space: nowrap;
    z-index: 1;
}

.card-bottle {
    height: 70%;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.card:hover .card-bottle {
    transform: scale(1.1) rotate(5deg);
}

.card-info {
    z-index: 5;
    text-align: center;
    margin-top: 1rem;
}

.card-info h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-style: italic;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* --- SPORTS ACTION SECTION (Refresh the Josh) --- */
.sports-section {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at center, #0077b6 0%, #03045e 80%);
    overflow: hidden;
    text-align: center;
    color: white;
    border-top: 5px solid #00b4d8;
    border-bottom: 5px solid #00b4d8;
}

/* Abstract Stadium Lights Effect */
.sports-bg-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.sports-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-style: italic;
    text-shadow: 0 0 20px #00b4d8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.sports-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.sports-bottle {
    height: 500px;
    transform: rotate(5deg);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.sports-text-block {
    text-align: left;
    max-width: 400px;
}

.sports-feature {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-style: italic;
}

/* --- POWER UP SECTION --- */
.power-section {
    background: linear-gradient(135deg, #10002b 0%, #3c096c 100%);
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    position: relative;
}

.power-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Lightning/Energy Effect */
.power-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(224, 170, 255, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.power-bottle {
    height: 600px;
    z-index: 2;
    transform: rotate(-10deg);
    filter: drop-shadow(0 0 30px #e0aaff);
}

.power-content {
    flex: 1;
    text-align: right;
    z-index: 5;
    padding-right: 5%;
}

.power-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.9;
    font-style: italic;
    background: linear-gradient(to right, #e0aaff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    padding-right: 0.15em;
}

/* --- SODA SECTION --- */
.soda-section {
    background: linear-gradient(135deg, #0a0a1f 0%, #13132b 100%);
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.soda-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

/* Fizz/Bubble Effect */
.soda-spark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: soda-pulse 2s infinite;
}

@keyframes soda-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.soda-bottle {
    height: 600px;
    z-index: 2;
    transform: rotate(5deg);
    filter: drop-shadow(0 0 30px #3b82f6);
    animation: soda-float 3s ease-in-out infinite;
}

@keyframes soda-float {
    0%, 100% {
        transform: rotate(5deg) translateY(0);
    }
    50% {
        transform: rotate(5deg) translateY(-20px);
    }
}

.soda-content {
    flex: 1;
    text-align: left;
    z-index: 5;
    padding-left: 3rem;
}

.soda-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 0.9;
    font-style: italic;
    background: linear-gradient(to right, #3b82f6, #06b6d4, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

/* --- SPIRIT OF INDIA SECTION --- */
/* --- SPIRIT OF INDIA SECTION --- */
.spirit-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spirit-content {
    flex: 1;
    /* Premium Radial Gradient Background */
    background: radial-gradient(circle at 70% 50%, #5a189a 0%, #240046 60%, #10002b 100%);
    padding: 5rem 10vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
    overflow: hidden;
    width: 100%;
    gap: 4rem;
}

/* Gold Text Enhancement */
/* Gold Text Enhancement */
.spirit-title {
    font-family: var(--font-display);
    font-size: 5.5rem;
    /* Reduced from 6.5rem */
    font-style: italic;
    line-height: 0.9;
    margin-bottom: 2rem;
    /* Metallic Gold Gradient */
    background: linear-gradient(to right, #FFD700 0%, #FDB931 50%, #C77D00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
}

.spirit-text-group {
    flex: 1;
    max-width: 600px;
    z-index: 5;
}

.spirit-text-group h5 {
    font-size: 1.2rem;
    /* Reduced from 1.4rem */
    letter-spacing: 4px;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFD700;
}

.spirit-text-group p {
    font-size: 1.4rem !important;
    /* Reduced from 1.6rem */
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Add a Glow behind the bottle */
.spirit-glow {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translate(0, -50%);
    width: 600px;
    /* Increased glow size */
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}


/* --- PARTNER BANNER --- */
/* --- PARTNER BANNER --- */
.partner-banner {
    background: #0a001a;
    /* Very dark purple/black */
    padding: 3rem 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    /* Subtle Gold Border */
}

.partner-logo {
    height: 60px;
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
}

.partner-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(to right, #FFD700, #FDB931, #C77D00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}


.theme-red {
    background: linear-gradient(145deg, #6a040f, #370617);
}

.theme-orange {
    background: linear-gradient(145deg, #e85d04, #9d0208);
}

.theme-yellow {
    background: linear-gradient(145deg, #ffba08, #e85d04);
    color: #240046;
}

/* --- SPIRIT BOTTLE --- */
.spirit-bottle-center {
    margin-top: 2rem;
    width: 60%;
    max-width: 600px;
    /* Increased from 300px to 500px */
    height: auto;
    filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.4));
    z-index: 2;
    transform: rotate(5deg);
    transition: transform 0.5s ease;
}

.spirit-bottle-center:hover {
    transform: rotate(0deg) scale(1.05);
}

/* --- RESPONSIVE DESIGN --- */

/* --- TABLET (769px - 1024px) --- */
@media (max-width: 1024px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* Navigation - switch to burger menu */
    nav {
        padding: 1.2rem 4%;
    }

    .logo span {
        font-size: 1.8rem !important;
    }

    .logo img,
    nav .logo img {
        height: 55px !important;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 5%;
        height: auto;
        max-height: 85vh;
        top: 80px;
        background: rgb(20, 10, 50);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
        transform: translateX(120%);
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1500;
        pointer-events: auto;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        gap: 1rem;
        padding: 2rem 1.5rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 40px rgba(255, 105, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.5px;
        white-space: normal;
        justify-content: center;
        color: #ffffff !important;
        opacity: 1 !important;
        font-weight: 600;
        cursor: pointer;
        user-select: none;
    }

    .nav-btn {
        padding: 0.5rem 1.5rem;
        color: #ffffff !important;
        border-color: #ffffff !important;
        font-weight: 600;
    }

    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
        height: auto;
    }

    .dropdown > a {
        justify-content: center;
        cursor: pointer;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 100%;
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .dropdown.dropdown-open .dropdown-menu {
        display: flex;
        padding-top: 0.3rem;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.dropdown-open:hover .dropdown-menu {
        display: flex;
    }

    .dropdown-menu li {
        text-align: center;
        width: 100%;
    }

    .dropdown-menu a {
        font-size: 0.95rem;
        color: #ffffff !important;
        opacity: 1 !important;
        padding: 6px 0;
        font-weight: 500;
        cursor: pointer;
    }

    /* Hero */
    .hero {
        padding-top: 150px;
    }

    .hero-text-container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: clamp(4rem, 9vw, 6rem);
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .btn-cta {
        padding: 0.9rem 2.5rem;
        font-size: 0.9rem;
    }

    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero-slider-section {
        padding-top: 90px;
    }

    .slide-content {
        padding: 0 8%;
        max-width: 85%;
    }

    .slide-content h2 {
        font-size: 2.4rem;
        padding-right: 2rem;
    }

    .slide-content p {
        padding-right: 2rem;
    }

    .slide-bottle-wrap {
        right: 5%;
        height: 75%;
    }

    .hero-slider-arrow {
        width: 42px;
        height: 42px;
    }

    .hero-visuals {
        height: 40vh;
    }

    .bottle-center {
        height: 110%;
    }

    .bottle-side {
        height: 85%;
    }

    /* Legacy Banner */
    .legacy-banner {
        padding: 4.5rem 8%;
        gap: 2rem;
    }

    .legacy-text {
        padding: 0 1rem;
    }

    .legacy-text h2 {
        font-size: 2.8rem;
    }

    .legacy-text p {
        padding-right: 1rem;
    }

    .legacy-stat {
        font-size: 4rem;
        padding: 0 1rem;
    }

    /* Grid / Cards */
    .grid-section {
        padding: 80px 5%;
    }

    .grid-header {
        padding: 0 2rem;
    }

    .grid-title {
        font-size: 3rem;
    }

    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .card {
        height: 450px;
        border-radius: 30px;
    }

    .card-bg-text {
        font-size: 4.5rem;
    }

    .card-info h3 {
        font-size: 2rem;
    }

    /* Sports Section */
    .sports-section {
        padding: 80px 6%;
    }

    .sports-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .sports-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 0;
    }

    .sports-bottle {
        height: 340px;
        flex-shrink: 0;
        order: 0;
    }

    .sports-feature {
        font-size: 2rem;
        line-height: 1.1;
        text-align: center !important;
    }

    .sports-text-block {
        max-width: 100%;
        width: 100%;
        text-align: center !important;
        padding: 0;
    }

    .sports-content > .sports-text-block:first-child {
        order: 1;
    }

    .sports-content > .sports-text-block:last-child {
        order: 2;
        text-align: center !important;
    }

    /* Power Section */
    .power-section {
        padding: 80px 6%;
        flex-direction: column-reverse;
        text-align: center;
    }

    .power-visual {
        width: 100%;
        justify-content: center;
    }

    .power-content {
        text-align: center;
        width: 100%;
        padding: 0 5%;
        margin-bottom: 2rem;
        padding-right: 5%;
        box-sizing: border-box;
    }

    .power-heading {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-left: auto;
        margin-right: auto;
        -webkit-text-fill-color: transparent;
    }

    .power-content p {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0;
    }

    .power-content h5 {
        padding: 0;
    }

    .power-bottle {
        height: 380px;
    }

    .power-spark {
        width: 350px;
        height: 350px;
    }

    /* Soda Section */
    .soda-section {
        padding: 80px 6%;
        flex-direction: column;
        text-align: center;
    }

    .soda-visual {
        width: 100%;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .soda-content {
        text-align: center;
        width: 100%;
        padding: 0 2rem;
        padding-left: 2rem;
    }

    .soda-heading {
        font-size: 4rem;
        margin-left: auto;
        margin-right: auto;
    }

    .soda-content p {
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0;
    }

    .soda-content h5 {
        padding: 0;
    }

    .soda-bottle {
        height: 380px;
    }

    .soda-spark {
        width: 350px;
        height: 350px;
    }

    /* Spirit Section */
    .spirit-content {
        padding: 4rem 6%;
        gap: 2.5rem;
        flex-direction: column !important;
        text-align: center !important;
    }

    .spirit-text-group {
        width: 100%;
        padding: 0 2rem;
        text-align: center;
    }

    .spirit-title {
        font-size: 4rem;
    }

    .spirit-text-group p {
        font-size: 1.2rem !important;
        max-width: 100%;
        padding: 0;
    }

    .spirit-text-group h5 {
        padding: 0;
    }

    .spirit-bottle-center {
        width: 50%;
        max-width: 350px;
    }

    .spirit-glow {
        width: 400px;
        height: 400px;
    }

    /* Partner Banner */
    .partner-banner {
        padding: 2.5rem 6%;
    }

    .partner-text {
        font-size: 2.2rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1.2fr 0.8fr 1.2fr;
        gap: 2.5rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-contact .contact-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
    }

    /* Global Adjustments */
    .container {
        padding: 0 1.5rem;
    }

    section {
        min-height: auto;
        padding: 60px 0;
    }

    /* Navigation */
    nav {
        padding: 1rem 4%;
        background: rgba(16, 0, 43, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo img,
    nav .logo img {
        height: 45px !important;
    }

    .logo span {
        font-size: 1.5rem !important;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 5%;
        height: auto;
        max-height: 80vh;
        top: 70px;
        background: rgb(20, 10, 50);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
        transform: translateX(120%);
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1500;
        pointer-events: auto;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        gap: 1rem;
        padding: 1.5rem 1rem;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 40px rgba(255, 105, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 0.9rem;
        white-space: normal;
        justify-content: center;
        color: #ffffff !important;
        opacity: 1 !important;
        font-weight: 600;
        cursor: pointer;
        user-select: none;
    }

    .nav-btn {
        padding: 0.5rem 1.5rem;
        color: #ffffff !important;
        border-color: #ffffff !important;
        font-weight: 600;
    }

    /* Hero Section */
    .hero {
        padding-top: 30px;
        justify-content: flex-start;
        min-height: auto;
        padding-bottom: 0;
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        line-height: 1;
        margin-bottom: 1rem;
        transform: skew(-3deg);
    }

    .btn-cta {
        margin-top: 1.2rem;
        padding: 0.85rem 2.2rem;
        font-size: 0.85rem;
    }

    .hero-slider {
        height: 55vh;
        min-height: 340px;
    }

    .hero-slider-section {
        padding-top: 80px;
    }

    .slide-content {
        padding: 0 5%;
        max-width: 100%;
    }

    .slide-content h2 {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .slide-content p {
        font-size: 0.78rem;
        max-width: 320px;
    }

    .slide-bottle-wrap {
        right: -2%;
        height: 55%;
    }

    .slide-style-1 .slide-bottle {
        filter: drop-shadow(0 0 25px rgba(0, 150, 255, 0.4)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .slide-style-2 .slide-bottle {
        transform: rotate(-3deg) scale(1.03);
        filter: drop-shadow(0 0 25px rgba(255, 158, 0, 0.35)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .slide-style-3 .slide-bottle {
        transform: perspective(600px) rotateY(-5deg);
        filter: drop-shadow(0 0 25px rgba(150, 50, 255, 0.35)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .slide-style-4 .slide-bottle {
        transform: rotate(2deg) scale(1.01);
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5)) drop-shadow(0 0 15px rgba(6, 182, 212, 0.35)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .slide-style-5 .slide-bottle {
        transform: rotate(-3deg) scale(1.02);
        filter: drop-shadow(0 0 35px rgba(251, 191, 36, 0.45)) drop-shadow(0 0 20px rgba(59, 130, 246, 0.35)) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    }

    .hero-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .hero-slider-arrow.hero-prev {
        left: 10px;
    }

    .hero-slider-arrow.hero-next {
        right: 10px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 22px;
    }

    .hero-slider-dots {
        bottom: 16px;
    }

    .hero-visuals {
        height: 38vh;
        width: 100%;
        align-items: center;
        margin-bottom: 0;
        overflow: visible;
    }

    .bottle-center {
        height: 90%;
        transform: translateY(0);
    }

    .bottle-side {
        height: 65%;
        opacity: 0.5;
    }

    .bottle-left {
        transform: translateX(18px) rotate(-5deg);
    }

    .bottle-right {
        transform: translateX(-18px) rotate(5deg);
    }

    /* Legacy Banner */
    .legacy-banner {
        flex-direction: column;
        text-align: center;
        padding: 3.5rem 1.5rem;
        gap: 1.5rem;
    }

    .legacy-text h2 {
        font-size: 2rem;
    }

    .legacy-stat {
        font-size: 3rem;
    }

    .legacy-text p {
        font-size: 1rem !important;
    }

    /* Sports Section */
    .sports-section {
        padding: 70px 3%;
    }

    .sports-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 !important;
        max-width: 100%;
    }

    .sports-text-block {
        text-align: center !important;
        padding: 0 2rem;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .sports-content>.sports-text-block:first-child {
        order: 1;
    }

    .sports-content>.sports-text-block:last-child {
        order: 2;
        margin-bottom: 1rem;
    }

    .sports-bottle {
        height: auto;
        width: 70%;
        max-width: 320px;
        order: 3;
        margin-bottom: 0;
    }

    .sports-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        padding: 0 2.5rem;
    }

    .sports-feature {
        font-size: 1.6rem;
        padding: 0 1.5rem;
        line-height: 1.1;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    /* Power Section */
    .power-section {
        flex-direction: column-reverse;
        text-align: center !important;
        padding: 60px 5%;
        overflow: visible;
    }

    .power-content {
        text-align: center !important;
        margin-bottom: 2.5rem;
        padding: 0 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .power-content h5 {
        padding: 0 2rem;
    }

    .power-content p {
        font-size: 1rem !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 1rem;
    }

    .power-heading {
        font-size: clamp(2.2rem, 8.5vw, 3rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        line-height: 1.05;
        padding-right: 0.2em;
        box-sizing: border-box;
        word-wrap: break-word;
        transform: none;
    }

    .power-visual {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }

    .power-bottle {
        height: auto;
        width: 65%;
        max-width: 320px;
        transform: rotate(0);
    }

    .power-spark {
        width: 250px;
        height: 250px;
    }

    /* Soda Section */
    .soda-section {
        flex-direction: column;
        text-align: center !important;
        padding: 60px 5%;
    }

    .soda-content {
        text-align: center !important;
        padding-left: 0;
        padding: 0 1.5rem;
        order: 2;
    }

    .soda-content h5 {
        padding: 0 1rem;
    }

    .soda-content p {
        font-size: 1rem !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 0 0.5rem;
    }

    .soda-heading {
        font-size: clamp(2.2rem, 9vw, 3rem);
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        line-height: 1.05;
        padding: 0 1rem;
    }

    .soda-visual {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        order: 1;
        margin-bottom: 2.5rem;
    }

    .soda-bottle {
        height: auto;
        width: 65%;
        max-width: 350px;
        transform: rotate(0);
    }

    .soda-spark {
        width: 250px;
        height: 250px;
    }

    /* Grid Section */
    .grid-section {
        padding: 60px 5%;
    }

    .grid-title {
        font-size: 2.2rem;
    }

    .grid-header {
        margin-bottom: 2.5rem;
    }

    .cards-container {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 1.5rem;
    }

    .card {
        height: 420px;
        border-radius: 24px;
    }

    .card-bottle {
        height: 75%;
    }

    .card-bg-text {
        font-size: 4rem;
    }

    .card-info h3 {
        font-size: 1.8rem;
    }

    /* Spirit Section */
    .spirit-section {
        min-height: auto;
    }

    .spirit-content {
        padding: 3.5rem 5%;
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem;
    }

    .spirit-text-group {
        text-align: center;
    }

    .spirit-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .spirit-text-group h5 {
        font-size: 0.9rem !important;
        letter-spacing: 3px !important;
    }

    .spirit-text-group p {
        font-size: 1.1rem !important;
    }

    .spirit-bottle-center {
        width: 75%;
        max-width: 320px;
        margin-top: 1rem;
        transform: none !important;
    }

    .spirit-glow {
        width: 300px;
        height: 300px;
        right: 50%;
        transform: translate(50%, -50%);
    }

    /* Partner Banner */
    .partner-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .partner-text {
        font-size: 1.8rem;
    }

    .partner-logo {
        height: 45px;
    }
}

/* --- FOOTER MOBILE --- */
@media (max-width: 768px) {
    .modern-footer {
        padding: 3.5rem 5% 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand>div {
        justify-content: center;
        width: 100%;
    }

    .footer-brand>div img {
        height: 32px !important;
    }

    .footer-brand>div h2 {
        font-size: 1.2rem !important;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        margin-top: 2.5rem;
        padding-top: 1.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* --- SMALL PHONE (≤480px) --- */
@media (max-width: 480px) {

    html,
    body {
        overflow-x: hidden;
    }

    nav {
        padding: 0.75rem 4%;
    }

    .logo img,
    nav .logo img {
        height: 40px !important;
    }

    .logo span {
        font-size: 1.2rem !important;
    }

    .hero {
        padding-top: 20px;
        margin-top: 0;
    }

    .hero-title {
        font-size: 2.3rem;
        transform: skew(-2deg);
    }

    .btn-cta {
        padding: 0.75rem 1.8rem;
        font-size: 0.8rem;
    }

    .hero-slider {
        height: 40vh;
        min-height: 260px;
    }

    .slide-content h2 {
        font-size: 1.1rem;
    }

    .slide-content p {
        font-size: 0.72rem;
        max-width: 260px;
    }

    .slide-bottle-wrap {
        right: -3%;
        height: 45%;
    }

    .slide-style-2 .slide-bottle {
        transform: rotate(-2deg) scale(1.02);
    }

    .slide-style-3 .slide-bottle {
        transform: perspective(500px) rotateY(-3deg);
    }

    .slide-style-4 .slide-bottle {
        transform: rotate(1deg) scale(1.01);
    }

    .slide-style-5 .slide-bottle {
        transform: rotate(-2deg) scale(1.02);
    }

    .hero-slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.65rem;
    }

    .hero-visuals {
        height: 30vh;
    }

    .bottle-side {
        height: 55%;
        opacity: 0.35;
    }

    .legacy-text h2 {
        font-size: 1.6rem;
    }

    .legacy-stat {
        font-size: 2.5rem;
    }

    .sports-title {
        font-size: 1.8rem;
        padding: 0 2rem;
    }

    .sports-feature {
        font-size: 1.3rem;
        padding: 0 2rem;
    }

    .sports-section {
        padding: 60px 3%;
    }

    .sports-content {
        padding: 0 !important;
    }

    .sports-text-block {
        padding: 0 1.5rem;
    }

    .power-heading {
        font-size: 2rem;
    }

    .grid-title {
        font-size: 1.8rem;
    }

    .card {
        height: 370px;
        border-radius: 20px;
    }

    .card-bottle {
        height: 75%;
    }

    .card-bg-text {
        font-size: 3rem;
    }

    .card-info h3 {
        font-size: 1.5rem;
    }

    .spirit-title {
        font-size: 2.5rem;
    }

    .spirit-text-group p {
        font-size: 1rem !important;
    }

    .spirit-bottle-center {
        width: 65%;
        max-width: 280px;
    }

    .footer-contact .contact-item span {
        font-size: 0.85rem;
    }
}

/* --- UPGRADED MODERN FOOTER --- */
.modern-footer {
    background: linear-gradient(180deg, #0a0015 0%, #050010 100%);
    color: white;
    padding: 5rem 5% 2rem 5%;
    position: relative;
    overflow: hidden;
}

/* Glowing Top Border */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6c5ce7, #a29bfe, #6c5ce7, transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #a29bfe;
    transition: width 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-contact .contact-item i {
    color: #a29bfe;
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #a29bfe;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    /* Center the Logo Row */
    .footer-brand>div {
        justify-content: center;
        width: 100%;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Center Contact Items */
    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* --- MOBILE OPTIMIZATION & NAVIGATION --- */
@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    nav {
        padding: 1rem 4%;
        background: rgba(16, 0, 43, 0.97);
    }

    .nav-links {
        position: fixed;
        right: 5%;
        height: auto;
        max-height: 80vh;
        top: 70px;
        background: rgb(20, 10, 50);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 90%;
        max-width: 90%;
        transform: translateX(120%);
        transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 1500;
        pointer-events: auto;
        padding: 1.5rem 1rem;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 40px rgba(255, 105, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
        overflow-y: auto;
    }

    /* Active class toggled by JS */
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 1 !important;
        animation: navLinkFade 0.5s ease forwards 0.3s;
        margin: 0.6rem 0;
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 2px;
        color: #ffffff !important;
        opacity: 1 !important;
        font-weight: 600;
        cursor: pointer;
        user-select: none;
    }

    .burger {
        display: block;
        cursor: pointer;
        z-index: 2000;
    }

    /* Hero Fixes */
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-slider {
        height: 50vh;
        min-height: 320px;
    }

    .hero-visuals {
        height: 38vh;
        margin-bottom: 0;
        align-items: center;
    }

    .bottle-center {
        height: 90%;
        transform: translateY(0);
    }

    /* Upcoming Page specific tweaks */
    .upcoming-title {
        font-size: 2.2rem;
    }

    .upcoming-content {
        padding: 2rem 1.5rem;
    }

    /* Distributor Page specific tweaks */
    .distributor-hero-title {
        font-size: 2.5rem;
    }

    .form-card {
        padding: 2rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* Keyframes for nav links fade in */
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}