/* ===== ROOT & VARIABLES ===== */
:root {
    --beet-dark: #2D0A1F;
    --beet-primary: #6B1D4A;
    --beet-secondary: #8B2252;
    --beet-accent: #C2185B;
    --beet-light: #F8E8EF;
    --beet-cream: #FFF8F0;
    --beet-gold: #D4A843;
    --beet-green: #4CAF50;
    --beet-purple: #4A0E2E;
    --gradient-hero: linear-gradient(135deg, #2D0A1F 0%, #6B1D4A 40%, #8B2252 70%, #C2185B 100%);
    --gradient-card: linear-gradient(135deg, rgba(107,29,74,0.08) 0%, rgba(194,24,91,0.05) 100%);
    --shadow-soft: 0 4px 30px rgba(45,10,31,0.1);
    --shadow-strong: 0 10px 40px rgba(45,10,31,0.2);
    --shadow-glow: 0 0 40px rgba(194,24,91,0.3);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: var(--beet-cream);
    overflow-x: hidden;
    line-height: 1.7;
}

body.rtl {
    font-family: 'Noto Sans Arabic', 'Inter', sans-serif;
    direction: rtl;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit', sans-serif;
    font-weight: 700;
    color: var(--beet-dark);
}

.rtl h1, .rtl h2, .rtl h3, .rtl h4, .rtl h5, .rtl h6 {
    font-family: 'Noto Sans Arabic', sans-serif;
}

::selection {
    background: var(--beet-accent);
    color: #fff;
}

img { max-width: 100%; height: auto; }

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--beet-cream); }
::-webkit-scrollbar-thumb {
    background: var(--beet-primary);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--beet-accent); }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--beet-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.loader-ring {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(194,24,91,0.2);
    border-top-color: var(--beet-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
}
.navbar.scrolled {
    background: rgba(45,10,31,0.95);
    backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-brand {
    font-family: 'Kanit', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: #fff !important;
    letter-spacing: 1px;
}
.navbar-brand span {
    color: var(--beet-accent);
    font-style: italic;
}
.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--beet-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}
.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 4px 8px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language Dropdown */
.lang-dropdown .dropdown-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}
.lang-dropdown .dropdown-toggle:hover {
    background: rgba(255,255,255,0.2);
}
.lang-dropdown .dropdown-menu {
    background: rgba(45,10,31,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    min-width: 180px;
    padding: 8px;
}
.lang-option {
    color: rgba(255,255,255,0.8);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: block;
    cursor: pointer;
}
.lang-option:hover, .lang-option.active {
    background: rgba(194,24,91,0.3);
    color: #fff;
}

/* Store button */
.btn-store {
    background: var(--beet-accent);
    color: #fff !important;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.btn-store:hover {
    background: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194,24,91,0.4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 20% 80%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 80% 20%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 50% 50%, #fff 0.5px, transparent 0.5px);
    background-size: 100px 100px, 120px 120px, 60px 60px;
}
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194,24,91,0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--beet-gold);
    margin-bottom: 16px;
    font-weight: 600;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--beet-gold);
    display: block;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.8;
}
.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.hero-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--beet-gold);
    color: var(--beet-dark);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-hero-primary:hover {
    background: #E8BC52;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,168,67,0.4);
    color: var(--beet-dark);
}
.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Bottle */
.hero-bottle-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 500px;
}
.product-bottle-float {
    transition: transform 0.1s linear;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
    max-width: 280px;
    height: auto;
}
.bottle-ring {
    position: absolute;
    border: 2px solid rgba(194,24,91,0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}
.bottle-ring:nth-child(2) {
    width: 300px; height: 300px;
    animation-delay: 0s;
}
.bottle-ring:nth-child(3) {
    width: 400px; height: 400px;
    animation-delay: 1s;
}
.bottle-ring:nth-child(4) {
    width: 500px; height: 500px;
    animation-delay: 2s;
}
@keyframes ringPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.6; }
}

/* Hero Particles */
.hero-particle {
    position: absolute;
    background: rgba(212,168,67,0.6);
    border-radius: 50%;
    animation: floatUp linear forwards;
    pointer-events: none;
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}
.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-dot {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ===== SECTION COMMONS ===== */
.section-padding { padding: 100px 0; }

.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--beet-accent);
    border-radius: 2px;
}
.section-header p {
    color: #777;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal.reveal-left {
    transform: translateX(-40px);
}
.reveal.reveal-left.revealed {
    transform: translateX(0);
}
.reveal.reveal-right {
    transform: translateX(40px);
}
.reveal.reveal-right.revealed {
    transform: translateX(0);
}

/* ===== FEATURES SECTION ===== */
#features {
    background: #fff;
}
.feature-card {
    background: var(--beet-cream);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(194,24,91,0.1);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}
.feature-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PRODUCT SECTION ===== */
#product {
    background: var(--beet-cream);
    position: relative;
    overflow: hidden;
}
#product::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(194,24,91,0.05) 0%, transparent 70%);
}
.product-showcase {
    position: relative;
    text-align: center;
    padding: 40px 0;
}
.product-bottle-main {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 30px 50px rgba(45,10,31,0.3));
    transition: var(--transition);
}
.product-bottle-main:hover {
    transform: scale(1.05);
}
.product-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}
.product-tagline {
    color: var(--beet-accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.product-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}
.info-block {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
    border-left: 4px solid var(--beet-accent);
    box-shadow: var(--shadow-soft);
}
.rtl .info-block {
    border-left: none;
    border-right: 4px solid var(--beet-accent);
}
.info-block h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--beet-primary);
    margin-bottom: 8px;
}
.info-block p {
    margin: 0;
    font-size: 0.95rem;
}

