/* ============================================
   YES2HEALTH BEAUTY - Premium Luxury Design
   Elegant, Sophisticated, High-End Styling
   ============================================ */

/* CSS Variables - Premium Palette */
:root {
    --primary-green: #1a6b3c;
    --primary-gold: #d4a853;
    --dark-green: #0d4a29;
    --light-green: #e8f3ed;
    --accent-gold: #c9973e;
    --gold-light: #f5e6c8;
    --gold-gradient: linear-gradient(135deg, #d4a853 0%, #f5d98a 50%, #c9973e 100%);
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --off-white: #fafafa;
    --cream: #f9f7f4;
    --gradient-primary: linear-gradient(135deg, #1a6b3c 0%, #0d4a29 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 107, 60, 0.97) 0%, rgba(13, 74, 41, 0.97) 100%);
    --gradient-luxury: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 80px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 10px 40px rgba(212, 168, 83, 0.25);
    --shadow-gold-lg: 0 15px 60px rgba(212, 168, 83, 0.35);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-lg: 30px;
}

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

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.75rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}
h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 600;
}
h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
}

p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 400;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 20px;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--primary-gold);
}

.section-subtitle::before {
    left: -30px;
}

.section-subtitle::after {
    right: -30px;
}

.section-header h2 {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9;
}

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

.highlight-green {
    color: var(--primary-green);
}

/* Decorative Line */
.decorative-line {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

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

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-dark {
    background: var(--gradient-dark);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-dark:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   PREMIUM HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(245, 245, 245, 0.98) 0%, rgba(235, 235, 235, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
}

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

.header.scrolled .nav-menu a {
    color: var(--text-dark);
}

.header.scrolled .nav-menu a:hover {
    color: var(--primary-green);
}

.nav-cta {
    background: var(--gold-gradient) !important;
    color: var(--text-dark) !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/products-collection.jpg') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(13, 74, 41, 0.5), transparent);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.hero-scroll-indicator span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

.hero-content {
    color: var(--white);
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 168, 83, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(212, 168, 83, 0.3);
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    line-height: 1.15;
}

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

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 650px;
    line-height: 1.9;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    justify-content: center;
}

.hero-features {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-gold);
}

.hero-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image-main {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    animation: float 8s ease-in-out infinite;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

.hero-image-overlay {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    animation: float 8s ease-in-out infinite reverse;
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-image-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-gold-lg);
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image-badge h4 {
    font-size: 2rem;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.hero-image-badge p {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.8;
    font-weight: 500;
}

/* ============================================
   ENERGY BACKGROUND ANIMATIONS
   ============================================ */
.energy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Animated Grid Lines */
.energy-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 168, 83, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 168, 83, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Particles Container */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat linear infinite;
}

.particle-gold {
    background: radial-gradient(circle, rgba(212, 168, 83, 0.5) 0%, rgba(212, 168, 83, 0) 70%);
    box-shadow: 0 0 6px rgba(212, 168, 83, 0.3);
}

.particle-green {
    background: radial-gradient(circle, rgba(26, 107, 60, 0.4) 0%, rgba(26, 107, 60, 0) 70%);
    box-shadow: 0 0 6px rgba(26, 107, 60, 0.2);
}

.particle-white {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}


/* Glowing Orbs */
.energy-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat ease-in-out infinite;
}

.orb-1 {
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    box-shadow: 0 0 15px 5px rgba(212, 168, 83, 0.25);
    top: 20%;
    left: 10%;
    animation-duration: 12s;
}

.orb-2 {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.2);
    top: 60%;
    left: 85%;
    animation-duration: 15s;
    animation-delay: -2s;
}

.orb-3 {
    width: 5px;
    height: 5px;
    background: var(--primary-gold);
    box-shadow: 0 0 18px 6px rgba(212, 168, 83, 0.3);
    top: 75%;
    left: 20%;
    animation-duration: 18s;
    animation-delay: -4s;
}

.orb-4 {
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.15);
    top: 30%;
    left: 75%;
    animation-duration: 14s;
    animation-delay: -1s;
}

.orb-5 {
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    box-shadow: 0 0 15px 5px rgba(212, 168, 83, 0.25);
    top: 85%;
    left: 60%;
    animation-duration: 16s;
    animation-delay: -3s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 1;
    }
}


/* Energy Spark Effect */
.energy-spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 0.6s ease-out forwards;
}

@keyframes sparkle {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.5) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Quantum Connection Lines */
.quantum-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.quantum-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 83, 0.5), transparent);
    animation: quantumSlide 3s ease-in-out infinite;
}

@keyframes quantumSlide {
    0% {
        transform: translateX(-100%) scaleX(0.5);
        opacity: 0;
    }
    50% {
        transform: translateX(0%) scaleX(1);
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scaleX(0.5);
        opacity: 0;
    }
}

