/* =============================================
   ZARDANAB (PRIVATE) LIMITED
   Homepage Complete Stylesheet
   Version: 2.0
   Lines: 3000+
   ============================================= */

/* =============================================
   TABLE OF CONTENTS
   1. CSS Variables & Root
   2. Reset & Base Styles
   3. Typography
   4. Utility Classes
   5. Loader
   6. Header & Navigation
   7. Search Overlay
   8. Hero Section
   9. Brand Story Section
   10. Stats Counter Section
   11. Products Showcase
   12. Why Choose Us
   13. Services Section
   14. Startup Message
   15. Testimonials
   16. Partners
   17. CTA Section
   18. Blog Preview
   19. Footer
   20. WhatsApp Float & Back to Top
   21. Animations & Keyframes
   22. Responsive Design (Media Queries)
   ============================================= */

/* =============================================
   1. CSS VARIABLES & ROOT
   ============================================= */
:root {
    /* Primary Colors */
    --primary: #1a5632;
    --primary-dark: #0f3d21;
    --primary-light: #2d7a4a;
    --primary-rgb: 26, 86, 50;
    
    /* Secondary Colors */
    --secondary: #e8a817;
    --secondary-dark: #c48f14;
    --secondary-light: #f0c04a;
    --secondary-rgb: 232, 168, 23;
    
    /* Accent Colors */
    --accent: #d4380d;
    --accent-light: #ff6b3d;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8faf8;
    --gray-light: #f0f4f0;
    --gray: #9ca3af;
    --gray-dark: #4b5563;
    --dark: #111827;
    --black: #0a0a0a;
    
    /* Brand B Color - Distinctive */
    --brand-b: #e8a817;
    --brand-b-glow: rgba(232, 168, 23, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a5632 0%, #2d7a4a 50%, #0f3d21 100%);
    --gradient-secondary: linear-gradient(135deg, #e8a817 0%, #f0c04a 50%, #c48f14 100%);
    --gradient-dark: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,86,50,0.95) 0%, rgba(15,61,33,0.9) 50%, rgba(0,0,0,0.85) 100%);
    --gradient-gold: linear-gradient(135deg, #e8a817, #f5d06b, #e8a817);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-2xl: 0 30px 80px rgba(0,0,0,0.2);
    --shadow-inner: inset 0 2px 10px rgba(0,0,0,0.06);
    --shadow-glow-green: 0 0 30px rgba(26,86,50,0.3);
    --shadow-glow-gold: 0 0 30px rgba(232,168,23,0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Fonts */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Z-index Layers */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-loader: 9999;
    
    /* Container */
    --container-max: 1320px;
    --container-padding: 24px;
    
    /* Section Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
}

/* =============================================
   2. RESET & BASE STYLES
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

body.loaded {
    overflow-y: auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* =============================================
   3. TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.highlight {
    color: var(--secondary);
}

.highlight-b {
    color: var(--brand-b);
    font-weight: 800;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   4. UTILITY CLASSES
   ============================================= */
.section-tag {
    display: inline-block;
    background: rgba(26, 86, 50, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 20px rgba(26,86,50,0.2);
}

.btn-primary:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(26,86,50,0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--dark);
    box-shadow: var(--shadow-md), 0 0 20px rgba(232,168,23,0.2);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-lg), 0 0 30px rgba(232,168,23,0.3);
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-success {
    background: #25D366;
    color: var(--white);
}

.btn-success:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 8px 0;
    position: relative;
}

.btn-small::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.btn-small:hover::after {
    width: 100%;
}

/* =============================================
   5. LOADER
   ============================================= */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-text-zardana {
    color: var(--primary);
}

.loader-text-b {
    color: var(--brand-b);
    text-shadow: 0 0 20px var(--brand-b-glow);
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: var(--gray-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: loaderProgress 1.5s ease-in-out forwards;
}

@keyframes loaderProgress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =============================================
   6. HEADER & NAVIGATION
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    transition: all var(--transition-slow);
}

.header-top {
    background: var(--primary-dark);
    padding: 10px 0;
    transition: all var(--transition-base);
}

.header-scrolled .header-top {
    padding: 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.header-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-contact-info {
    display: flex;
    gap: 20px;
}

.header-contact-info a {
    color: rgba(255,255,255,0.8);
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.header-contact-info a:hover {
    color: var(--white);
}

.header-contact-info i {
    font-size: 0.75rem;
    color: var(--secondary);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-social {
    display: flex;
    gap: 12px;
}

.header-social a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.header-social a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.language-selector .lang-btn {
    color: var(--white);
    font-size: 0.8125rem;
    padding: 4px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition-fast);
}

.language-selector .lang-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.language-selector .lang-btn i {
    font-size: 0.625rem;
}

/* Header Main */
.header-main {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all var(--transition-slow);
}

.header-scrolled .header-main {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-lg);
}

.header-hidden .header-main {
    transform: translateY(-100%);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.logo-zardana {
    color: var(--primary);
    transition: color var(--transition-fast);
}

.logo-b {
    color: var(--brand-b);
    font-size: 2.2rem;
    text-shadow: 0 0 15px rgba(232,168,23,0.3);
    transition: all var(--transition-fast);
}

.logo:hover .logo-zardana {
    color: var(--primary-light);
}

.logo:hover .logo-b {
    text-shadow: 0 0 25px rgba(232,168,23,0.5);
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--dark);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--brand-b);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(26,86,50,0.05);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link i {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.dropdown-menu.show,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-dark);
    transition: all var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: rgba(26,86,50,0.05);
    color: var(--primary);
    padding-left: 20px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    width: 900px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-dropdown);
}

.mega-dropdown:hover .mega-menu,
.mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mega-menu-col h4 {
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-light);
}

