/* ============================================
   PREMIUM DARK THEME - ANDRE RICHARD'S
   ============================================ */

/* CSS Variables - Premium Color Palette */
:root {
    /* Dark Base Colors */
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    
    /* Premium Accent Colors */
    --color-gold: #d4af37;
    --color-gold-light: #e5c158;
    --color-gold-dark: #b8941f;
    --color-copper: #b87333;
    --color-amber: #ffbf00;
    --color-amber-dark: #cc9900;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #b8b8b8;
    --color-text-muted: #6b6b6b;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #ffbf00 100%);
    --gradient-copper: linear-gradient(135deg, #b87333 0%, #d4af37 100%);
    --gradient-dark: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-arabic: 'Noto Sans Arabic', sans-serif;
    --font-farsi: 'Vazirmatn', sans-serif;
    
    /* Transitions - Elegant, Calm */
    --transition-fast: 0.2s ease-out;
    --transition-base: 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-elegant: 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    
    /* Shadows & Glows */
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
    --shadow-gold-strong: 0 0 50px rgba(212, 175, 55, 0.5);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Support for iPhone safe areas */
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

/* Arabic and Farsi font support */
body[dir="rtl"] {
    font-family: var(--font-arabic), var(--font-sans);
}

html[lang="fa"] body {
    font-family: var(--font-farsi), var(--font-sans);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
    padding-left: max(clamp(1rem, 3vw, 2rem), env(safe-area-inset-left, 0));
    padding-right: max(clamp(1rem, 3vw, 2rem), env(safe-area-inset-right, 0));
    width: 100%;
    box-sizing: border-box;
}

/* Navigation - Premium Dark Green Theme */
:root {
    --nav-height-desktop: 130px; /* nav-logo-container + nav-container */
    --nav-height-tablet: 140px;
    --nav-height-mobile: 130px; /* nav-logo-container (60px) + nav-container (70px) */
    --nav-height-small: 130px;
    --nav-height-xs: 130px;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 31, 13, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition-base);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    /* Support for iPhone safe areas */
    padding-top: env(safe-area-inset-top, 0);
    min-height: 130px; /* nav-logo-container + nav-container */
}

.nav.scrolled {
    background: rgba(13, 31, 13, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(212, 175, 55, 0.1);
}

/* Logo Container - Top Center */
.nav-logo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm) clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Mobile nav adjustments */
@media (max-width: 768px) {
    .nav-logo-container {
        padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    }
    
    .nav-logo {
        padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
    }
}

@media (max-width: 480px) {
    .nav-logo-container {
        padding: clamp(0.4rem, 1.2vw, 0.6rem) clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .nav-logo {
        padding: clamp(0.4rem, 0.8vw, 0.6rem) clamp(0.75rem, 1.5vw, 1rem);
        gap: clamp(0.5rem, 1vw, 0.75rem);
    }
    
    .logo-image {
        width: clamp(28px, 5vw, 36px);
        height: clamp(28px, 5vw, 36px);
    }
}

@media (max-width: 375px) {
    .nav-logo-container {
        padding: clamp(0.35rem, 1vw, 0.5rem) clamp(0.5rem, 1.2vw, 0.7rem);
    }
    
    .nav-logo {
        padding: clamp(0.35rem, 0.7vw, 0.5rem) clamp(0.6rem, 1.2vw, 0.9rem);
    }
}

@media (max-width: 320px) {
    .nav-logo-container {
        padding: clamp(0.3rem, 0.8vw, 0.45rem) clamp(0.45rem, 1vw, 0.6rem);
    }
    
    .nav-logo {
        padding: clamp(0.3rem, 0.6vw, 0.45rem) clamp(0.5rem, 1vw, 0.75rem);
    }
}

.nav-logo {
    text-align: center;
    position: relative;
    padding: 0.75rem 2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 1.2vw, 1rem);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-logo:hover {
    opacity: 0.85;
}

.logo-image {
    width: clamp(32px, 4vw, 48px);
    height: clamp(32px, 4vw, 48px);
    object-fit: contain;
    flex-shrink: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-logo:hover .logo-image {
    opacity: 0.85;
}

/* Nav Container - Bottom: Menu Left, Languages Right */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm) clamp(1rem, 3vw, 2rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    position: relative;
    z-index: 2;
    background: transparent;
}

.nav-logo-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    width: 100vw;
    background: rgba(250, 240, 230, 0.03);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(244, 228, 188, 0.08),
                inset 0 -1px 0 rgba(244, 228, 188, 0.08);
    pointer-events: none;
    z-index: 0;
}

.nav-logo-container:hover::before {
    background: rgba(250, 240, 230, 0.05);
    box-shadow: inset 0 1px 0 rgba(244, 228, 188, 0.12),
                inset 0 -1px 0 rgba(244, 228, 188, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-logo .logo-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #faf0e6 0%, #f4e4bc 30%, #e8dcc0 60%, #d4c5a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    letter-spacing: 0.02em;
    margin: 0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-logo:hover .logo-text {
    background: linear-gradient(135deg, #fffef7 0%, #faf0e6 25%, #f4e4bc 50%, #e8dcc0 75%, #d4c5a9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: clamp(0.75rem, 1.5vw, 1.5rem);
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    flex: 1;
}

.nav-menu a {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(0.75rem, 1.5vw, 1rem);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.nav-icon {
    display: none;
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

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

.nav-menu a:active {
    background: rgba(212, 175, 55, 0.15);
}

/* Language Switcher - Premium Design */
.lang-switcher {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    justify-content: flex-end;
    grid-column: 3;
    flex-shrink: 0;
    direction: ltr; /* Always LTR, even for RTL languages */
    margin: 0;
    padding: 0.25rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.lang-btn {
    padding: clamp(0.4rem, 0.8vw, 0.5rem) clamp(0.7rem, 1.2vw, 0.9rem);
    min-width: auto;
    height: auto;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    flex-shrink: 0;
    order: 0; /* Fixed order - no position change */
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.lang-btn.active {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-color: #d4af37;
    color: #0d1f0d;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.lang-name {
    display: block;
    line-height: 1.2;
    white-space: nowrap;
    font-size: inherit;
    font-weight: inherit;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.nav-toggle {
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #d4af37;
    transition: var(--transition-base);
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.3);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section - Premium Alcohol Brand Design */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Dynamic padding-top based on nav height + safe area */
    /* Desktop: nav-logo-container + nav-container = approximately 130px */
    padding-top: calc(130px + env(safe-area-inset-top, 0));
    padding-bottom: env(safe-area-inset-bottom, 0);
    margin-top: 0;
    background: #0d1f0d;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(13, 31, 13, 0.8) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(10, 24, 16, 0.6) 0%, transparent 50%),
        linear-gradient(180deg, #0d1f0d 0%, #0a1810 50%, #0d1f0d 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: visible;
    background-color: #FFF8DC; /* Немного желтоватый оттенок */
}

.hero-gradient {
    display: none;
}

.hero-glow {
    display: none;
}

/* Elegant Abstract Geometric Shapes - Premium Background */
.abstract-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    display: none;
    animation: subtleFloat 25s ease-in-out infinite;
    will-change: transform, opacity;
}

.abstract-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.55) 0%, transparent 70%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
    animation-delay: 0s;
}

.abstract-shape.shape-2 {
    width: 350px;
    height: 350px;
    bottom: 15%;
    right: -5%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.5) 0%, transparent 70%);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    filter: blur(50px);
    animation-delay: 5s;
}

.abstract-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, transparent 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(40px);
    animation-delay: 10s;
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    33% {
        transform: translate(20px, -30px) scale(1.05);
        opacity: 0.4;
    }
    66% {
        transform: translate(-15px, 20px) scale(0.98);
        opacity: 0.37;
    }
}


/* Grain Texture Overlay - Subtle Premium Feel */
.hero-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(212, 175, 55, 0.01) 0px, transparent 1px, transparent 2px, rgba(212, 175, 55, 0.01) 3px),
        repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.01) 0px, transparent 1px, transparent 2px, rgba(212, 175, 55, 0.01) 3px);
    background-size: 200px 200px;
    opacity: 0.15;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: clamp(0.5rem, 2vw, 1.5rem) var(--spacing-md);
    padding-top: clamp(1rem, 2vw, 2rem);
    padding-bottom: max(60px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1rem, 3vw, 3rem);
    align-items: center;
    position: relative;
    z-index: 2; /* Higher than hero-scroll */
    min-height: calc(100vh - 130px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    overflow: hidden;
    box-sizing: border-box;
}


