:root {
    --primary-purple: #1a1a4e;
    --primary-purple-dark: #0d0d2b;
    --primary-purple-light: #2d2d6b;
    --royal-blue: #1e3a5f;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --champagne: #F7E7CE;
    --white: #FFFFFF;
    --off-white: #FDFBF7;
    --cream: #FDF8E8;
    --ivory: #FFFFF0;
    --text-dark: #1A1A2E;
    --text-light: #6B6B7B;
    --green: #2E7D32;
    --gradient-purple: linear-gradient(135deg, #1a1a4e 0%, #2d2d6b 50%, #1a1a4e 100%);
    --gradient-royal: linear-gradient(135deg, #0d0d2b 0%, #1e3a5f 50%, #1a1a4e 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    --gradient-champagne: linear-gradient(135deg, #F7E7CE 0%, #FFFFFF 50%, #F7E7CE 100%);
    --gradient-luxury: linear-gradient(135deg, #1a1a4e 0%, #2d2d6b 25%, #1e3a5f 50%, #2d2d6b 75%, #1a1a4e 100%);
    --shadow-soft: 0 10px 40px rgba(26, 26, 78, 0.15);
    --shadow-hard: 0 20px 60px rgba(26, 26, 78, 0.25);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --shadow-luxury: 0 30px 80px rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --top-header-height: 45px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: auto;
}

/* Background particles container */
.particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Individual rice particle styling */
.rice-particle {
    position: absolute;
    width: 12px;
    height: 5px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(247, 231, 206, 0.3) 100%);
    border-radius: 50%;
    animation: floatParticle 20s linear infinite;
}

/* Animation for floating rice particles */
@keyframes floatParticle {
    0% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0; 
    }
    10% { 
        opacity: 0.7; 
    }
    90% { 
        opacity: 0.7; 
    }
    100% { 
        transform: translateY(-100vh) rotate(720deg); 
        opacity: 0; 
    }
}

::selection {
    background: var(--gold);
    color: var(--primary-purple-dark);
}

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

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--top-header-height);
    background: linear-gradient(135deg, #0a0a20 0%, #151538 50%, #0a0a20 100%);
    z-index: 1100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-header-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.top-header-item:hover {
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.1);
}

.top-header-item i {
    color: #D4AF37;
    font-size: 0.85rem;
}

.top-header-divider {
    width: 1px;
    height: 18px;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    margin: 0 5px;
}

.top-header-center {
    flex: 1;
    overflow: hidden;
    margin: 0 40px;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.top-header-marquee {
    display: flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.top-header-marquee span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F7E7CE;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-header-marquee span i {
    color: #D4AF37;
    font-size: 0.75rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.top-header-social {
    display: flex;
    gap: 8px;
}

.top-header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.top-header-social a:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #0d0d2b;
    transform: translateY(-3px);
}

header {
    position: fixed;
    top: var(--top-header-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background: rgba(26, 26, 78, 0.3);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

header.top-hidden {
    top: 0;
}

header.scrolled {
    background: rgba(10, 10, 32, 0.98);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.nav-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

header.scrolled .logo-img {
    height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: #F7E7CE;
    font-style: italic;
    letter-spacing: 2px;
    opacity: 0.9;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: block;
    border-radius: 30px;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 30px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(212, 175, 55, 0.3);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #D4AF37 100%);
    color: #0d0d2b;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
    border: 2px solid #D4AF37;
}

.nav-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.55);
}

.cta-icon {
    width: 28px;
    height: 28px;
    background: rgba(26, 26, 78, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.nav-cta:hover .cta-icon {
    background: #0d0d2b;
    color: #D4AF37;
    transform: translateX(3px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #D4AF37;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.hero {
    min-height: 100vh;
    background: var(--gradient-luxury);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(var(--top-header-height) + 80px);
    padding-bottom: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 58, 95, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(13, 13, 43, 0.6) 0%, 
        rgba(13, 13, 43, 0.2) 15%, 
        transparent 30%,
        transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(1.2);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    width: 100%;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
}

.slide-text {
    opacity: 1;
}

.slide-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.slide-label i {
    font-size: 0.9rem;
}

.slide-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 5px 40px rgba(0, 0, 0, 0.4);
    font-weight: 600;
}

.slide-text h1 span {
    display: block;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 30%, #FFE878 50%, #F4D03F 70%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
}

.slide-text h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    opacity: 0.5;
}

.slide-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-style: italic;
    color: var(--champagne);
    margin-bottom: 12px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 2px;
}

.slide-desc {
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 500px;
}

.slide-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.slide-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 8px 14px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.slide-badge:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.slide-badge i {
    color: var(--gold);
    font-size: 0.85rem;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--primary-purple-dark);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.1);
}

.slide-product {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-3d-container {
    position: relative;
}

.product-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.35) 0%, rgba(212, 175, 55, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.product-shadow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%) rotateX(80deg);
    width: 250px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    filter: blur(20px);
}

.product-main-img {
    max-width: 380px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 0 80px rgba(212, 175, 55, 0.35));
    transition: transform 0.5s ease;
}

.product-main-img:hover {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    top: 0;
    left: 0;
}

.floating-rice {
    position: absolute;
    width: 40px;
    height: 16px;
    background: linear-gradient(135deg, #FFF8E7 0%, #F5E6C8 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatRice 8s ease-in-out infinite;
}

.floating-rice:nth-child(1) { top: 5%; left: 5%; animation-delay: 0s; }
.floating-rice:nth-child(2) { top: 75%; left: 0%; animation-delay: 1.5s; width: 35px; height: 14px; }
.floating-rice:nth-child(3) { top: 20%; right: 0%; animation-delay: 3s; width: 30px; height: 12px; }
.floating-rice:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 4.5s; width: 38px; height: 15px; }
.floating-rice:nth-child(5) { top: 50%; left: -5%; animation-delay: 2s; width: 25px; height: 10px; }