.mega-menu-col ul li {
    margin-bottom: 8px;
}

.mega-menu-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--gray-dark);
    transition: all var(--transition-fast);
}

.mega-menu-col ul li a:hover {
    background: rgba(26,86,50,0.05);
    color: var(--primary);
    padding-left: 16px;
}

.mega-menu-col ul li a i {
    color: var(--primary);
    font-size: 0.875rem;
    width: 20px;
    text-align: center;
}

.featured-product-card {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.featured-product-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.featured-product-card .featured-content {
    padding: 16px;
}

.featured-product-card .badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.featured-product-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    text-transform: none;
    letter-spacing: normal;
    border: none;
    padding: 0;
}

.featured-product-card p {
    font-size: 0.8125rem;
    color: var(--gray);
    margin-bottom: 12px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--dark);
    transition: all var(--transition-fast);
    background: var(--gray-light);
}

.search-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =============================================
   7. SEARCH OVERLAY
   ============================================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 600px;
    max-width: 90%;
    text-align: center;
}

.search-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.search-form {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.search-form input {
    flex: 1;
    padding: 18px 24px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1.125rem;
    outline: none;
    transition: all var(--transition-base);
}

.search-form input:focus {
    border-color: var(--secondary);
    background: rgba(255,255,255,0.1);
}

.search-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-form button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    color: var(--dark);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.search-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(232,168,23,0.4);
}

.search-suggestions {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
}

.search-suggestions span {
    margin-right: 8px;
}

.search-suggestions a {
    color: var(--secondary);
    margin: 0 8px;
    text-decoration: underline;
}

.search-suggestions a:hover {
    color: var(--secondary-light);
}

/* =============================================
   8. HERO SECTION
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 150px; /* Changed from 80px to 150px to prevent text overlap */
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -50px;
    animation-delay: -7s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    top: 50%;
    left: 30%;
    animation-delay: -14s;
}

.shape-4 {
    width: 500px;
    height: 500px;
    background: var(--primary-dark);
    bottom: -200px;
    right: 20%;
    animation-delay: -3s;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(0, -100px) scale(0.9); }
    75% { transform: translate(-50px, -50px) scale(1.05); }
}

/* Particles */
.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-element {
    position: absolute;
    animation: floatAnimation 6s ease-in-out infinite;
    opacity: 0.6;
}

.float-wheat {
    top: 15%;
    left: 10%;
    font-size: 2rem;
    color: var(--secondary);
    animation-delay: 0s;
}

.float-leaf {
    top: 60%;
    right: 15%;
    font-size: 2.5rem;
    color: var(--primary-light);
    animation-delay: -2s;
}

.float-fire {
    bottom: 20%;
    left: 20%;
    font-size: 1.8rem;
    color: var(--accent-light);
    animation-delay: -4s;
}