@media (max-width: 968px) {
    :root {
        --nav-height-desktop: var(--nav-height-tablet);
    }
    
    .nav {
        min-height: 130px; /* nav-logo-container + nav-container */
    }
    
    .hero {
        /* Calculate padding-top based on actual nav height: nav-logo-container + nav-container */
        padding-top: calc(60px + 70px + env(safe-area-inset-top, 0));
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding: 10px;
        padding-bottom: max(50px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
        min-height: calc(100vh - 130px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hero-visual {
        order: -1;
        flex: 0 0 auto;
        max-height: 60vh;
        min-height: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: 0;
    }
    
    .hero-text {
        order: 2;
        flex: 1 1 auto;
        min-height: 0;
        align-items: center;
        text-align: center;
        gap: 10px;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 10px 10px 10px;
        margin: 0;
        margin-top: 0;
    }
    
    .hero-title {
        margin: 0;
        padding: 10px;
    }
    
    .title-line {
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        text-align: center;
        margin: 0;
        padding: 10px;
    }
    
    .hero-cta {
        align-items: center;
        justify-content: center;
        margin: 0;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        padding: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        margin: 0;
        padding: 10px;
    }
    
    .bottle-container {
        margin: 0 auto;
        padding: 10px;
    }
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 10px;
        margin: 0;
    }
    
    .hero-title {
        margin: 0;
        padding: 10px;
    }
    
    .title-line {
        font-size: clamp(1.3rem, 4vw, 2rem);
        line-height: 1.15;
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2.4vw, 1.2rem);
        line-height: 1.4;
        margin: 0;
        padding: 10px;
    }
    
    .bottle-container {
        max-height: calc(100vh - clamp(200px, 35vw, 250px));
        max-width: 100%;
        width: auto;
        height: auto;
        margin: 0;
        padding: 10px;
    }
    
    .hero-cta {
        max-width: 100%;
        margin: 0;
        gap: 10px;
        padding: 10px;
    }
    
    .hero-cta .btn {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        font-size: clamp(0.65rem, 1.8vw, 0.85rem);
        padding: 10px;
        margin: 0;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    position: relative;
    z-index: 3;
    justify-content: center;
    overflow: hidden;
    max-height: 100%;
    box-sizing: border-box;
    width: 100%;
    align-items: flex-start;
}

.hero-text .hero-title {
    width: 100%;
}

.hero-text .hero-subtitle {
    width: 100%;
    align-self: flex-start;
}

@media (max-width: 968px) {
    .hero-text {
        align-items: center;
        text-align: center;
    }
    
    /* RTL: Keep same center alignment as LTR */
    body.rtl .hero-content {
        direction: ltr !important;
        text-align: center !important;
    }
    
    body.rtl .hero-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    body.rtl .hero-title {
        text-align: center !important;
    }
    
    body.rtl .hero-subtitle {
        text-align: center !important;
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: center !important;
    }
    
    body.rtl .hero-cta {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .title-line {
        text-align: center !important;
    }
    
    body.rtl .hero-visual {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .bottle-container {
        margin: 0 auto !important;
    }
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    overflow: visible;
    line-height: 1.1;
}

.title-line {
    display: block;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: -0.1em;
    padding-bottom: 0.05em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-size: clamp(1.4rem, 5vw, 3.5rem);
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 968px) {
    .title-line {
        font-size: clamp(1.4rem, 5vw, 2.5rem);
        line-height: 1.15;
    }
}

.title-line:last-child {
    padding-bottom: 0.15em;
    margin-bottom: 0;
}

.title-line.animate {
    opacity: 1;
    transform: translateY(0);
}

.title-accent {
    color: #d4af37;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.8),
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.3);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: #ffffff;
    max-width: 100%;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    text-shadow: none;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.hero-subtitle br {
    display: block;
    content: "";
    margin-top: 0.5em;
}

@media (max-width: 968px) {
    .hero-subtitle {
        max-width: 100%;
        width: 100%;
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        line-height: 1.6;
    }
    
    .hero-text .hero-subtitle {
        align-self: flex-start;
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: flex-start !important; /* Same as LTR */
    }
}

.hero-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: clamp(0.5rem, 1.2vw, 0.75rem);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s, 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    margin-top: clamp(0.5rem, 1.5vw, 1rem);
    max-width: 100%;
    flex-wrap: wrap;
}

@media (min-width: 969px) {
    .hero-cta {
        flex-direction: row;
        align-items: center;
    }
}

.hero-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, var(--spacing-xs));
    padding: clamp(0.85rem, 1.2vw, 1rem) clamp(1.5rem, 2.5vw, 2rem);
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    min-height: 44px; /* Touch-friendly minimum */
    max-width: 100%;
    box-sizing: border-box;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #0d1f0d;
    border: none;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4),
                0 2px 12px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%);
}

.btn-primary svg {
    transition: var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    padding: clamp(1rem, 2vw, 1.25rem) clamp(2rem, 4vw, 2.5rem);
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.btn-secondary:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary svg {
    transition: var(--transition-base);
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Hero Visual - Premium Integration */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    transform: translateY(20px);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s, 
                transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
    margin-top: 0;
    position: relative;
    z-index: 2;
    height: auto;
    max-height: 100%;
    overflow: hidden;
}

.hero-visual:not(.animate) {
    opacity: 0;
    transform: translateY(20px);
}

.hero-visual.animate {
    opacity: 1 !important;
    transform: translateY(20px);
}

.bottle-container {
    position: relative;
    width: clamp(180px, 30vw, 450px);
    height: clamp(270px, 45vw, 675px);
    max-height: calc(100vh - 200px);
    max-width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-sizing: border-box;
    margin-top: clamp(20px, 3vw, 40px);
}

/* Mobile optimizations for bottle container */
@media (max-width: 768px) {
    .bottle-container {
        overflow: visible;
    }
    
    .hero-visual {
        overflow: visible;
    }
}

/* Elegant background panel - removed */
.bottle-container::before {
    display: none;
}

/* Elegant Abstract Geometric Composition - Premium Design */
.square-composition {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
    display: none;
    opacity: 0;
}

.square {
    position: absolute;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(1px);
    animation: floatShape 20s ease-in-out infinite;
    will-change: transform;
    display: none;
    opacity: 0;
}

/* Floating animation for geometric shapes */
@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(var(--rotation));
    }
    25% {
        transform: translate(15px, -20px) rotate(calc(var(--rotation) + 5deg));
    }
    50% {
        transform: translate(-10px, 15px) rotate(calc(var(--rotation) - 3deg));
    }
    75% {
        transform: translate(20px, 10px) rotate(calc(var(--rotation) + 4deg));
    }
}

/* Elegant geometric shapes - floating in different positions */
.square-1 {
    width: 180px;
    height: 180px;
    top: 8%;
    left: 5%;
    --rotation: 45deg;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.6;
    animation-duration: 18s;
    animation-delay: 0s;
}

.square-2 {
    width: 120px;
    height: 120px;
    top: 35%;
    left: -3%;
    --rotation: -30deg;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.5;
    animation-duration: 22s;
    animation-delay: 2s;
}

.square-3 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 8%;
    --rotation: 60deg;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    opacity: 0.55;
    animation-duration: 20s;
    animation-delay: 4s;
}

/* Right side - elegant floating forms */
.square-4 {
    width: 140px;
    height: 140px;
    top: 12%;
    right: 3%;
    --rotation: -45deg;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.5;
    animation-duration: 24s;
    animation-delay: 1s;
}

.square-5 {
    width: 100px;
    height: 100px;
    top: 55%;
    right: -2%;
    --rotation: 30deg;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    opacity: 0.45;
    animation-duration: 19s;
    animation-delay: 3s;
}

.square-6 {
    width: 160px;
    height: 160px;
    bottom: 18%;
    right: 6%;
    --rotation: -60deg;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.55;
    animation-duration: 21s;
    animation-delay: 5s;
}

.bottle-shape {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: none;
    z-index: 2;
    transition: filter 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-sizing: border-box;
    /* Ensure image is not cut off */
    overflow: visible;
}

.bottle-shape:hover {
    filter: none;
}

.bottle-shape::before {
    display: none;
}

.bottle-shape::after {
    display: none;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: max(var(--spacing-lg), env(safe-area-inset-bottom, 0));
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    opacity: 1 !important; /* Visible by default */
    transition: opacity 1s ease 0.6s;
    z-index: 1; /* Lower z-index to not overlap content */
    pointer-events: none; /* Allow clicks to pass through */
    width: auto;
    max-width: 100px;
}

@media (max-width: 968px) {
    .hero-scroll {
        display: flex !important; /* Показываем на мобильных */
        bottom: max(clamp(0.75rem, 2vw, 1rem), env(safe-area-inset-bottom, 0));
        z-index: 1; /* Lower z-index to not overlap content */
        opacity: 1 !important;
        pointer-events: none; /* Allow clicks to pass through */
        width: auto;
        max-width: 80px;
    }
    
    .hero-scroll span {
        font-size: clamp(0.65rem, 1.5vw, 0.75rem);
        color: #666666;
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        pointer-events: auto; /* Allow text to be readable */
    }
    
    .scroll-line {
        height: clamp(25px, 4vw, 35px);
        pointer-events: none;
    }
    
    /* Ensure containers respect safe areas */
    .container {
        padding-left: max(clamp(1rem, 2.5vw, 1.5rem), env(safe-area-inset-left, 0));
        padding-right: max(clamp(1rem, 2.5vw, 1.5rem), env(safe-area-inset-right, 0));
    }
}

.hero-scroll:not(.animate) {
    opacity: 0;
}

.hero-scroll.animate {
    opacity: 1 !important;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    pointer-events: auto; /* Allow text to be readable */
}

#hero .hero-scroll span {
    color: #666666;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    pointer-events: auto; /* Allow text to be readable */
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gradient-gold);
    animation: scrollLine 2s ease-in-out infinite;
    pointer-events: none; /* Allow clicks to pass through */
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 40px; opacity: 1; }
    100% { height: 0; opacity: 0; }
}

/* Hero Section Specific Styles - Black text and dark green accents */
#hero .title-line {
    color: #000000;
    text-shadow: none !important;
}

#hero .title-accent {
    color: #006400;
    text-shadow: none !important;
}

#hero .hero-subtitle {
    color: #000000;
    text-shadow: none !important;
}

#hero p {
    color: #000000;
    text-shadow: none !important;
}

#hero .btn-primary,
#hero .btn-secondary {
    color: #000000;
    text-shadow: none !important;
}

#hero .btn-primary:hover,
#hero .btn-secondary:hover {
    color: #006400;
}

/* Section Styles */
section {
    padding: clamp(3rem, 8vw, var(--spacing-xxl)) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, var(--spacing-xl));
    padding: 0 clamp(1rem, 3vw, 2rem);
    opacity: 1 !important; /* Visible by default */
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-header:not(.animate) {
    opacity: 0;
    transform: translateY(30px);
}

.section-header.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

.section-title {
    margin-bottom: clamp(0.75rem, 2vw, var(--spacing-sm));
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

.title-underline {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    margin: var(--spacing-sm) auto;
}

.section-subtitle {
    max-width: min(600px, 90vw);
    margin: clamp(1rem, 2.5vw, var(--spacing-md)) auto 0;
    font-size: clamp(0.95rem, 1.8vw, 1.125rem);
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0 clamp(1rem, 3vw, 2rem);
    line-height: 1.6;
}

/* Video Presentation Section */
.video-presentation {
    position: relative;
    width: 100%;
    padding: clamp(2rem, 5vw, 4rem) 0;
    margin: 0;
    overflow: hidden;
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(40vh, 50vw, 60vh);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(212, 175, 55, 0.1);
    border-radius: 0;
    padding: 0 clamp(0.5rem, 2vw, 1rem);
}

.presentation-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.95) contrast(1.05) saturate(1.05);
    transition: filter 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: filter;
}