@keyframes floatRice {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-30px) rotate(65deg); }
}

.hero-pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    gap: 15px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    opacity: 1;
    transition: all 0.5s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--gradient-gold);
    width: 80px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-nav {
    position: absolute;
    bottom: 35px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-nav-btn:hover {
    background: var(--gold);
    color: var(--primary-purple-dark);
    border-color: var(--gold);
    transform: scale(1.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25px;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -25px; }
    100% { top: 100%; }
}

section {
    padding: 100px 0;
    position: relative;
    overflow: visible;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary-purple);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark {
    background: var(--gradient-luxury);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-cream {
    background: var(--cream);
}

.section-pattern {
    position: relative;
}

.section-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-1.5 0-2.8 1.2-2.8 2.7v44.6c0 1.5 1.3 2.7 2.8 2.7s2.8-1.2 2.8-2.7V7.7c0-1.5-1.3-2.7-2.8-2.7z' fill='%23D4AF37' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.features-section {
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 45px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hard);
    border-color: var(--gold);
}

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

.feature-card:hover .feature-icon,
.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(26, 26, 78, 0.1) 0%, rgba(45, 45, 107, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--primary-purple);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.product-image img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.product-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-sizes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-sizes span {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.product-sizes span:hover {
    background: rgba(212, 175, 55, 0.3);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 18px;
}

.stats-section {
    background: var(--gradient-luxury);
    padding: 100px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    letter-spacing: 1px;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.health-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    display: flex;
    gap: 25px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.health-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.health-card:hover::before {
    width: 100%;
}

.health-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
    border-color: rgba(212, 175, 55, 0.3);
}

.health-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(46, 125, 50, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--green);
    transition: all 0.4s ease;
}

.health-card:hover .health-icon {
    background: var(--green);
    color: var(--white);
}

.health-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.health-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.recipe-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.recipe-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hard);
}

.recipe-image {
    height: 250px;
    background: var(--gradient-purple);
    position: relative;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-time {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-content {
    padding: 30px;
}

.recipe-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

.recipe-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recipe-difficulty {
    background: rgba(46, 125, 50, 0.1);
    color: var(--green);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
}

.recipe-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.recipe-link:hover {
    color: var(--gold);
    gap: 15px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.cert-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.cert-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--gold);
    transition: all 0.4s ease;
}

.cert-item:hover .cert-icon {
    background: var(--gold);
    color: var(--primary-purple-dark);
}

.cert-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.cert-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
}

.author-info h4 {
    color: var(--primary-purple);
    font-size: 1rem;
    margin-bottom: 3px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.85rem;
}

.luxury-footer {
    background: var(--gradient-luxury);
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.footer-top-wave {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.footer-top-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    color: var(--off-white);
}

.footer-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--champagne);
    font-style: italic;
    margin-bottom: 15px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-certifications {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.footer-links a i {
    font-size: 0.8rem;
    color: var(--gold);
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 4px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-purple-dark);
    transform: translateY(-5px);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 45px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.newsletter-content h4 i {
    color: var(--gold);
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: var(--gradient-gold);
    color: var(--primary-purple-dark);
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.made-with {
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-icon {
    height: 15px;
    border-radius: 2px;
}

.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-purple-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-8px);
}

.page-hero {
    background: var(--gradient-luxury);
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--top-header-height) + 100px);
    padding-bottom: 60px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(30, 58, 95, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
    max-width: 900px;
    width: 100%;
}

.page-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.page-hero h1 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-purple);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--off-white);
}

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

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

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
}

.contact-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--gold);
}

.timeline-section {
    padding: 100px 0;
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient-gold);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
    padding-left: 50px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 4px var(--gold);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.team-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
}

.team-avatar {
    width: 130px;
    height: 130px;
    background: var(--gradient-purple);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--gold);
    border: 4px solid var(--gold);
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-purple);
    margin-bottom: 8px;
}

.team-card .position {
    color: var(--gold-dark);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.cta-section {
    background: var(--gradient-luxury);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 95, 0.3) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content h2 span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .top-header-center {
        display: none;
    }
    
    .top-header-left {
        display: none;
    }
    
    .top-header-container {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a4e 0%, #2d2d6b 50%, #1a1a4e 100%);
        flex-direction: column;
        padding: 100px 50px 50px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 25px;
        gap: 30px;
    }
    
    .slide-text h1 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
    
    .slide-badges {
        justify-content: center;
    }
    
    .slide-buttons {
        justify-content: center;
    }
    
    .slide-product {
        display: none;
    }
    
    .hero {
        padding-top: calc(var(--top-header-height) + 100px);
        padding-bottom: 100px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .health-grid,
    .recipes-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-newsletter {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 768px) {
    :root {
        --top-header-height: 40px;
    }
    
    section {
        padding: 70px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .products-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slide-content {
        padding: 0 20px;
    }
    
    .slide-text h1 {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    
    .slide-subtitle {
        font-size: 0.95rem;
    }
    
    .slide-desc {
        font-size: 0.8rem;
    }
    
    .slide-label {
        padding: 8px 14px;
        font-size: 0.6rem;
        margin-bottom: 10px;
    }
    
    .slide-badges {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .slide-badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
    
    .slide-buttons {
        gap: 10px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-nav {
        display: none;
    }
    
    .hero-pagination {
        bottom: 25px;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 35px;
    }
    
    .timeline-dot {
        left: -30px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .top-header-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .slide-text h1 {
        font-size: 1.5rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
    
    .slide-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .feature-card,
    .health-card,
    .product-card {
        padding: 30px 20px;
    }
}