/* Nutrition Table */
.nutrition-table {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.nutrition-header {
    background: var(--gradient-hero);
    color: #fff;
    padding: 20px 24px;
}
.nutrition-header h5 {
    color: #fff;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}
.nutrition-header small {
    opacity: 0.8;
}
.nutrition-body { padding: 0; }
.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: var(--transition);
    cursor: default;
}
.nutrition-row:last-child { border-bottom: none; }
.nutrition-row.highlight,
.nutrition-row:hover {
    background: rgba(194,24,91,0.05);
}
.nutrition-row .label {
    font-weight: 500;
    color: #444;
}
.nutrition-row .value {
    font-weight: 700;
    color: var(--beet-primary);
}
.nutrition-row.sub .label {
    padding-left: 20px;
    font-size: 0.9rem;
    color: #777;
}
.rtl .nutrition-row.sub .label {
    padding-left: 0;
    padding-right: 20px;
}

/* ===== BENEFITS SECTION ===== */
#benefits {
    background: #fff;
}
.benefit-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--beet-cream);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    background: #fff;
}
.benefit-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(194,24,91,0.06);
    font-family: 'Kanit', sans-serif;
    line-height: 1;
}
.rtl .benefit-number {
    right: auto;
    left: 16px;
}
.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefit-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== SCIENCE SECTION ===== */
#science {
    background: var(--gradient-hero);
    color: #fff;
    position: relative;
    overflow: hidden;
}
#science::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#science .section-header h2 { color: #fff; }
#science .section-header h2::after { background: var(--beet-gold); }
#science .section-header p { color: rgba(255,255,255,0.7); }

.science-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 50px 0;
}
.stat-card {
    text-align: center;
    padding: 30px 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}
.counter-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--beet-gold);
    font-family: 'Inter', sans-serif;
    display: block;
    line-height: 1.2;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NO Process */
.no-process {
    margin-top: 50px;
}
.no-process h4 {
    color: var(--beet-gold);
    margin-bottom: 32px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    border-left: 4px solid var(--beet-gold);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}
.rtl .process-step {
    border-left: none;
    border-right: 4px solid var(--beet-gold);
    transform: translateX(30px);
}
.process-step.animate {
    opacity: 1;
    transform: translateX(0);
}
.step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--beet-gold);
    color: var(--beet-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
}
.step-text {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
#about {
    background: #fff;
    position: relative;
}
.about-image-container {
    position: relative;
    padding: 20px;
}
.about-image-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    transform: rotate(-3deg);
    z-index: 0;
}
.about-image {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--beet-cream);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.about-card {
    padding: 24px;
    background: var(--beet-cream);
    border-radius: var(--radius);
    transition: var(--transition);
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}
.about-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--beet-accent);
    margin-bottom: 10px;
    font-size: 1rem;
}
.about-card p {
    margin: 0;
    font-size: 0.9rem;
}
.origin-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-hero);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: var(--beet-cream);
}
.contact-form-wrapper {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}
.form-control {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fafafa;
}
.form-control:focus {
    border-color: var(--beet-accent);
    box-shadow: 0 0 0 4px rgba(194,24,91,0.1);
    background: #fff;
}
textarea.form-control { min-height: 140px; resize: vertical; }
.btn-submit {
    background: var(--gradient-hero);
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    width: 100%;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    opacity: 0.95;
    color: #fff;
}
#formSuccess {
    display: none;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 14px 20px;
    border-radius: 12px;
    margin-top: 16px;
    font-weight: 500;
}

.contact-info-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
}
.contact-info-item h5 {
    color: var(--beet-gold);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.contact-info-item p {
    color: rgba(255,255,255,0.85);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}
.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.social-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}
.social-link svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* ===== FOOTER ===== */
footer {
    background: var(--beet-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
footer h5 {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
footer a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
footer a:hover {
    color: var(--beet-gold);
}
.footer-brand {
    font-family: 'Kanit', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    display: inline-block;
}
.footer-brand span { color: var(--beet-accent); }
.footer-links li { margin-bottom: 10px; list-style: none; }
.footer-links li a { font-size: 0.9rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== BACK TO TOP ===== */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--beet-accent);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-strong);
}
#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    background: var(--beet-primary);
    transform: translateY(-3px);
}
.rtl #backToTop {
    right: auto;
    left: 30px;
}

/* ===== COOKIE BANNER ===== */
#cookieBanner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(45,10,31,0.97);
    backdrop-filter: blur(20px);
    color: #fff;
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    width: 90%;
    transition: bottom 0.5s ease;
    box-shadow: var(--shadow-strong);
}
#cookieBanner.show { bottom: 30px; }
#cookieBanner p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 200px;
}
.cookie-buttons { display: flex; gap: 10px; }
.cookie-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
#cookieAccept {
    background: var(--beet-accent);
    color: #fff;
}
#cookieDecline {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section { padding-top: 100px; }
    .hero-bottle-container { min-height: 350px; margin-top: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-cards { grid-template-columns: 1fr; }
    .navbar-collapse {
        background: rgba(45,10,31,0.97);
        backdrop-filter: blur(20px);
        border-radius: var(--radius);
        padding: 20px;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .section-padding { padding: 60px 0; }
    .hero-title { font-size: 2.2rem; }
    .hero-desc { font-size: 1rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 20px 12px; }
    .counter-value { font-size: 1.8rem; }
    .contact-form-wrapper { padding: 24px; }
    .contact-info-card { padding: 24px; margin-top: 24px; }
    #cookieBanner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-badges { flex-direction: column; align-items: flex-start; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary {
        width: 100%;
        text-align: center;
    }
}
