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

:root {
    --classic-blue: #0099ff;
    --classic-blue-dark: #0066cc;
    --zero-ice: #f0f8ff;
    --zero-ice-dark: #d0e8ff;
    --mojito-green: #00cc66;
    --mojito-green-dark: #009944;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    pointer-events: auto;
}

.logo-icon {
    height: 45px;
    width: auto;
}

.logo-icon img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00aaff, #00ff88);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 1.5rem;
}

.language-switcher a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 0.3rem 0.5rem;
}

.language-switcher a:hover {
    color: #fff;
    transform: scale(1.05);
}

.language-switcher a.active {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.language-switcher .separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icons a:hover {
    transform: scale(1.1) translateY(-2px);
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icons .tiktok {
    background: #000;
    border: 2px solid #fff;
}

.social-icons .facebook {
    background: #1877f2;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 5% 4rem;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.45) 0%, rgba(0, 102, 204, 0.4) 50%, rgba(0, 77, 153, 0.45) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle-image {
    max-width: 300px;
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    filter: drop-shadow(0 4px 20px rgba(0, 170, 255, 0.3));
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -2px;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #0066cc;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.03);
}

.hero-visual {
    display: none;
}

/* Product Sections */
.product-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.product-section.classic {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
}

.product-section.zero {
    background: linear-gradient(135deg, #f0f8ff 0%, #d0e8ff 100%);
    color: var(--text-dark);
}

.product-section.mojito {
    background: linear-gradient(135deg, #00cc66 0%, #009944 100%);
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.product-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.product-section.reverse .product-content {
    order: 2;
    margin-left: auto;
}

.product-label {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.product-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.product-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    opacity: 0.95;
}

.product-features li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

.product-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.product-section.reverse .product-visual {
    order: 1;
}

.product-can {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Zero Section Specific Styles */
.product-section.zero .btn-primary {
    background: var(--text-dark);
    color: white;
}

.product-section.zero .btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.product-section.zero .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Advantages Section */
.advantages {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #000510 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 153, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0, 204, 102, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aaff, #00ff88);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 70px rgba(0, 170, 255, 0.25);
    border-color: rgba(0, 170, 255, 0.3);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(0, 170, 255, 0.3));
}

.advantage-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.advantage-description {
    font-size: 1.05rem;
    opacity: 0.85;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Events Section */
.events {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 153, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 204, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    z-index: 2;
    position: relative;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
    color: #00aaff;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00aaff, #00ff88);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 170, 255, 0.2);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1.1rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    padding: 6rem 5% 4rem;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-description {
    font-size: 1.3rem;
    opacity: 0.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00aaff, #00ff88);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00aaff;
}

.info-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-social {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #00aaff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: scale(1.1) translateY(-3px);
}

.social-links .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links .tiktok {
    background: #000;
    border: 2px solid #fff;
}

.social-links .facebook {
    background: #1877f2;
}

.social-links .twitter {
    background: #1DA1F2;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #00aaff;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00aaff;
    background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .error-message {
    color: #ff4444;
    font-size: 0.9rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ff4444;
}

.form-group.error .error-message {
    display: block;
}

.btn-submit {
    background: linear-gradient(135deg, #00aaff, #00ff88);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.4);
}

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

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-loading {
    display: none;
}

.form-message {
    padding: 1.2rem;
    border-radius: 10px;
    display: none;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.form-message i {
    font-size: 1.5rem;
}

.success-message {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    color: #00ff88;
}

.error-message-box {
    background: rgba(255, 68, 68, 0.1);
    border: 2px solid #ff4444;
    color: #ff4444;
}

.footer-text {
    opacity: 0.5;
    font-size: 0.95rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .floating {
        animation: none !important;
    }
}

/* Responsive Design */

/* Tablet Landscape - 1024px and below */
@media (max-width: 1024px) {
    nav {
        padding: 1rem 3%;
    }

    .nav-menu {
        gap: 1.8rem;
    }

    .nav-menu a {
        font-size: 0.95rem;
    }

    .hero, .product-section {
        flex-direction: column;
        text-align: center;
        padding: 6rem 3% 4rem;
        min-height: auto;
    }

    .hero-content, .product-content {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual, .product-visual {
        margin-top: 3rem;
        width: 100%;
    }

    .product-section.reverse .product-content,
    .product-section.reverse .product-visual {
        order: initial;
        margin-left: 0;
    }

    .hero-can, .product-can {
        max-width: 400px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        gap: 3rem;
    }
}

/* Tablet Portrait - 768px and below */
@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    nav {
        padding: 1rem 4%;
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        height: 40px;
    }

    .language-switcher {
        margin-right: 0.8rem;
    }

    .language-switcher a {
        font-size: 0.85rem;
        padding: 0.25rem 0.4rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Hero Section */
    .hero {
        padding: 5rem 4% 3rem;
        min-height: 90vh;
    }

    .hero-subtitle-image {
        max-width: 250px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }

    .hero-description {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Product Sections */
    .product-section {
        padding: 4rem 4% 3rem;
    }

    .product-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.2rem;
    }

    .product-label {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .product-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .product-features {
        margin-bottom: 2rem;
    }

    .product-features li {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .product-can {
        max-width: 320px;
    }

    .btn {
        padding: 1rem 2.2rem;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    /* Advantages Section */
    .advantages {
        padding: 4rem 4%;
    }

    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .section-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2.5px;
    }

    .section-description {
        font-size: 1.1rem;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantage-card {
        padding: 2.5rem 2rem;
    }

    .advantage-icon {
        font-size: 3.5rem;
    }

    .advantage-title {
        font-size: 1.6rem;
    }

    .advantage-description {
        font-size: 1rem;
    }

    /* Events Section */
    .events {
        padding: 4rem 4%;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-card {
        padding: 2.5rem 2rem;
    }

    .event-icon {
        font-size: 3rem;
    }

    .event-title {
        font-size: 1.6rem;
    }

    .event-description {
        font-size: 1rem;
    }

    /* Contact Section */
    .contact {
        padding: 4rem 4% 3rem;
    }

    .contact-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .contact-description {
        font-size: 1.15rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .info-item {
        padding: 1.2rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .social-links {
        flex-wrap: wrap;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .footer-text {
        font-size: 0.9rem;
        padding-top: 1.5rem;
    }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
    nav {
        padding: 0.8rem 3%;
    }

    .logo-icon {
        height: 35px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .language-switcher {
        margin-right: 0.5rem;
    }

    .language-switcher a {
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
    }

    .social-icons {
        gap: 0.6rem;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    /* Hero Section */
    .hero {
        padding: 4.5rem 3% 2.5rem;
        min-height: 85vh;
    }

    .hero-subtitle-image {
        max-width: 200px;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 12vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        align-items: center;
    }

    .hero-buttons .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }

    /* Product Sections */
    .product-section {
        padding: 3rem 3% 2.5rem;
    }

    .product-title {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .product-label {
        font-size: 0.8rem;
    }

    .product-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-features li {
        font-size: 0.95rem;
        padding-left: 1.8rem;
    }

    .product-features li::before {
        font-size: 1.1rem;
    }

    .product-can {
        max-width: 280px;
    }

    /* Advantages Section */
    .advantages {
        padding: 3rem 3%;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .advantage-card {
        padding: 2rem 1.5rem;
    }

    .advantage-icon {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }

    .advantage-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .advantage-description {
        font-size: 0.95rem;
    }

    /* Events Section */
    .events {
        padding: 3rem 3%;
    }

    .event-card {
        padding: 2rem 1.5rem;
    }

    .event-icon {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .event-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .event-description {
        font-size: 0.95rem;
    }

    /* Contact Section */
    .contact {
        padding: 3rem 3% 2.5rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }

    .contact-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 0.8rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-grid {
        gap: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.2rem;
    }

    .info-item {
        padding: 1rem;
        gap: 1rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .info-content h3 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-text {
        font-size: 0.85rem;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

/* Prevent horizontal scroll on all devices */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

/* Ensure video doesn't cause overflow */
.hero-video {
    min-width: 100%;
    min-height: 100%;
    object-position: center;
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .social-icons a,
    .social-links a,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Ensure buttons don't overflow */
    .btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
}

/* RTL Support for Arabic */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] nav {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
    margin-right: 0;
    margin-left: 1.5rem;
}

[dir="rtl"] .product-section.reverse .product-content {
    order: 1;
    margin-left: 0;
    margin-right: auto;
}

[dir="rtl"] .product-section.reverse .product-visual {
    order: 2;
}

[dir="rtl"] .product-features li {
    padding-left: 0;
    padding-right: 2rem;
}

[dir="rtl"] .product-features li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .advantage-card {
    text-align: center;
}

[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .info-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .info-item:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .form-group {
    text-align: right;
}

[dir="rtl"] .form-group input,
[dir="rtl"] .form-group textarea {
    text-align: right;
}

[dir="rtl"] .hero-buttons {
    flex-direction: column;
}

[dir="rtl"] .social-icons {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-links {
    flex-direction: row-reverse;
}

/* RTL Mobile Responsive */
@media (max-width: 768px) {
    [dir="rtl"] .language-switcher {
        margin-left: 0.8rem;
        margin-right: 0;
    }
    
    [dir="rtl"] .nav-menu {
        text-align: center;
    }
    
    [dir="rtl"] .nav-menu.active {
        right: 0;
        left: 0;
    }
    
    [dir="rtl"] .product-section.reverse .product-content {
        margin-right: 0;
    }
    
    [dir="rtl"] .hero-buttons {
        align-items: center;
    }
    
    [dir="rtl"] .contact-grid {
        text-align: right;
    }
}

@media (max-width: 480px) {
    [dir="rtl"] .language-switcher {
        margin-left: 0.5rem;
    }
    
    [dir="rtl"] .social-icons {
        gap: 0.6rem;
    }
}

/* Nutritional Information Styles */
.product-ingredients,
.product-nutrition {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-section.zero .product-ingredients,
.product-section.zero .product-nutrition {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

.product-ingredients h3,
.product-nutrition h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: inherit;
}

.product-section.zero .product-ingredients h3,
.product-section.zero .product-nutrition h3 {
    color: var(--text-dark);
}

.product-ingredients p {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.85;
}

.product-ingredients .warning-text {
    margin-top: 0.8rem;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 200, 0, 0.1);
    border-left: 3px solid #ffc800;
    border-radius: 5px;
    font-size: 0.85rem;
    opacity: 1;
}

.product-section.mojito .product-ingredients .warning-text {
    background: rgba(255, 200, 0, 0.15);
    border-left-color: #ffa500;
}

/* Nutrition Tables Container */
.nutrition-tables-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0.8rem;
}

.nutrition-table-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-section.zero .nutrition-table-container {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

.nutrition-table-container h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    opacity: 0.9;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-section.zero .nutrition-table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.nutrition-table tbody tr:last-child {
    border-bottom: none;
}

.nutrition-table td {
    padding: 0.5rem 0.3rem;
    font-size: 0.88rem;
}

.nutrition-table td:first-child {
    font-weight: 500;
    opacity: 0.85;
}

.nutrition-table td:last-child {
    text-align: right;
    font-weight: 600;
    opacity: 0.95;
}

.nutrition-table tr.indent td:first-child {
    padding-left: 1.2rem;
    font-size: 0.82rem;
    opacity: 0.75;
    font-weight: 400;
}

.nutrition-footnote {
    margin-top: 0.8rem;
    font-size: 0.78rem;
    opacity: 0.65;
    font-style: italic;
}

/* Responsive Nutritional Tables */
@media (max-width: 768px) {
    .product-ingredients,
    .product-nutrition {
        padding: 1.2rem;
        margin: 1.5rem 0;
        overflow-x: hidden;
    }

    .product-ingredients h3,
    .product-nutrition h3 {
        font-size: 1rem;
    }

    .product-ingredients p {
        font-size: 0.85rem;
    }

    .nutrition-tables-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
        overflow-x: hidden;
    }

    .nutrition-table-container {
        padding: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nutrition-table-container h4 {
        font-size: 0.9rem;
    }

    .nutrition-table {
        min-width: 280px;
    }

    .nutrition-table td {
        padding: 0.45rem 0.25rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .nutrition-table tr.indent td:first-child {
        padding-left: 1rem;
        font-size: 0.78rem;
    }

    .nutrition-footnote {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .product-ingredients,
    .product-nutrition {
        padding: 1rem;
        margin: 1.2rem 0;
    }

    .nutrition-table-container {
        padding: 0.6rem;
    }

    .nutrition-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.78rem;
    }

    .nutrition-table tr.indent td:first-child {
        padding-left: 0.8rem;
        font-size: 0.75rem;
    }
}