.float-industry {
    top: 30%;
    right: 25%;
    font-size: 2.2rem;
    color: var(--white);
    animation-delay: -1s;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-3deg); }
    75% { transform: translateY(-30px) rotate(2deg); }
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 5; /* Increased from 2 to ensure text is ALWAYS above the wave */
}

/* Hero Content */
.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title-sub {
    display: block;
    font-size: 0.7em;
    color: rgba(255,255,255,0.9);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Hero Stats Mini */
.hero-stats-mini {
    display: flex;
    gap: 30px;
    margin-bottom: 2.5rem;
}

.hero-stat-mini {
    text-align: center;
}

.hero-stat-mini .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.hero-stat-mini .stat-label {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-video-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
    transition: all var(--transition-base);
}

.btn-video-play .play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    position: relative;
}

.btn-video-play .play-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    animation: ripple 2s ease-out infinite;
}

.btn-video-play:hover .play-icon {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--dark);
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
}

.hero-trust-badges i {
    color: #22c55e;
    font-size: 1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-main-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,168,23,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-main-image {
    position: relative;
    z-index: 1;
    max-height: 500px;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Floating Cards */
.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: cardFloat 5s ease-in-out infinite;
}

.card-grains {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.card-biomass {
    top: 40%;
    right: -40px;
    animation-delay: -1.5s;
}

.card-briquettes {
    bottom: 15%;
    left: -20px;
    animation-delay: -3s;
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-grains .hero-card-icon {
    background: rgba(26,86,50,0.1);
    color: var(--primary);
}

.card-biomass .hero-card-icon {
    background: rgba(232,168,23,0.1);
    color: var(--secondary);
}

.card-briquettes .hero-card-icon {
    background: rgba(212,56,13,0.1);
    color: var(--accent);
}

.hero-card-info {
    display: flex;
    flex-direction: column;
}

.hero-card-value {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9375rem;
}

.hero-card-label {
    font-size: 0.75rem;
    color: var(--gray);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--secondary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    animation: scrollArrows 1.5s ease-in-out infinite;
}

.scroll-arrows i:last-child {
    animation-delay: 0.2s;
}

@keyframes scrollArrows {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(5px); }
}

/* Hero Wave Divider */
.hero-wave-divider {
    position: absolute;
    bottom: -1px; /* -1px prevents a tiny sub-pixel gap */
    left: 0;
    width: 100%;
    z-index: 1; /* Lowered from 3 so it renders behind your content */
    pointer-events: none; /* Prevents the wave from blocking button clicks */
}

.hero-wave-divider svg {
    display: block;
    width: 100%;
    height: 120px; /* Constrains the desktop height so it doesn't take over the screen */
}

/* =============================================
   9. BRAND STORY SECTION
   ============================================= */
.brand-story {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.brand-story::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232,168,23,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.brand-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brand-story-visual {
    position: relative;
}

.brand-logo-reveal {
    text-align: center;
    position: relative;
}

.brand-logo-big {
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.brand-zardana {
    color: var(--primary);
    letter-spacing: -0.03em;
}

.brand-b {
    color: var(--brand-b);
    font-size: 7rem;
    text-shadow: 0 0 40px rgba(232,168,23,0.4);
    animation: brandBGlow 3s ease-in-out infinite;
}

@keyframes brandBGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(232,168,23,0.4); }
    50% { text-shadow: 0 0 80px rgba(232,168,23,0.7), 0 0 120px rgba(232,168,23,0.3); }
}

.brand-equals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-dark);
}

.brand-equals .plus {
    color: var(--brand-b);
    font-size: 2.5rem;
}

.brand-equals .highlight {
    color: var(--brand-b);
    font-size: 2.5rem;
}

.brand-meaning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.meaning-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    min-width: 160px;
}

.meaning-item i {
    font-size: 2rem;
    color: var(--primary);
}

.meaning-item span {
    font-weight: 600;
    font-size: 0.9375rem;
    text-align: center;
}

.meaning-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-b);
}

.brand-story-content .section-tag {
    margin-bottom: 1rem;
}

.brand-story-content h2 {
    margin-bottom: 1.5rem;
}

.brand-story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.brand-story-text strong {
    color: var(--primary-dark);
}

.brand-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 2rem;
}