/* Floating Energy Text Glow */
.hero h1 span {
    display: block;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(212, 168, 83, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(212, 168, 83, 0.6));
    }
}

/* Floating Elements */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -150px;
    animation: shapeFloat 15s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: shapeFloat 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 30%;
    animation: shapeFloat 12s ease-in-out infinite;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
        opacity: 0.4;
    }
}

/* ============================================
   PREMIUM ABOUT SECTION
   ============================================ */
.about {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    border: 3px solid var(--primary-gold);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 30px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-gold-lg);
    text-align: center;
}

.about-image-badge h4 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.about-image-badge p {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    position: relative;
}

.about-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--light-green) 0%, #d4e8dc 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary-green);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   PREMIUM PRODUCTS SECTION
   ============================================ */
.products {
    background: var(--white);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 10% 20%, rgba(212, 168, 83, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(26, 107, 60, 0.03) 0%, transparent 50%);
}

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

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.product-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.product-features span {
    background: var(--cream);
    color: var(--text-medium);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0,0,0,0.05);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-link svg {
    transition: var(--transition);
}

.product-link:hover {
    color: var(--primary-gold);
}

.product-link:hover svg {
    transform: translateX(5px);
}

/* ============================================
   PREMIUM SPRAY SECTION
   ============================================ */
.spray-section {
    background: var(--gradient-luxury);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.spray-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/spray-use.jpg') center/cover no-repeat;
    opacity: 0.05;
}

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

.spray-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.spray-content .about-subtitle {
    color: var(--primary-gold);
}

.spray-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.spray-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.spray-benefits {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.spray-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.spray-benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.spray-benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spray-benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
}

.spray-benefit-item h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
    color: var(--white);
}

.spray-benefit-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.spray-images {
    position: relative;
    height: 100%;
    min-height: 550px;
}

.spray-image-main {
    width: 100%;
    height: 100%;
}

.spray-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.spray-image-overlay {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: auto;
    z-index: 2;
}

.spray-image-overlay img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-gold);
}

/* ============================================
   PREMIUM BENEFITS SECTION
   ============================================ */
.benefits {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/product-showcase.jpg') center/cover no-repeat;
    opacity: 0.08;
}

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

.benefits .section-subtitle {
    color: var(--gold-light);
}

.benefits .section-subtitle::before,
.benefits .section-subtitle::after {
    background: var(--gold-light);
}

.benefits .section-header h2,
.benefits .section-header p {
    color: var(--white);
}

/* Benefits Slider for Desktop */
.benefits-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.benefits-slider .benefit-card {
    flex: 0 0 100%;
    width: 100%;
}

.benefits-controls {
    margin-top: 30px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--border-radius);
    padding: 50px 35px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
}

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

.benefit-icon {
    width: 90px;
    height: 90px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-gold);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-dark);
}

.benefit-card h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   PREMIUM TESTIMONIALS SECTION - Classic Slider
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/products-collection.jpg') center/cover no-repeat;
    opacity: 0.05;
}

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

.testimonials .section-subtitle {
    color: var(--gold-light);
}

.testimonials .section-subtitle::before,
.testimonials .section-subtitle::after {
    background: var(--gold-light);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 60px 80px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 0 0 4px 4px;
}

.testimonial-quote {
    font-size: 6rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
    justify-content: center;
}

.testimonial-rating svg {
    width: 22px;
    height: 22px;
    fill: var(--primary-gold);
}

.testimonial-card > p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.testimonial-author img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 5px 25px rgba(212, 168, 83, 0.3);
}

.testimonial-author-info h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
    color: var(--white);
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.slider-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--gold-gradient);
    border-color: var(--primary-gold);
}

.slider-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    transition: var(--transition);
}

.slider-btn:hover svg {
    stroke: var(--text-dark);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* ============================================
   PREMIUM CTA SECTION
   ============================================ */
.cta {
    background: var(--gold-gradient);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/products-collection.jpg') center/cover no-repeat;
    opacity: 0.1;
}

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

.cta h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta p {
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
    opacity: 0.85;
}

/* ============================================
   PREMIUM CONTACT SECTION
   ============================================ */
.contact {
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--cream);
    z-index: 0;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
}

.contact-info h3 {
    margin-bottom: 25px;
    font-size: 2rem;
}

.contact-info > p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.contact-details {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--text-dark);
}