.presentation-video:hover {
    filter: brightness(1) contrast(1.08) saturate(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.15) 0%,
        rgba(10, 10, 10, 0) 15%,
        rgba(10, 10, 10, 0) 85%,
        rgba(10, 10, 10, 0.15) 100%
    ),
    radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(10, 10, 10, 0.05) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* About Section */
.about {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(2rem, 5vw, var(--spacing-xl));
    align-items: center;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.about-text .lead {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.about-text p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 1), 0 2px 4px rgba(0, 0, 0, 0.8), 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.about-text .highlight {
    font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    color: #e5c158;
    font-style: italic;
    padding: var(--spacing-md);
    border-left: 3px solid var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.about-card {
    position: relative;
    width: 100%;
    max-width: 600px;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
    padding: 0;
    background: transparent;
    border: none;
    overflow: visible;
}

.card-glow {
    display: none;
}

.card-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2rem);
}

.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(2rem, 4vw, 3rem);
    background: linear-gradient(135deg, rgba(13, 31, 13, 0.95) 0%, rgba(10, 24, 16, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-left: 3px solid rgba(212, 175, 55, 0.6);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
}

.stat-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    border-left-color: rgba(212, 175, 55, 0.8);
    transform: translateX(4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(212, 175, 55, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: #d4af37;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3),
                 0 0 20px rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.stat-item:hover .stat-number {
    color: #e5c158;
    text-shadow: 0 2px 12px rgba(212, 175, 55, 0.4),
                 0 0 30px rgba(212, 175, 55, 0.2);
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: color 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.95);
}

/* Cocktails Section - Elegant Design */
.cocktails-section {
    background: var(--color-bg-primary);
    position: relative;
    padding: clamp(3rem, 8vw, 6rem) 0;
    min-height: auto;
}

.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(1.25rem, 3vw, 2rem);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Cocktail Card - Modern Premium Design with Images */
.cocktail-card {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 31, 13, 0.95) 0%, rgba(10, 24, 16, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: 
        transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0.0, 0.2, 1),
        border-color 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 360px;
    aspect-ratio: 4 / 5;
}

.cocktail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 
                0 0 0 1px rgba(212, 175, 55, 0.2),
                0 0 40px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.cocktail-card.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.cocktail-image-wrapper {
    position: relative;
    width: 100%;
    height: 55%;
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.cocktail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
                filter 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    filter: brightness(0.85) contrast(1.1);
}

.cocktail-card:hover .cocktail-image {
    transform: scale(1.08);
    filter: brightness(0.95) contrast(1.15);
}

.cocktail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(13, 31, 13, 0.3) 50%,
        rgba(13, 31, 13, 0.85) 100%
    );
    transition: background 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
}

.cocktail-card:hover .cocktail-overlay {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(13, 31, 13, 0.2) 50%,
        rgba(13, 31, 13, 0.75) 100%
    );
}

.cocktail-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1rem, 2vw, 1.75rem);
    background: linear-gradient(180deg, rgba(13, 31, 13, 0.95) 0%, rgba(10, 24, 16, 0.98) 100%);
    z-index: 2;
}

.cocktail-number {
    position: absolute;
    top: clamp(0.75rem, 1.5vw, 1.25rem);
    right: clamp(0.75rem, 1.5vw, 1.25rem);
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 300;
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
    letter-spacing: -0.05em;
    transition: color 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 3;
}

.cocktail-card:hover .cocktail-number {
    color: rgba(212, 175, 55, 0.2);
}

.cocktail-title {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.875rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 clamp(0.5rem, 1vw, 0.75rem) 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(212, 175, 55, 0.2);
    transition: color 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.cocktail-card:hover .cocktail-title {
    color: #e5c158;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9),
                 0 0 30px rgba(212, 175, 55, 0.3);
}

.cocktail-line {
    width: clamp(50px, 10vw, 80px);
    height: 2px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.6) 0%, rgba(212, 175, 55, 0.2) 100%);
    margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    z-index: 3;
}

.cocktail-card:hover .cocktail-line {
    width: clamp(70px, 12vw, 100px);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.9) 0%, rgba(212, 175, 55, 0.4) 100%);
}

.cocktail-btn {
    margin-top: auto;
    padding: clamp(0.6rem, 1.2vw, 0.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    font-weight: 600;
    color: rgba(13, 31, 13, 0.95);
    background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3),
                0 0 0 0 rgba(212, 175, 55, 0);
    transition: 
        transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
        border-color 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    align-self: flex-start;
}

.cocktail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4),
                0 0 0 2px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #e5c158 0%, #f0d175 100%);
    border-color: rgba(212, 175, 55, 0.5);
}

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

/* Recipe Detail Panel - Slide from Bottom - 90% Screen */
.recipe-detail {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    margin: 0 auto;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    overflow-y: auto;
    transition: bottom 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 24px 24px 0 0;
}

.recipe-detail.active {
    bottom: 0;
    transform: translateX(-50%);
}


.recipe-close {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.4rem, 0.8vw, 0.6rem);
    padding: clamp(0.6rem, 1.2vw, 0.85rem) clamp(1.25rem, 2.5vw, 1.75rem);
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    font-weight: 500;
    color: var(--color-bg-primary);
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    transition: 
        transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.recipe-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.recipe-close:active {
    transform: translateY(0);
}

.recipe-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.recipe-content {
    margin-top: 0;
}

.recipe-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #ffffff 0%, rgba(212, 175, 55, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.recipe-subtitle {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    font-weight: 500;
}

.recipe-section {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.recipe-section-title {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 1.6vw, 1.25rem);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.recipe-ingredients {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-ingredients li {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    padding: clamp(0.4rem, 0.8vw, 0.6rem) 0;
    padding-left: clamp(1.25rem, 2.5vw, 1.75rem);
    position: relative;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    font-weight: 300;
}

.recipe-ingredients li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 1.3em;
    font-weight: 300;
    opacity: 0.7;
}

.recipe-instruction {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
}

/* Typewriter Effect */
.typewriter {
    border-right: 2px solid var(--color-gold);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-gold); }
}

/* Overlay when detail is open */
.cocktails-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.cocktails-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 968px) {
    .cocktails-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .cocktail-card {
        min-height: 340px;
        aspect-ratio: 4 / 5;
    }

    .cocktail-image-wrapper {
        height: 52%;
    }
}