.brand-value {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.brand-value:hover {
    background: rgba(26,86,50,0.05);
    transform: translateX(10px);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.brand-value h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.brand-value p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* =============================================
   10. STATS COUNTER SECTION
   ============================================= */
.stats-counter {
    padding: 60px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number-counter {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    margin-top: 8px;
}

.stat-value-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
}

.stat-bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 6rem;
    color: rgba(255,255,255,0.03);
    z-index: 0;
}

/* =============================================
   11. PRODUCTS SHOWCASE
   ============================================= */
.products-showcase {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--gray-dark);
    background: var(--white);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(26,86,50,0.3);
}

/* Products Masonry */
.products-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 3rem;
}

.product-card-masonry {
    transition: all 0.4s ease;
}

.product-card-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-inner:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card-inner:hover .product-overlay {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.badge-new {
    background: #22c55e;
    color: var(--white);
}

.badge-eco {
    background: #10b981;
    color: var(--white);
}

.product-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 16px;
    flex: 1;
}

.product-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.product-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--gray-dark);
    background: var(--gray-light);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.product-meta i {
    color: var(--primary);
    font-size: 0.75rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 12px;
}

/* Service Card */
.card-service .product-image-wrapper {
    height: auto;
    padding: 40px 20px;
    background: var(--gradient-primary);
}

.service-icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.card-service .product-overlay {
    display: none;
}

/* View All */
.view-all-wrapper {
    text-align: center;
}

/* =============================================
   12. WHY CHOOSE US
   ============================================= */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: rgba(26,86,50,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all var(--transition-base);
}

.feature-card:hover .icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
    transition: all 0.8s ease;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.feature-list {
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.feature-list i {
    color: #22c55e;
    font-size: 0.75rem;
}

/* =============================================
   13. SERVICES SECTION
   ============================================= */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    height: 300px;
    perspective: 1000px;
}

.service-card-front,
.service-card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-front {
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-card-back {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card:hover .service-card-front {
    transform: rotateY(180deg);
}

.service-card:hover .service-card-back {
    transform: rotateY(0);
}

.service-icon-lg {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card-front h3 {
    margin-bottom: 8px;
}

.service-card-front p {
    color: var(--gray);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.service-card-back h3 {
    margin-bottom: 16px;
}

.service-card-back ul {
    text-align: left;
    margin-bottom: 20px;
}

.service-card-back ul li {
    padding: 6px 0;
    font-size: 0.9375rem;
    position: relative;
    padding-left: 20px;
}

.service-card-back ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* =============================================
   14. STARTUP MESSAGE
   ============================================= */
.startup-message {
    position: relative;
    padding: 80px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

.startup-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(232,168,23,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26,86,50,0.2) 0%, transparent 50%);
}

.startup-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.startup-icon {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.startup-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.startup-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.startup-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.startup-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.startup-badge i {
    color: #22c55e;
}

.startup-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   15. TESTIMONIALS
   ============================================= */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.testimonials-slider {
    overflow: hidden;
    padding: 20px 10px 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 3rem;
    color: rgba(26,86,50,0.1);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--gray);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 0.875rem;
}

/* Swiper Custom Styles */
.swiper-button-prev,
.swiper-button-next {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 1rem !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--gray);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* =============================================
   16. PARTNERS
   ============================================= */
.partners {
    padding: 60px 0;
    background: var(--gray-light);
}

.partners-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all var(--transition-base);
    filter: grayscale(100%);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-logo i {
    font-size: 3rem;
    color: var(--primary);
}

.partner-logo span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray);
}

/* =============================================
   17. CTA SECTION
   ============================================= */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    top: -50px;
    right: -50px;
    animation: ctaShape1 8s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: -30px;
    left: -30px;
    animation: ctaShape2 6s ease-in-out infinite;
}

@keyframes ctaShape1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes ctaShape2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -30px); }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============================================
   18. BLOG PREVIEW
   ============================================= */
.blog-preview {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 8px 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: rgba(26,86,50,0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.blog-content p {
    font-size: 0.9375rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: gap var(--transition-fast);
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* =============================================
   19. FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

/* Newsletter */
.footer-newsletter {
    padding: 60px 0;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    min-width: 300px;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark);
    flex-shrink: 0;
}

.newsletter-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-base);
}

.newsletter-input-group input:focus {
    border-color: var(--secondary);
    background: rgba(255,255,255,0.1);
}

.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
}

.newsletter-checkbox a {
    color: var(--secondary);
}