.contact-item h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--text-light);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.social-link:hover {
    background: var(--gold-gradient);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.social-link:hover svg {
    fill: var(--text-dark);
}

.contact-form {
    background: var(--white);
    padding: 55px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    margin-bottom: 35px;
    font-size: 1.5rem;
}

/* Form Success/Error Messages */
.form-success-message {
    background: #d4edda;
    color: #155724;
    padding: 25px 30px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    display: none;
    border: 2px solid #28a745;
    text-align: center;
}

.form-success-message:not(:empty) {
    display: block;
}

.form-success-message p {
    color: #155724;
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 20px;
    border-left: 4px solid #dc2626;
    display: none;
}

.form-error-message:not(:empty) {
    display: block;
}

.field-error {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-group input[aria-invalid="true"],
.form-group textarea[aria-invalid="true"],
.form-group select[aria-invalid="true"] {
    border-color: #dc2626;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--off-white);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* ============================================
   PREMIUM FOOTER
   ============================================ */
.footer {
    background: var(--gradient-luxury);
    color: var(--white);
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 25px 0 30px;
    line-height: 1.8;
}

.footer-brand .logo img {
    height: 40px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.15rem;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
}

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

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

/* ============================================
   WHATSAPP FLOAT BUTTON - Premium
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 35px;
    left: 35px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
    fill: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero .container {
        gap: 60px;
    }

    .about-grid,
    .spray-grid {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    section {
        padding: 90px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 550px;
        margin: 0 auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .about-grid,
    .spray-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact::before {
        display: none;
    }

    .about-image::before {
        display: none;
    }

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

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .logo img {
        height: 32px;
    }

    .header.scrolled .logo img {
        height: 28px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }

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

    .nav-menu a {
        color: var(--text-dark);
        font-size: 1.15rem;
        padding: 12px 0;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }

    .hero-feature {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .hero-feature-icon {
        margin: 0 auto;
    }

    /* Benefits Section Mobile - Switch to Grid */
    .benefits-slider {
        max-width: 100%;
        overflow: visible;
    }

    .benefits-track {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        transform: none !important;
    }

    .benefits-slider .benefit-card {
        flex: none;
        width: 100%;
    }

    .benefits-controls {
        display: none;
    }

    .benefit-card {
        padding: 35px 25px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .benefit-icon svg {
        width: 32px;
        height: 32px;
    }

    .benefit-card h4 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.95rem;
    }

    /* Footer Logo Mobile */
    .footer-brand .logo img {
        height: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .spray-images {
        min-height: 400px;
    }

    .spray-image-overlay {
        width: 140px;
        bottom: -20px;
        left: -10px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }

    .btn {
        padding: 16px 32px;
        font-size: 0.85rem;
        width: 100%;
    }

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

    .hero-image-overlay {
        width: 150px;
        bottom: -20px;
        left: -10px;
    }

    .hero-image-badge {
        right: 10px;
        padding: 15px 20px;
    }

    .hero-image-badge h4 {
        font-size: 1.5rem;
    }

    .about-image-badge {
        padding: 20px 25px;
        right: 10px;
        bottom: -15px;
    }

    .about-image-badge h4 {
        font-size: 2rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 58px;
        height: 58px;
    }

    .section-subtitle::before,
    .section-subtitle::after {
        width: 25px;
    }

    .section-subtitle::before {
        left: -15px;
    }

    .section-subtitle::after {
        right: -15px;
    }
}

/* Preloader - Premium */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 30px;
    animation: preloader-fade 1.5s ease-in-out infinite;
}

@keyframes preloader-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--cream);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Selection Color */
::selection {
    background: var(--primary-gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-gold);
    color: var(--white);
}

/* Scrollbar - Premium */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* ============================================
   VIDEO BUTTON & MODAL
   ============================================ */

.btn-video {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-family: inherit;
    padding: 10px 32px 10px 14px;
}

.btn-video:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-3px);
}

.play-ring {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
}

.play-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 83, 0.4);
    animation: play-pulse 2s ease-in-out infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.25); opacity: 0; }
}

.play-ring svg {
    color: var(--text-dark);
    margin-left: 2px;
}

.btn-video:hover .play-ring {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.video-modal.active {
    pointer-events: all;
    opacity: 1;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}

.video-modal-container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal.active .video-modal-container {
    transform: scale(1) translateY(0);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
    z-index: 10;
}

.video-modal-close:hover {
    background: var(--gold-gradient);
    border-color: var(--primary-gold);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.video-modal-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 168, 83, 0.2);
    background: #000;
    aspect-ratio: 16 / 9;
    max-height: calc(100vh - 120px);
    margin: 0 auto;
    position: relative;
}

@media (max-width: 768px) {
    .video-modal-inner {
        aspect-ratio: 9 / 16;
    }
}

.video-modal-inner video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

@media (max-width: 480px) {
    .video-modal-container {
        max-width: 100%;
    }

    .video-modal-inner {
        max-height: calc(100vh - 100px);
    }
    
    .video-modal-close {
        top: -44px;
        right: 0;
    }
}