@media (max-width: 768px) {
    .cocktails-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
        gap: var(--spacing-md);
    }

    .cocktail-card {
        min-height: 320px;
    }

    .cocktail-content {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    .recipe-detail {
        width: 95%;
        max-width: 100%;
        max-height: 85vh;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 24px 24px 0 0;
    }
    
    .recipe-detail.active {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .cocktails-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .cocktail-card {
        min-height: 380px;
        max-width: 100%;
    }

    .cocktail-image-wrapper {
        height: 48%;
    }

    .cocktail-content {
        padding: clamp(1.25rem, 2.5vw, 1.75rem);
    }
}

@media (max-width: 480px) {
    .cocktail-card {
        min-height: 350px;
    }

    .cocktail-image-wrapper {
        height: 45%;
    }

    .cocktail-content {
        padding: clamp(1rem, 2vw, 1.5rem);
    }

    .cocktail-number {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .cocktail-title {
        font-size: clamp(1.125rem, 2.2vw, 1.625rem);
    }

    .cocktail-btn {
        width: 100%;
        justify-content: center;
        padding: clamp(0.65rem, 1.2vw, 0.8rem) clamp(1.125rem, 2.2vw, 1.625rem);
        font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    }
    
    .recipe-detail {
        padding: clamp(1rem, 2vw, 1.5rem);
        max-height: 85vh;
    }
    
    .recipe-close {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .cocktails-grid {
        gap: clamp(1rem, 2vw, 1.5rem);
        padding: 0 clamp(0.75rem, 1.5vw, 1rem);
    }

    .cocktail-card {
        min-height: 320px;
        aspect-ratio: 9 / 11;
    }

    .cocktail-image-wrapper {
        height: 42%;
    }

    .cocktail-content {
        padding: clamp(0.875rem, 1.8vw, 1.25rem);
    }

    .cocktail-number {
        top: clamp(0.5rem, 1vw, 0.75rem);
        right: clamp(0.5rem, 1vw, 0.75rem);
        font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    .cocktail-title {
        font-size: clamp(1rem, 2vw, 1.5rem);
        margin-bottom: clamp(0.4rem, 0.8vw, 0.6rem);
    }

    .cocktail-line {
        width: clamp(40px, 8vw, 60px);
        height: 1.5px;
        margin-bottom: clamp(0.75rem, 1.5vw, 1.25rem);
    }

    .cocktail-card:hover .cocktail-line {
        width: clamp(50px, 10vw, 70px);
    }

    .cocktail-btn {
        padding: clamp(0.55rem, 1vw, 0.7rem) clamp(1rem, 2vw, 1.5rem);
        font-size: clamp(0.7rem, 1.1vw, 0.8rem);
        letter-spacing: 0.06em;
    }
}

@media (max-width: 320px) {
    .cocktails-grid {
        gap: clamp(0.875rem, 1.8vw, 1.25rem);
        padding: 0 clamp(0.5rem, 1vw, 0.75rem);
    }

    .cocktail-card {
        min-height: 300px;
        aspect-ratio: 9 / 12;
    }

    .cocktail-image-wrapper {
        height: 40%;
    }

    .cocktail-content {
        padding: clamp(0.75rem, 1.5vw, 1rem);
    }

    .cocktail-number {
        top: clamp(0.4rem, 0.8vw, 0.6rem);
        right: clamp(0.4rem, 0.8vw, 0.6rem);
        font-size: clamp(1.5rem, 3vw, 2.25rem);
    }

    .cocktail-title {
        font-size: clamp(0.95rem, 1.8vw, 1.375rem);
        margin-bottom: clamp(0.35rem, 0.7vw, 0.5rem);
        line-height: 1.2;
    }

    .cocktail-line {
        width: clamp(35px, 7vw, 50px);
        height: 1.5px;
        margin-bottom: clamp(0.65rem, 1.3vw, 1rem);
    }

    .cocktail-card:hover .cocktail-line {
        width: clamp(45px, 9vw, 60px);
    }

    .cocktail-btn {
        padding: clamp(0.5rem, 0.9vw, 0.65rem) clamp(0.875rem, 1.7vw, 1.375rem);
        font-size: clamp(0.65rem, 1vw, 0.75rem);
        letter-spacing: 0.05em;
    }

    .recipe-detail {
        padding: clamp(0.875rem, 1.8vw, 1.25rem);
        width: 98%;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .process-card {
        padding: clamp(1rem, 2vw, 1.5rem);
    }

    .process-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .process-card-number {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .process-card-title {
        font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    }

    .process-card-text {
        font-size: clamp(0.875rem, 1.3vw, 0.95rem);
    }

    .about-text .lead {
        font-size: clamp(1.125rem, 1.8vw, 1.375rem);
    }

    .about-text p {
        font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    }

    .about-text .highlight {
        font-size: clamp(1rem, 1.6vw, 1.25rem);
        padding: clamp(0.75rem, 1.5vw, var(--spacing-md));
    }

    .contact-title {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .contact-text {
        font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    }
}

.card-back::-webkit-scrollbar {
    width: 4px;
}

.card-back::-webkit-scrollbar-track {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 2px;
}

.card-back::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 2px;
}

.card-back::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.6);
}

.card-number {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0.6;
}

.card-title {
    font-size: clamp(1.5rem, 2vw, 1.875rem);
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.card-back .card-title {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%;
}

.card-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: var(--spacing-md) auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.card-ingredients {
    list-style: none;
    margin: var(--spacing-lg) 0;
    text-align: left;
    width: 100%;
    padding: 0;
}

.card-ingredients::before {
    content: attr(data-label-ingredients);
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.card-ingredients li {
    padding: var(--spacing-sm) 0;
    color: #ffffff;
    position: relative;
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-sm);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-base);
}

.card-ingredients li:last-child {
    border-bottom: none;
}

.card-ingredients li:hover {
    color: var(--color-gold-light);
    padding-left: calc(var(--spacing-lg) + 4px);
}

.card-ingredients li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-base);
}

.card-ingredients li:hover::before {
    transform: translateX(2px);
    color: var(--color-gold-light);
}

.card-instruction {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    font-style: normal;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: left;
    position: relative;
}

.card-instruction::before {
    content: attr(data-label-instruction);
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    font-style: normal;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 1px 3px rgba(212, 175, 55, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    display: inline-block;
    margin-top: var(--spacing-xs);
}

/* Process Section */
.process {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.process .container {
    position: relative;
    z-index: 1;
}

/* Modern Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 3rem);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Elegant Process Cards */
.process-card {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: clamp(2rem, 4vw, 3rem);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15),
                0 0 0 1px rgba(212, 175, 55, 0.1);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover::after {
    opacity: 1;
}

.process-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Process Card Icon */
.process-card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
    z-index: 2;
}

.process-card:hover .process-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.3; }
}

.process-card:hover .icon-glow {
    opacity: 0.5;
}

.process-card-icon svg {
    position: relative;
    z-index: 1;
    color: var(--color-gold);
    transition: all 0.6s ease;
}

.process-card:hover .process-card-icon svg {
    color: var(--color-gold-light);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

/* Process Card Number */
.process-card-number {
    position: absolute;
    top: clamp(1.5rem, 3vw, 2rem);
    right: clamp(1.5rem, 3vw, 2rem);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    font-family: var(--font-serif);
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    transition: all 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.process-card:hover .process-card-number {
    color: rgba(212, 175, 55, 0.15);
    transform: scale(1.1);
}

/* Process Card Title */
.process-card-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.6s ease;
    position: relative;
    z-index: 1;
    padding-right: clamp(3rem, 6vw, 5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-card:hover .process-card-title {
    color: var(--color-gold-light);
}

/* Process Card Text */
.process-card-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1rem);
    transition: color 0.6s ease;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.process-card:hover .process-card-text {
    color: rgba(255, 255, 255, 0.95);
}

/* Process Card Line */
.process-card-line {
    position: absolute;
    bottom: 0;
    left: clamp(2rem, 4vw, 3rem);
    right: clamp(2rem, 4vw, 3rem);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.process-card:hover .process-card-line {
    opacity: 1;
}

/* Benefits Section - Removed */
.benefits {
    display: none !important;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.benefit-item {
    padding: var(--spacing-lg);
    background: var(--color-bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-base);
    opacity: 1 !important; /* Visible by default */
    transform: translateY(0);
}

.benefit-item:not(.animate) {
    opacity: 0;
    transform: translateY(15px); /* Reduced from 30px - more elegant */
}

.benefit-item.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

.benefit-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: var(--transition-base);
}

.benefit-item:hover .benefit-icon {
    background: rgba(212, 175, 55, 0.2);
    /* NO scale - elegant design */
}

.benefit-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.benefit-text {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.gallery {
    background: var(--color-bg-secondary);
    padding: var(--spacing-xxl) 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    opacity: 1 !important; /* Visible by default */
    transform: scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-item:not(.animate) {
    opacity: 0;
    transform: translateY(15px); /* Elegant fade-up instead of scale */
}

.gallery-item.animate {
    opacity: 1 !important;
    transform: translateY(0);
}

.gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-bg-secondary); /* Fallback color */
    position: relative;
    transition: transform var(--transition-elegant), filter var(--transition-elegant);
    filter: brightness(0.9) contrast(1.05);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.02); /* Subtle zoom on hover */
    filter: brightness(1) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    transition: var(--transition-base);
}

.gallery-item:hover .image-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.gallery-content {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    right: var(--spacing-md);
    z-index: 1;
}

.gallery-title {
    font-size: 1.5rem;
    color: #ffffff;
    opacity: 1 !important; /* Visible by default */
    transform: translateY(0);
    transition: var(--transition-base);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.gallery-item:not(:hover) .gallery-title {
    opacity: 0.7;
    transform: translateY(10px);
}

.gallery-item:hover .gallery-title {
    opacity: 1 !important;
    transform: translateY(0);
}

/* Contact Section */
.contact {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, var(--spacing-xl));
    max-width: min(1000px, 95vw);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: clamp(0.75rem, 2vw, var(--spacing-sm));
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.contact-text {
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9), 0 2px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-social {
    display: flex;
    gap: clamp(0.75rem, 1.5vw, var(--spacing-md));
    margin-top: clamp(1rem, 2vw, var(--spacing-md));
    flex-wrap: wrap;
}

.social-link {
    width: clamp(44px, 6vw, 48px);
    height: clamp(44px, 6vw, 48px);
    min-width: 44px; /* Touch-friendly minimum */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-gold);
    transition: var(--transition-base);
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
}

.social-link:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-label {
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    color: #e8e8e8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.4);
    margin-bottom: clamp(0.25rem, 0.5vw, var(--spacing-xs));
}

.form-input,
.form-textarea {
    padding: clamp(0.75rem, 1.2vw, var(--spacing-sm));
    background: var(--color-bg-secondary);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: var(--color-text-primary);
    font-family: var(--font-sans);
    font-size: clamp(0.95rem, 1.3vw, 1rem);
    transition: var(--transition-base);
    min-height: 44px; /* Touch-friendly minimum */
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: clamp(100px, 15vw, 120px);
    font-family: var(--font-sans);
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: clamp(2rem, 5vw, var(--spacing-xl)) 0 clamp(1rem, 2vw, var(--spacing-md));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(2rem, 5vw, var(--spacing-xl));
    margin-bottom: clamp(1.5rem, 3vw, var(--spacing-lg));
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(0.5rem, 1vw, var(--spacing-xs));
}

.footer-tagline {
    color: #e8e8e8;
    font-size: clamp(0.85rem, 1.3vw, 0.95rem);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.footer-title {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 600;
    margin-bottom: clamp(0.75rem, 1.5vw, var(--spacing-sm));
    color: var(--color-text-primary);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 0.8vw, var(--spacing-xs));
}

.footer-column a {
    color: #e8e8e8;
    font-size: clamp(0.85rem, 1.1vw, 0.9rem);
    transition: var(--transition-base);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.4);
    padding: 0.25rem 0;
    display: inline-block;
}

.footer-column a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: clamp(1rem, 2vw, var(--spacing-md));
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: #a0a0a0;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

/* Animations - Disabled as requested */
[data-animate] {
    opacity: 1 !important;
    transform: none !important;
}

/* Elegant fade-up - maximum 20px movement */
[data-animate="fade-up"]:not(.animate) {
    transform: translateY(15px);
}

[data-animate="fade-up"].animate {
    transform: translateY(0);
    opacity: 1;
}

/* Elegant fade-left - subtle */
[data-animate="fade-left"]:not(.animate) {
    transform: translateX(-15px);
}

[data-animate="fade-left"].animate {
    transform: translateX(0);
    opacity: 1;
}

/* Elegant fade-right - subtle */
[data-animate="fade-right"]:not(.animate) {
    transform: translateX(15px);
}

[data-animate="fade-right"].animate {
    transform: translateX(0);
    opacity: 1;
}

[data-animate="fade"]:not(.animate) {
    opacity: 0;
}

[data-animate="fade"].animate {
    opacity: 1;
}

/* Elegant scale - maximum 1.02, very subtle */
[data-animate="scale"]:not(.animate) {
    transform: scale(0.98);
    opacity: 0;
}

[data-animate="scale"].animate {
    transform: scale(1);
    opacity: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.2s !important;
    }
    
    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .product-card:hover {
        transform: none !important;
    }
}

/* Ensure animated elements are visible */
[data-animate].animate {
    opacity: 1 !important;
    transform: none;
}

/* Desktop Optimization - Medium Screens */
/* Hide close button and overlay on desktop */
@media (min-width: 969px) {
    .menu-close-btn-wrapper {
        display: none !important;
    }
    
    .nav-menu-overlay {
        display: none !important;
    }
    
    .nav-menu {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        width: auto !important;
        height: auto !important;
        flex-direction: row !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        overflow: visible !important;
        z-index: auto !important;
        gap: clamp(0.75rem, 1.5vw, 1.5rem) !important;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {
    .nav-container {
        gap: clamp(0.5rem, 1vw, 1rem);
        padding: var(--spacing-sm) clamp(1rem, 2vw, 1.5rem);
        grid-template-columns: 1fr auto 1fr;
    }
    
    .nav-menu {
        gap: clamp(0.4rem, 0.8vw, 0.9rem);
        justify-content: flex-start;
        grid-column: 1;
    }
    
    .nav-menu a {
        font-size: clamp(0.75rem, 0.95vw, 0.85rem);
        padding: 0.25rem 0;
    }
    
    .nav-logo {
        grid-column: 2;
        justify-self: center;
    }
    
    .nav-logo .logo-text {
        font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    }
    
    .lang-switcher {
        justify-content: flex-end;
        grid-column: 3;
        gap: 0.2rem;
    }
    
    .lang-btn {
        min-width: 30px;
        height: 30px;
        padding: 0.25rem 0.4rem;
        font-size: 0.65rem;
        gap: 0.2rem;
    }
}

/* Desktop Optimization - Large Screens */
@media (min-width: 1201px) {
    .nav-container {
        gap: clamp(1rem, 1.5vw, 1.75rem);
        grid-template-columns: 1fr auto 1fr;
    }
    
    .nav-menu {
        gap: clamp(0.75rem, 1.2vw, 1.25rem);
        justify-content: flex-start;
        grid-column: 1;
    }
    
    .nav-menu a {
        font-size: clamp(0.85rem, 1vw, 0.95rem);
    }
    
    .nav-logo {
        grid-column: 2;
        justify-self: center;
    }
    
    .lang-switcher {
        justify-content: flex-end;
        grid-column: 3;
    }

    .container {
        max-width: 1400px;
        padding: 0 clamp(2rem, 4vw, 3rem);
    }

    .about-content {
        gap: clamp(3rem, 6vw, var(--spacing-xl));
    }

    .contact-content {
        gap: clamp(3rem, 6vw, var(--spacing-xl));
    }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 clamp(2rem, 5vw, 4rem);
    }

    .cocktails-grid {
        max-width: 1600px;
    }

    .video-container {
        max-width: 1600px;
    }
}

/* Responsive Design */
/* Tablet Landscape Optimization */
@media (min-width: 769px) and (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(2rem, 4vw, 3rem);
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: clamp(1.5rem, 3vw, 2.5rem);
    }

    .process-card {
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }

    .process-card-icon {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 968px) {
    /* ============================================
       MOBILE MENU - Complete Rewrite
       ============================================ */
    
    /* Mobile Menu Overlay - Full screen blur background */
    .nav-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(13, 31, 13, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1), 
                    visibility 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        z-index: 9998;
        pointer-events: none;
    }

    .nav-menu-overlay.active {
        opacity: 0;
        visibility: visible;
        pointer-events: all;
    }

    /* Mobile Menu - Slide from right */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile */
        display: flex;
        flex-direction: column;
        background: rgba(13, 31, 13, 0.98);
        padding: 0;
        padding-top: env(safe-area-inset-top, 0);
        padding-bottom: env(safe-area-inset-bottom, 0);
        margin: 0;
        list-style: none;
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
        transition: right 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9999;
        gap: 0;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        right: 0;
    }

    /* RTL Support - Menu opens from left */
    body[dir="rtl"] .nav-menu {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid rgba(212, 175, 55, 0.3);
        box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);
    }

    body[dir="rtl"] .nav-menu.active {
        left: 0;
        right: auto;
    }

    /* Menu Close Button Wrapper */
    .menu-close-btn-wrapper {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 0;
        margin: 0;
        position: sticky;
        top: 0;
        background: rgba(13, 31, 13, 0.98);
        z-index: 1;
    }

    /* Menu Close Button */
    .menu-close-btn {
        width: 100%;
        background: transparent;
        border: none;
        padding: clamp(1.25rem, 3vw, 1.5rem);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: var(--color-gold);
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        font-size: 0;
        line-height: 0;
    }

    body[dir="rtl"] .menu-close-btn {
        justify-content: flex-start;
    }

    .menu-close-btn:hover,
    .menu-close-btn:focus {
        background: rgba(212, 175, 55, 0.1);
        color: var(--color-text-primary);
        outline: none;
    }

    .menu-close-btn svg {
        width: 24px;
        height: 24px;
        stroke-width: 2.5;
        flex-shrink: 0;
    }

    /* Menu Items */
    .nav-menu li:not(.menu-close-btn-wrapper) {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        padding: 0;
        margin: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    /* Menu Links */
    .nav-menu a {
        display: flex;
        align-items: center;
        gap: clamp(0.75rem, 1.5vw, 1rem);
        padding: clamp(1rem, 2vw, 1.25rem) clamp(1.5rem, 3vw, 2.5rem);
        font-size: clamp(0.9rem, 1.8vw, 1.125rem);
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        text-align: left;
        width: 100%;
        min-height: 44px; /* Touch-friendly */
    }
    
    @media (max-width: 375px) {
        .nav-menu a {
            padding: clamp(0.85rem, 1.8vw, 1rem) clamp(1.25rem, 2.5vw, 2rem);
            font-size: clamp(0.85rem, 1.6vw, 1rem);
        }
    }
    
    @media (max-width: 320px) {
        .nav-menu a {
            padding: 0.75rem 1rem;
            font-size: clamp(0.8rem, 1.4vw, 0.95rem);
        }
    }

    body[dir="rtl"] .nav-menu a {
        text-align: right;
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        color: #d4af37;
        background: rgba(212, 175, 55, 0.12);
        padding-left: clamp(2rem, 4vw, 3rem);
        outline: none;
        text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
    }
    
    body[dir="rtl"] .nav-menu a:hover,
    body[dir="rtl"] .nav-menu a:focus {
        padding-left: clamp(1.5rem, 3vw, 2.5rem);
        padding-right: clamp(2rem, 4vw, 3rem);
    }
    
    @media (max-width: 375px) {
        .nav-menu a:hover,
        .nav-menu a:focus {
            padding-left: clamp(1.75rem, 3.5vw, 2.5rem);
        }
        
        body[dir="rtl"] .nav-menu a:hover,
        body[dir="rtl"] .nav-menu a:focus {
            padding-left: clamp(1.25rem, 2.5vw, 2rem);
            padding-right: clamp(1.75rem, 3.5vw, 2.5rem);
        }
    }
    
    @media (max-width: 320px) {
        .nav-menu a:hover,
        .nav-menu a:focus {
            padding-left: 1.5rem;
        }
        
        body[dir="rtl"] .nav-menu a:hover,
        body[dir="rtl"] .nav-menu a:focus {
            padding-left: 1rem;
            padding-right: 1.5rem;
        }
    }

    .nav-menu a::after {
        display: none;
    }

    /* Menu Icons */
    .nav-icon {
        display: block;
        width: 22px;
        height: 22px;
        color: #d4af37;
        opacity: 0.7;
        flex-shrink: 0;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }

    .nav-menu a:hover .nav-icon,
    .nav-menu a:focus .nav-icon {
        opacity: 1;
        transform: scale(1.1);
        color: #d4af37;
        filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
    }

    /* Mobile Nav Container - Horizontal Layout */
    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) clamp(1rem, 3vw, 2rem);
    }

    /* Mobile Logo Container - Wider */
    .nav-logo-container {
        padding: var(--spacing-sm) clamp(0.5rem, 2vw, 1rem);
        min-height: 60px;
    }
    
    /* Calculate actual nav height for mobile */
    .nav {
        min-height: auto;
        height: auto;
    }
    
    /* Ensure nav-container has proper height */
    .nav-container {
        min-height: 70px;
    }

    /* Mobile Logo - Center */
    .nav-logo {
        order: 2;
        text-align: center;
        flex: 0 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.75rem clamp(1rem, 3vw, 2rem);
        gap: clamp(0.75rem, 2vw, 1rem);
        white-space: nowrap;
        min-width: fit-content;
    }

    /* Mobile Logo Image - Larger */
    .logo-image {
        width: clamp(48px, 8vw, 64px) !important;
        height: clamp(48px, 8vw, 64px) !important;
    }

    /* Mobile Logo Text - Larger */
    .nav-logo .logo-text {
        font-size: clamp(1.3rem, 4vw, 1.8rem) !important;
    }

    /* Mobile Language Switcher - Always Left */
    .lang-switcher {
        order: 1;
        justify-content: flex-start;
        gap: 0.25rem;
        direction: ltr; /* Always LTR for language switcher */
        flex: 0 0 auto;
        margin-right: auto;
    }

    body.rtl .lang-switcher {
        order: 1; /* Keep same order for RTL */
        justify-content: flex-start;
        margin-right: auto;
        margin-left: 0; /* Reset margin-left */
        direction: ltr; /* Always LTR for language switcher */
    }

    .lang-btn {
        min-width: auto;
        height: auto;
        padding: 0.35rem 0.65rem;
        font-size: 0.75rem;
    }


    /* Mobile Menu Toggle Button - Always Right - Highest z-index */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        order: 3;
        margin-left: auto;
        background: rgba(212, 175, 55, 0.15);
        border: 1px solid rgba(212, 175, 55, 0.4);
        border-radius: 8px;
        padding: 0.6rem;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        position: fixed;
        top: max(clamp(0.75rem, 2vw, 1rem), env(safe-area-inset-top, 0));
        right: max(clamp(0.75rem, 2vw, 1rem), env(safe-area-inset-right, 0));
        z-index: 10001;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    body[dir="rtl"] .nav-toggle {
        right: auto;
        left: max(clamp(0.75rem, 2vw, 1rem), env(safe-area-inset-left, 0));
    }

    .nav-toggle:hover,
    .nav-toggle:focus {
        background: rgba(212, 175, 55, 0.25);
        border-color: var(--color-gold);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
        outline: none;
    }

    .nav-toggle.active {
        background: rgba(212, 175, 55, 0.3);
        border-color: var(--color-gold);
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--color-gold);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
        transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        grid-template-columns: 0.9fr 1.1fr;
        text-align: left;
        gap: clamp(0.75rem, 2vw, 1.5rem);
        min-height: auto;
        padding: clamp(1rem, 2vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
        padding-bottom: max(50px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
        align-items: center;
        padding-top: clamp(1rem, 2vw, 1.5rem);
    }
    
    .hero-text {
        align-items: flex-start;
        height: auto;
        justify-content: flex-start;
        text-align: left;
        gap: clamp(1rem, 2vw, 1.5rem);
    }
    
    .hero-visual {
        height: auto;
        align-items: center;
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-subtitle {
        max-width: 100%;
        text-align: left;
    }
    
    .hero-title {
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }
    
    .hero-cta {
        margin-top: clamp(1rem, 2vw, 1.5rem);
    }
    
    
    .hero-grain {
        opacity: 0.1;
    }

    /* Hero Scroll - Center on mobile */
    .hero-cta {
        margin-bottom: clamp(2rem, 4vw, 3rem);
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    .hero-cta .btn {
        width: auto;
        justify-content: flex-start;
    }
    
    .hero-scroll {
        display: flex !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto !important;
        text-align: center;
        align-items: center;
        justify-content: center;
        bottom: clamp(1rem, 3vw, 1.5rem) !important;
        z-index: 1; /* Lower z-index to not overlap content */
        position: absolute;
        opacity: 1 !important;
        pointer-events: none; /* Allow clicks to pass through */
        width: auto;
        max-width: 80px;
    }

    body.rtl .hero-scroll {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
    
    .scroll-line {
        height: 30px;
        max-height: 30px;
    }
    
    @keyframes scrollLine {
        0% { height: 0; opacity: 0; }
        50% { height: 30px; opacity: 1; }
        100% { height: 0; opacity: 0; }
    }

    .bottle-container {
        width: clamp(160px, 35vw, 250px);
        height: clamp(240px, 52.5vw, 375px);
        max-height: calc(100vh - clamp(200px, 30vw, 250px));
        max-width: 100%;
        margin-top: clamp(15px, 2.5vw, 30px);
    }
    
    .hero-visual {
        max-height: 100%;
        overflow: hidden;
    }
    
    .hero-text {
        max-height: 100%;
        overflow: hidden;
    }
    
    .hero-cta .btn {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-visual {
        transform: translateY(15px);
        justify-content: center;
    }
    
    .hero-visual.animate {
        transform: translateY(15px);
    }
    
    .hero-title {
        text-align: left;
    }
    
    .title-line {
        text-align: left;
    }
    
    .hero-cta {
        align-items: flex-start;
        text-align: left;
        flex-wrap: wrap;
        gap: clamp(0.5rem, 1.5vw, 0.75rem);
    }
    
    .hero-cta .btn {
        width: auto;
        justify-content: flex-start;
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 1.75rem);
    }
    
    /* Abstract shapes on mobile - reduced size */
    .abstract-shape {
        opacity: 0.3;
    }
    
    .abstract-shape.shape-1 {
        width: 200px;
        height: 200px;
        filter: blur(40px);
    }
    
    .abstract-shape.shape-2 {
        width: 180px;
        height: 180px;
        filter: blur(35px);
    }
    
    .abstract-shape.shape-3 {
        width: 150px;
        height: 150px;
        filter: blur(30px);
    }
    
    /* Square composition on mobile - Floating Design */
    .square-composition {
        width: 120%;
        height: 120%;
    }
    
    .square-1 {
        width: 100px;
        height: 100px;
        top: 10%;
        left: 2%;
    }
    
    .square-2 {
        width: 80px;
        height: 80px;
        top: 38%;
        left: -2%;
    }
    
    .square-3 {
        width: 90px;
        height: 90px;
        bottom: 22%;
        left: 5%;
    }
    
    .square-4 {
        width: 85px;
        height: 85px;
        top: 15%;
        right: 1%;
    }
    
    .square-5 {
        width: 70px;
        height: 70px;
        top: 52%;
        right: -1%;
    }
    
    .square-6 {
        width: 95px;
        height: 95px;
        bottom: 18%;
        right: 3%;
    }
    

    /* Video Presentation - Mobile */
    .video-container {
        aspect-ratio: 16 / 9;
        max-width: 100%;
    }

    .presentation-video {
        filter: brightness(0.92) contrast(1.05);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-visual {
        justify-content: stretch;
    }

    .about-card {
        max-width: 100%;
    }

    .stat-item {
        padding: clamp(1.5rem, 3vw, 2.5rem);
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: clamp(1.5rem, 3vw, 2rem);
        padding: 0 clamp(1rem, 2.5vw, 1.5rem);
    }

    .process-card {
        padding: clamp(1.5rem, 3vw, 2rem);
    }

    .process-card-icon {
        width: 65px;
        height: 65px;
    }
}

/* Tablet Portrait and Small Screens */
@media (max-width: 768px) {
    .container {
        padding: 0 clamp(1rem, 2.5vw, 1.5rem);
    }

    .section-header {
        margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    }

    .section-subtitle {
        font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 3vw, 2rem);
        padding: 0 clamp(1rem, 2.5vw, 1.5rem);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .contact-social {
        flex-wrap: wrap;
        gap: clamp(0.75rem, 1.5vw, 1rem);
    }

    .social-link {
        width: clamp(40px, 6vw, 48px);
        height: clamp(40px, 6vw, 48px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: clamp(1.5rem, 4vw, 2.5rem);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2.5vw, 1.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height-desktop: var(--nav-height-mobile);
    }
    
    .nav {
        min-height: auto;
        height: auto;
    }
    
    .nav-container {
        min-height: 70px;
    }
    
    .hero {
        /* Calculate padding-top based on actual nav height: nav-logo-container (60px) + nav-container (70px) */
        padding-top: calc(60px + 70px + env(safe-area-inset-top, 0));
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }
    
    /* Hero content - vertical layout on small screens */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
        padding: 10px;
        padding-bottom: max(50px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
        min-height: calc(100vh - 130px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hero-visual {
        order: -1;
        flex: 0 0 auto;
        max-height: 60vh;
        min-height: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: 0;
    }
    
    .hero-text {
        order: 2;
        flex: 1 1 auto;
        min-height: 0;
        align-items: center;
        text-align: center;
        gap: 10px;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 10px 10px 10px;
        margin: 0;
        margin-top: 0;
    }
    
    .hero-title {
        margin: 0;
        padding: 10px;
    }
    
    .title-line {
        text-align: center;
        font-size: clamp(1rem, 3.2vw, 1.7rem);
        line-height: 1.15;
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: clamp(0.9rem, 2.2vw, 1.15rem);
        line-height: 1.4;
        margin: 0;
        padding: 10px;
    }
    
    .bottle-container {
        width: clamp(180px, 45vw, 280px);
        height: clamp(270px, 65vw, 420px);
        max-height: calc(100vh - clamp(180px, 32vw, 220px));
        max-width: 100%;
        margin: 0 auto;
        padding: 10px;
    }
    
    .hero-cta {
        align-items: center;
        justify-content: center;
        max-width: 100%;
        margin: 0;
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        font-size: clamp(0.6rem, 1.6vw, 0.78rem);
        padding: 10px;
        line-height: 1.3;
        margin: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .process-card {
        padding: clamp(1.25rem, 2.5vw, 1.75rem);
    }

    .process-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: clamp(1rem, 2vw, 1.5rem);
    }

    .stat-item {
        padding: clamp(1.5rem, 3vw, 2rem);
    }

    .stat-number {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .stat-label {
        font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    }

    .form-input,
    .form-textarea {
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        padding: clamp(0.75rem, 1.2vw, var(--spacing-sm));
    }

    .form-label {
        font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    }
}

@media (max-width: 480px) {
    :root {
        --nav-height-desktop: var(--nav-height-small);
    }
    
    .nav {
        min-height: 130px; /* nav-logo-container (60px) + nav-container (70px) */
    }
    
    /* Very small screens - stack vertically if needed */
    .hero {
        /* Calculate padding-top based on actual nav height: nav-logo-container (60px) + nav-container (70px) */
        padding-top: calc(60px + 70px + env(safe-area-inset-top, 0));
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 10px;
        padding-bottom: max(50px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
        min-height: calc(100vh - 130px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        gap: 10px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hero-visual {
        order: -1;
        flex: 0 0 auto;
        max-height: 60vh;
        min-height: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: 0;
    }
    
    .hero-text {
        order: 2;
        flex: 1 1 auto;
        min-height: 0;
        align-items: center;
        text-align: center;
        gap: 10px;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 10px 10px 10px;
        margin: 0;
        margin-top: 0;
    }
    
    .hero-title {
        margin: 0;
        padding: 10px;
        flex-shrink: 0;
    }
    
    .title-line {
        text-align: center;
        font-size: clamp(1rem, 3.5vw, 1.6rem);
        line-height: 1.1;
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: clamp(0.65rem, 1.6vw, 0.8rem);
        line-height: 1.4;
        margin: 0;
        padding: 10px;
        flex-shrink: 0;
    }
    
    .hero-cta {
        align-items: center;
        justify-content: center;
        margin: 0;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        flex-shrink: 0;
        padding: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        font-size: clamp(0.6rem, 1.6vw, 0.75rem);
        padding: 10px;
        line-height: 1.3;
        min-height: 40px;
        margin: 0;
    }
    
    .bottle-container {
        width: clamp(160px, 50vw, 260px);
        height: clamp(240px, 75vw, 380px);
        max-height: 55vh;
        margin: 0 auto;
        padding: 10px;
    }
    
    /* RTL: Keep same center alignment as LTR */
    body.rtl .hero-content {
        direction: ltr !important;
        text-align: center !important;
    }
    
    body.rtl .hero-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    body.rtl .hero-title {
        text-align: center !important;
    }
    
    body.rtl .hero-subtitle {
        text-align: center !important;
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: center !important;
    }
    
    body.rtl .hero-cta {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .title-line {
        text-align: center !important;
    }
    
    body.rtl .hero-visual {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .bottle-container {
        margin: 0 auto !important;
    }

    .stat-item {
        padding: clamp(1.25rem, 2.5vw, 1.75rem);
        border-left-width: 2px;
    }

    .stat-number {
        font-size: clamp(2rem, 4.5vw, 3rem);
        margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
    }

    .stat-label {
        font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    }

    .stat-item:hover {
        transform: translateX(2px);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    .process-card {
        padding: clamp(1rem, 2vw, 1.5rem);
    }

    .process-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }

    .process-card-number {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .contact-form {
        gap: clamp(0.75rem, 1.5vw, var(--spacing-md));
    }

    .form-group {
        gap: clamp(0.4rem, 0.8vw, var(--spacing-xs));
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* RTL Support */
body.rtl {
    direction: rtl;
}

/* RTL Support - Navbar stays the same for all languages */
body.rtl .nav-logo-container {
    direction: ltr; /* Keep navbar LTR */
}

body.rtl .nav-container {
    direction: ltr !important; /* Keep navbar LTR */
    flex-direction: row !important; /* Same as LTR - menu left, languages right */
}

body.rtl .nav-menu {
    direction: ltr !important; /* Keep menu LTR */
    justify-content: flex-start !important; /* Align menu to left */
}

body.rtl .lang-switcher {
    direction: ltr !important; /* Always LTR for language switcher */
}

@media (min-width: 969px) and (max-width: 1200px) {
    body.rtl .nav-container {
        direction: ltr !important;
        flex-direction: row !important; /* Same as LTR */
    }
    
    body.rtl .nav-menu {
        direction: ltr !important;
        justify-content: flex-start !important;
    }
    
    body.rtl .lang-switcher {
        direction: ltr !important;
    }
}

/* RTL: Keep same layout and positioning as LTR for all languages */
body.rtl .hero-content {
    direction: ltr !important; /* Same layout as LTR */
    text-align: left !important; /* Same as LTR */
}

body.rtl .hero-text {
    text-align: left !important; /* Same as LTR on desktop */
    align-items: flex-start !important; /* Same as LTR on desktop */
    direction: ltr !important; /* Same direction as LTR */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.rtl .hero-title {
    text-align: left !important; /* Same as LTR on desktop */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.rtl .hero-subtitle {
    text-align: left !important; /* Same as LTR on desktop */
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    max-width: 100%;
}

body.rtl .hero-text .hero-subtitle {
    align-self: flex-start !important; /* Same as LTR on desktop */
}

body.rtl .hero-cta {
    align-items: flex-start !important; /* Same as LTR on desktop */
    justify-content: flex-start !important; /* Same as LTR on desktop */
}

body.rtl .title-line {
    text-align: left !important; /* Same as LTR on desktop */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.rtl .hero-visual {
    align-items: center !important; /* Same as LTR */
    justify-content: center !important; /* Same as LTR */
}

body.rtl .bottle-container {
    margin: 0 auto !important; /* Same as LTR */
}

/* Desktop: Ensure RTL matches LTR positioning */
@media (min-width: 969px) {
    body.rtl .hero-content {
        direction: ltr !important;
        text-align: left !important;
    }
    
    body.rtl .hero-text {
        text-align: left !important;
        align-items: flex-start !important;
        direction: ltr !important;
    }
    
    body.rtl .hero-title {
        text-align: left !important;
    }
    
    body.rtl .hero-subtitle {
        text-align: left !important;
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: flex-start !important;
    }
    
    body.rtl .hero-cta {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    body.rtl .title-line {
        text-align: left !important;
    }
    
    body.rtl .hero-visual {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .bottle-container {
        margin: 0 auto !important;
    }
}

/* Mobile: Center alignment for all languages */
@media (max-width: 968px) {
    body.rtl .hero-text {
        text-align: center !important; /* Center align on mobile */
        align-items: center !important; /* Center align on mobile */
    }
    
    body.rtl .hero-title {
        text-align: center !important; /* Center align on mobile */
    }
    
    body.rtl .hero-subtitle {
        text-align: center !important; /* Center align on mobile */
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: center !important; /* Center align on mobile */
    }
    
    body.rtl .hero-cta {
        align-items: center !important; /* Center align on mobile */
        justify-content: center !important; /* Center align on mobile */
    }
    
    body.rtl .title-line {
        text-align: center !important; /* Center align on mobile */
    }
}

body.rtl .about-content {
    direction: rtl;
}

body.rtl .contact-content {
    direction: rtl;
}

body.rtl .footer-content {
    direction: rtl;
}

body.rtl .process-grid {
    direction: rtl;
}

body.rtl .process-card {
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

body.rtl .process-card-number {
    right: auto;
    left: clamp(1.5rem, 3vw, 2rem);
    z-index: 0;
}

body.rtl .process-card-icon {
    margin-right: 0;
    margin-left: auto;
    z-index: 2;
}

body.rtl .process-card-title {
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
    padding-right: 0;
    padding-left: clamp(3rem, 6vw, 5rem);
}

body.rtl .process-card-text {
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    z-index: 1;
}

body.rtl .process-card-line {
    left: clamp(2rem, 4vw, 3rem);
    right: clamp(2rem, 4vw, 3rem);
}

body.rtl .card-number {
    right: var(--spacing-md);
    left: auto;
}

body.rtl .card-ingredients li {
    padding-right: var(--spacing-md);
    padding-left: 0;
}

body.rtl .card-ingredients li::before {
    right: 0;
    left: auto;
}

body.rtl .about-text .highlight {
    border-right: 3px solid var(--color-gold);
    border-left: none;
    padding-right: var(--spacing-md);
    padding-left: 0;
}

body.rtl .stat-item {
    border-right: 3px solid rgba(212, 175, 55, 0.6);
    border-left: 1px solid rgba(212, 175, 55, 0.15);
}

body.rtl .stat-item:hover {
    border-right-color: rgba(212, 175, 55, 0.8);
    transform: translateX(-4px);
}

@media (max-width: 640px) {
    body.rtl .stat-item:hover {
        transform: translateX(-2px);
    }
    
    body.rtl .hero-content {
        direction: ltr !important; /* Keep same layout as LTR */
        text-align: center !important;
    }
    
    body.rtl .hero-text {
        text-align: center !important; /* Center align like LTR */
        align-items: center !important; /* Center align like LTR */
    }
    
    body.rtl .hero-title {
        text-align: center !important; /* Center align like LTR */
    }
    
    body.rtl .hero-subtitle {
        text-align: center !important; /* Center align like LTR */
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: center !important; /* Center align like LTR */
    }
    
    body.rtl .hero-cta {
        align-items: center !important; /* Center align like LTR */
        justify-content: center !important; /* Center align like LTR */
    }
    
    body.rtl .title-line {
        text-align: center !important; /* Center align like LTR */
    }
    
    body.rtl .hero-visual {
        align-items: center !important; /* Center align like LTR */
        justify-content: center !important; /* Center align like LTR */
    }
    
    body.rtl .bottle-container {
        margin: 0 auto !important; /* Center align like LTR */
    }
    
    body.rtl .process-card-number {
        right: auto;
        left: clamp(1rem, 2vw, 1.5rem);
    }
}

/* Print Styles */
@media print {
    .nav,
    .hero-scroll,
    .contact-form {
        display: none;
    }
}

/* ============================================
   Very Small Screens (iPhone SE, iPhone mini)
   ============================================ */
@media (max-width: 375px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 clamp(0.75rem, 2vw, 1rem);
    }
    
    /* Hero Section */
    :root {
        --nav-height-desktop: var(--nav-height-xs);
    }
    
    .nav {
        min-height: 130px; /* nav-logo-container (60px) + nav-container (70px) */
    }
    
    .hero {
        /* Calculate padding-top based on actual nav height: nav-logo-container (60px) + nav-container (70px) */
        padding-top: calc(60px + 70px + env(safe-area-inset-top, 0));
        padding-bottom: env(safe-area-inset-bottom, 0);
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 10px;
        padding-left: max(10px, env(safe-area-inset-left, 0));
        padding-right: max(10px, env(safe-area-inset-right, 0));
        padding-bottom: max(50px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
        gap: 10px;
        min-height: calc(100vh - 130px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
    }
    
    .hero-visual {
        order: -1;
        flex: 0 0 auto;
        max-height: 58vh;
        min-height: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: 0;
    }
    
    .hero-text {
        order: 2;
        flex: 1 1 auto;
        min-height: 0;
        align-items: center;
        text-align: center;
        gap: 10px;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 10px 10px 10px;
        margin: 0;
        margin-top: 0;
    }
    
    .hero-title {
        margin: 0;
        padding: 10px;
    }
    
    .title-line {
        text-align: center;
        font-size: clamp(1rem, 3.5vw, 1.5rem);
        line-height: 1.1;
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: clamp(0.9rem, 2.2vw, 1.1rem);
        line-height: 1.4;
        margin: 0;
        padding: 10px;
    }
    
    .hero-cta {
        align-items: center;
        justify-content: center;
        margin: 0;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        padding: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        font-size: clamp(0.6rem, 1.6vw, 0.75rem);
        padding: 10px;
        line-height: 1.3;
        min-height: 40px;
        margin: 0;
    }
    
    .bottle-container {
        width: clamp(160px, 50vw, 260px);
        height: clamp(240px, 75vw, 380px);
        max-height: 55vh;
        margin: 0 auto;
        padding: 10px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 2.2vw, 1.05rem);
        line-height: 1.4;
    }
    
    .hero-cta {
        gap: clamp(0.4rem, 1vw, 0.6rem);
        margin-top: clamp(0.3rem, 0.8vw, 0.5rem);
    }
    
    .hero-cta .btn {
        font-size: clamp(0.6rem, 1.5vw, 0.72rem);
        padding: clamp(0.55rem, 1vw, 0.7rem) clamp(0.9rem, 2vw, 1.2rem);
        min-height: 40px;
        line-height: 1.3;
    }
    
    .bottle-container {
        width: clamp(150px, 48vw, 250px);
        height: clamp(225px, 72vw, 360px);
        max-height: 55vh;
        margin: 0 auto;
    }
    
    /* RTL: Keep same center alignment as LTR */
    body.rtl .hero-content {
        direction: ltr !important;
        text-align: center !important;
    }
    
    body.rtl .hero-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    body.rtl .hero-title {
        text-align: center !important;
    }
    
    body.rtl .hero-subtitle {
        text-align: center !important;
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: center !important;
    }
    
    body.rtl .hero-cta {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .title-line {
        text-align: center !important;
    }
    
    body.rtl .hero-visual {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .bottle-container {
        margin: 0 auto !important;
    }
    
    /* Navigation */
    .nav {
        padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
        padding-top: max(clamp(0.5rem, 1.5vw, 0.75rem), env(safe-area-inset-top, 0));
    }
    
    .nav-logo-container {
        padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
    }
    
    .nav-logo {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }
    
    .logo-image {
        width: clamp(24px, 5vw, 32px);
        height: clamp(24px, 5vw, 32px);
    }
    
    .nav-menu a {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        padding: clamp(0.4rem, 1vw, 0.5rem) clamp(0.5rem, 1.2vw, 0.75rem);
    }
    
    .nav-toggle {
        width: clamp(36px, 8vw, 40px);
        height: clamp(36px, 8vw, 40px);
        padding: clamp(0.5rem, 1vw, 0.6rem);
    }
    
    .lang-switcher {
        gap: clamp(0.25rem, 0.8vw, 0.5rem);
    }
    
    .lang-btn {
        padding: clamp(0.3rem, 0.8vw, 0.5rem) clamp(0.4rem, 1vw, 0.6rem);
        font-size: clamp(0.65rem, 1.6vw, 0.75rem);
    }
    
    /* Sections */
    .section-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    }
    
    .section-header {
        margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
    }
    
    /* Process Cards */
    .process-grid {
        gap: clamp(1rem, 2vw, 1.25rem);
        padding: 0 clamp(0.75rem, 2vw, 1rem);
    }
    
    .process-card {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    .process-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    }
    
    .process-card-number {
        font-size: clamp(2rem, 4vw, 2.5rem);
        top: clamp(1rem, 2vw, 1.5rem);
        right: clamp(1rem, 2vw, 1.5rem);
    }
    
    body.rtl .process-card-number {
        left: clamp(1rem, 2vw, 1.5rem);
        right: auto;
    }
    
    .process-card-title {
        font-size: clamp(1rem, 2vw, 1.25rem);
        padding-right: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    body.rtl .process-card-title {
        padding-right: 0;
        padding-left: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .process-card-text {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    }
    
    /* About Section */
    .about {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .about-content {
        gap: clamp(1.5rem, 3vw, 2rem);
        padding: 0 clamp(0.75rem, 2vw, 1rem);
    }
    
    .about-text .lead {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }
    
    .about-text p {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    }
    
    .about-card {
        padding: clamp(1rem, 2vw, 1.5rem);
    }
    
    /* Contact Form */
    .contact {
        padding: clamp(2rem, 5vw, 3rem) 0;
        padding-bottom: max(clamp(2rem, 5vw, 3rem), env(safe-area-inset-bottom, 0));
    }
    
    .contact-content {
        gap: clamp(1.5rem, 3vw, 2rem);
        padding: 0 clamp(0.75rem, 2vw, 1rem);
    }
    
    .contact-title {
        font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    }
    
    .contact-text {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    }
    
    .form-input,
    .form-textarea {
        font-size: clamp(0.85rem, 1.4vw, 0.95rem);
        padding: clamp(0.7rem, 1.2vw, 0.85rem) clamp(0.75rem, 1.5vw, 1rem);
        min-height: 44px; /* Touch-friendly */
    }
    
    .form-textarea {
        min-height: 120px;
    }
    
    .form-label {
        font-size: clamp(0.8rem, 1.3vw, 0.9rem);
    }
    
    /* Cocktails */
    .cocktails-section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
    
    .cocktails-grid {
        gap: clamp(1rem, 2vw, 1.25rem);
        padding: 0 clamp(0.75rem, 2vw, 1rem);
    }
    
    .cocktail-card {
        min-height: auto;
    }
    
    .cocktail-title {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }
    
    /* Footer */
    .footer {
        padding: clamp(2rem, 4vw, 3rem) 0;
        padding-bottom: max(clamp(2rem, 4vw, 3rem), env(safe-area-inset-bottom, 0));
    }
    
    .footer-content {
        gap: clamp(1.5rem, 3vw, 2rem);
        padding: 0 clamp(0.75rem, 2vw, 1rem);
    }
}

    /* Extra Small Screens (iPhone SE - 320px) */
@media (max-width: 320px) {
    :root {
        font-size: 13px;
        --nav-height-desktop: var(--nav-height-xs);
    }
    
    .nav {
        min-height: 130px; /* nav-logo-container (60px) + nav-container (70px) */
    }
    
    .container {
        padding: 0 0.75rem;
        padding-left: max(0.75rem, env(safe-area-inset-left, 0));
        padding-right: max(0.75rem, env(safe-area-inset-right, 0));
    }
    
    .hero {
        /* Calculate padding-top based on actual nav height: nav-logo-container (60px) + nav-container (70px) */
        padding-top: calc(60px + 70px + env(safe-area-inset-top, 0));
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 10px;
        padding-left: max(10px, env(safe-area-inset-left, 0));
        padding-right: max(10px, env(safe-area-inset-right, 0));
        padding-bottom: max(50px, env(safe-area-inset-bottom, 0)); /* Space for hero-scroll */
        gap: 10px;
        min-height: calc(100vh - 130px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
    }
    
    .hero-visual {
        order: -1;
        flex: 0 0 auto;
        max-height: 58vh;
        min-height: 0;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        margin: 0;
    }
    
    .hero-text {
        order: 2;
        flex: 1 1 auto;
        min-height: 0;
        align-items: center;
        text-align: center;
        gap: 10px;
        overflow: visible;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0 10px 10px 10px;
        margin: 0;
        margin-top: 0;
    }
    
    .hero-title {
        margin: 0;
        padding: 10px;
    }
    
    .title-line {
        text-align: center;
        font-size: clamp(0.9rem, 3vw, 1.4rem);
        line-height: 1.1;
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        text-align: center;
        font-size: clamp(0.85rem, 2vw, 1rem);
        line-height: 1.4;
        margin: 0;
        padding: 10px;
    }
    
    .hero-cta {
        align-items: center;
        justify-content: center;
        margin: 0;
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
        padding: 10px;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
        font-size: clamp(0.6rem, 1.4vw, 0.7rem);
        padding: 10px;
        line-height: 1.3;
        min-height: 40px;
        margin: 0;
    }
    
    .bottle-container {
        width: clamp(140px, 50vw, 230px);
        height: clamp(210px, 75vw, 340px);
        max-height: 55vh;
        margin: 0 auto;
        padding: 10px;
    }
    
    /* RTL: Keep same center alignment as LTR */
    body.rtl .hero-content {
        direction: ltr !important;
        text-align: center !important;
    }
    
    body.rtl .hero-text {
        text-align: center !important;
        align-items: center !important;
    }
    
    body.rtl .hero-title {
        text-align: center !important;
    }
    
    body.rtl .hero-subtitle {
        text-align: center !important;
    }
    
    body.rtl .hero-text .hero-subtitle {
        align-self: center !important;
    }
    
    body.rtl .hero-cta {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .title-line {
        text-align: center !important;
    }
    
    body.rtl .hero-visual {
        align-items: center !important;
        justify-content: center !important;
    }
    
    body.rtl .bottle-container {
        margin: 0 auto !important;
    }
    
    .title-line {
        font-size: clamp(0.9rem, 3vw, 1.4rem);
        margin: 0;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: clamp(0.65rem, 1.4vw, 0.75rem);
        margin: 0;
        padding: 10px;
    }
    
    .hero-cta .btn {
        font-size: clamp(0.6rem, 1.4vw, 0.7rem);
        padding: 10px;
        min-height: 40px;
        margin: 0;
    }
    
    .bottle-container {
        width: clamp(70px, 30vw, 120px);
        height: clamp(105px, 45vw, 180px);
        margin: 0;
        padding: 10px;
    }
    
    .process-card {
        padding: 1rem;
    }
    
    .process-card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    
    .process-card-number {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
        top: 1rem;
        right: 1rem;
    }
    
    body.rtl .process-card-number {
        left: 1rem;
        right: auto;
    }
    
    .process-card-title {
        font-size: clamp(0.95rem, 1.8vw, 1.15rem);
        padding-right: clamp(2rem, 4vw, 2.5rem);
    }
    
    body.rtl .process-card-title {
        padding-right: 0;
        padding-left: clamp(2rem, 4vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    }
    
    /* Navigation for extra small */
    .nav-logo-container {
        padding: 0.5rem 0.75rem;
        padding-top: max(0.5rem, env(safe-area-inset-top, 0));
        padding-left: max(0.75rem, env(safe-area-inset-left, 0));
        padding-right: max(0.75rem, env(safe-area-inset-right, 0));
    }
    
    .nav-menu {
        gap: 0.25rem;
        width: 100%;
        max-width: 100vw;
        padding-top: max(env(safe-area-inset-top, 0), 60px);
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .menu-close-btn {
        padding-top: max(clamp(1rem, 2vw, 1.25rem), env(safe-area-inset-top, 0));
        padding-bottom: clamp(1rem, 2vw, 1.25rem);
    }
    
    .nav-menu a {
        font-size: clamp(0.65rem, 1.6vw, 0.75rem);
        padding: 0.4rem 0.5rem;
        min-height: 42px;
    }
    
    .lang-btn {
        padding: 0.3rem 0.4rem;
        font-size: clamp(0.6rem, 1.4vw, 0.7rem);
        min-width: 36px;
        min-height: 36px;
    }
    
    .nav-toggle {
        top: max(0.5rem, env(safe-area-inset-top, 0));
        right: max(0.5rem, env(safe-area-inset-right, 0));
        min-width: 40px;
        min-height: 40px;
        padding: 0.5rem;
    }
    
    body[dir="rtl"] .nav-toggle {
        left: max(0.5rem, env(safe-area-inset-left, 0));
    }
    
    /* About and Contact sections */
    .about-card {
        padding: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .contact-form {
        gap: 1rem;
    }
    
    .form-input,
    .form-textarea {
        font-size: 0.85rem;
        padding: 0.7rem 0.75rem;
    }
    
    /* Cocktails */
    .cocktail-card {
        min-height: 200px;
    }
    
    .cocktail-btn {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }
}