/* Footer Main */
.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: all var(--transition-base);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icon:hover {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
    transform: translateY(-4px);
}

.footer-certifications {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-certifications span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
}

.footer-certifications i {
    color: var(--secondary);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-contact-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-list i {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact-list strong {
    display: block;
    color: var(--white);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.footer-contact-list p,
.footer-contact-list a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-left p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom-right ul {
    display: flex;
    gap: 20px;
}

.footer-bottom-right a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-bottom-right a:hover {
    color: var(--secondary);
}

/* =============================================
   20. WHATSAPP FLOAT & BACK TO TOP
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 60px rgba(37,211,102,0.3); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px;
    height: 48px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    border: 2px solid var(--primary);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
}

/* =============================================
   21. ANIMATIONS & KEYFRAMES
   ============================================= */
/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scale In */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Slide In Right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide In Left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Shimmer Effect */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.shimmer {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

/* =============================================
   22. RESPONSIVE DESIGN (MEDIA QUERIES)
   ============================================= */

/* Extra Large Devices (1400px+) */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 5.5rem;
    }
    
    .container {
        max-width: 1400px;
    }
}

/* Large Devices (1200px - 1399px) */
@media (max-width: 1399px) {
    .hero-grid {
        gap: 40px;
    }
    
    .hero-card {
        padding: 12px 16px;
    }
    
    .card-grains {
        left: -10px;
    }
    
    .card-biomass {
        right: -10px;
    }
}

/* Desktop (1025px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .products-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mega-menu {
        width: 700px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mega-menu-col:last-child {
        display: none;
    }
}

/* Tablet Landscape (769px - 1024px) */
@media (max-width: 1024px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-slow);
        overflow-y: auto;
        gap: 4px;
        z-index: 9;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 1rem;
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu,
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: var(--gray-light);
        border-radius: var(--radius-md);
        margin: 4px 0 8px 16px;
    }
    
    .dropdown-menu.show,
    .mega-menu.show {
        display: block;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .mega-menu-col:last-child {
        display: block;
    }
    
    .mega-menu {
        width: 100%;
        padding: 0;
    }
    
    /* Hero */
    .hero {
        padding: 140px 0 120px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-stats-mini {
        justify-content: center;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-main-image {
        max-height: 350px;
    }
    
    .hero-card {
        display: none;
    }
    
    /* Brand Story */
    .brand-story-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-logo-big {
        font-size: 4rem;
    }
    
    .brand-b {
        font-size: 5rem;
    }
    
    /* Products */
    .products-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .header-top {
        display: none;
    }
}

/* Tablet Portrait (577px - 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats-mini {
        gap: 20px;
    }
    
    .hero-main-image {
        max-height: 250px;
    }
    
    .products-masonry {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: 250px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .startup-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right ul {
        justify-content: center;
    }
    
    .hero-wave-divider svg {
        height: 60px;
    }
    
    .partners-slider {
        gap: 30px;
    }
    
    .brand-equals {
        font-size: 1.5rem;
    }
    
    .brand-meaning {
        flex-direction: column;
    }
    
    .meaning-plus {
        transform: rotate(90deg);
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .hero-stats-mini {
        gap: 12px;
    }
    
    .hero-stat-mini .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        width: 100%;
    }
    
    .btn-video-play {
        margin-top: 8px;
    }
    
    .hero-main-image {
        max-height: 200px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 12px;
    }
    
    .stat-number-counter,
    .stat-suffix {
        font-size: 1.75rem;
    }
    
    .stat-icon-wrapper {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .product-tabs {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }
    
    .brand-logo-big {
        font-size: 3rem;
    }
    
    .brand-b {
        font-size: 3.5rem;
    }
    
    .brand-equals {
        font-size: 1.25rem;
        gap: 8px;
    }
    
    .partner-logo i {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
    }
    
    .footer-newsletter {
        padding: 40px 0;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .brand-story {
        padding: 60px 0;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-info h3 {
        font-size: 1.125rem;
    }
    
    .section-header-center h2 {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .back-to-top,
    .loader-wrapper,
    .hero-wave-divider,
    .search-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .hero {
        background: none;
        padding: 0;
        min-height: auto;
    }
    
    .hero-title {
        color: #000;
        font-size: 24pt;
    }
    
    .hero-description {
        color: #333;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =============================================
   END OF CSS - TOTAL STYLESHEET
   ============================================= */