/* ============================================
   Puriko India - Complete Stylesheet
   Premium Food & Wellness Brand
   ============================================ */

/* ============================================
   1. CSS Variables
   ============================================ */
:root {
    /* Primary Palette */
    --primary: #C1440E;
    --primary-dark: #9A360B;
    --primary-light: #E8652F;
    --secondary: #2E7D32;
    --secondary-dark: #1B5E20;
    --secondary-light: #4CAF50;
    --accent: #D4A843;
    --accent-dark: #B8912F;
    --accent-light: #E8C76A;

    /* Neutrals */
    --dark: #1C1C2E;
    --dark-rgb: 28, 28, 46;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #FFFFFF;
    --light-bg: #FFF9F2;
    --alt-bg: #F8F3EC;
    --border: #E8E0D8;

    /* Semantic */
    --success: #27ae60;
    --error: #e74c3c;
    --info: #3498db;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(28, 28, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(28, 28, 46, 0.10);
    --shadow-lg: 0 10px 40px rgba(28, 28, 46, 0.15);
    --shadow-product: 10px 2px 16px 10px #f1f1f1;
    --shadow-hover: 0 20px 60px rgba(193, 68, 14, 0.15);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 80px;
    --space-5xl: 100px;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fs-hero: clamp(36px, 5vw, 56px);
    --fs-h1: clamp(32px, 4vw, 48px);
    --fs-h2: clamp(28px, 3.5vw, 40px);
    --fs-h3: clamp(22px, 2.5vw, 30px);
    --fs-h4: clamp(18px, 2vw, 24px);
    --fs-body: 16px;
    --fs-small: 14px;
    --fs-xs: 12px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Container */
    --container-max: 1200px;
    --container-narrow: 900px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
    list-style: none;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    outline: none;
}

/* ============================================
   3. Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

p:last-child {
    margin-bottom: 0;
}

/* ============================================
   4. Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section--pt-sm { padding-top: 50px; }
.section--pb-sm { padding-bottom: 40px; }

.bg-light { background-color: var(--light-bg); }
.bg-alt { background-color: var(--alt-bg); }
.bg-dark { background-color: var(--dark); }
.bg-white { background-color: var(--white); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }

/* ============================================
   5. Button System
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
}

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

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(193, 68, 14, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
    font-weight: 600;
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

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

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

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

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

.btn-lg {
    padding: 18px 42px;
    font-size: 18px;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ============================================
   6. Section Title Component
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.title-bar {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.title-bar span {
    display: block;
    height: 4px;
    width: 30px;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-title.visible .title-bar span {
    transform: scaleX(1);
}

.title-bar span:nth-child(1) { background: var(--primary); transition-delay: 0s; }
.title-bar span:nth-child(2) { background: var(--accent); transition-delay: 0.1s; }
.title-bar span:nth-child(3) { background: var(--secondary); transition-delay: 0.2s; }
.title-bar span:nth-child(4) { background: var(--info); transition-delay: 0.3s; }

/* ============================================
   7. Card Components
   ============================================ */

/* --- Product Card --- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px;
    box-shadow: var(--shadow-product);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.product-card__image {
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
    margin-bottom: 16px;
    background: var(--alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-card__image .placeholder-icon {
    font-size: 48px;
    color: var(--primary);
    opacity: 0.4;
}

.product-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--dark);
    padding: 0 4px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 4px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-card .btn {
    width: calc(100% - 8px);
    margin: 0 4px;
}

/* --- Offering Card (Hero 3-card) --- */
.offering-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.offering-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.offering-card:hover::after {
    transform: scaleX(1);
}

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

.offering-card__image {
    height: 200px;
    overflow: hidden;
    background: var(--alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.offering-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offering-card:hover .offering-card__image img {
    transform: scale(1.1);
}

.offering-card__image .placeholder-icon {
    font-size: 64px;
    color: var(--primary);
    opacity: 0.3;
}

.offering-card__content {
    padding: 28px 24px;
    text-align: center;
}

.offering-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -52px auto 16px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(193, 68, 14, 0.3);
}

.offering-card__icon i {
    color: var(--white);
    font-size: 24px;
}

.offering-card__content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark);
}

.offering-card__content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* --- Feature Card --- */
.feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(193, 68, 14, 0.03), rgba(46, 125, 50, 0.03));
    opacity: 0;
    transition: var(--transition);
}

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

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

.feature-card__icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
}

.feature-card:hover .feature-card__icon {
    background: var(--primary);
    transform: rotateY(180deg);
}

.feature-card__icon i {
    font-size: 36px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card__icon i {
    color: var(--white);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark);
    position: relative;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
}

/* --- Stat Item --- */
.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

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

.stat-item i {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 12px;
    display: block;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin: 0;
}

/* --- Process Card --- */
.process-card {
    text-align: center;
    position: relative;
    padding: 20px;
}

.process-card__number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(193, 68, 14, 0.3);
}

.process-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   8. Top Bar
   ============================================ */
.top-bar {
    background-color: var(--dark);
    padding: 10px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

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

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__left a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar__left a:hover {
    color: var(--accent);
}

.top-bar__left i {
    color: var(--accent);
    font-size: 14px;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar__social {
    display: flex;
    gap: 12px;
}

.top-bar__social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.top-bar__social a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   9. Header & Navigation
   ============================================ */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
}

.header--scrolled .header__inner {
    padding: 8px 0;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    transition: padding 0.3s ease;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__logo img {
    height: 75px;
    width: auto;
}

.header__logo-text {
    display: flex;
    flex-direction: column;
}

.header__logo-text .brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.header__logo-text .brand-tagline {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Arrow */

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-top: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.nav-menu > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary);
    padding-left: 25px;
}

.header__cta {
    flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
}

/* ============================================
   10. Hero Section
   ============================================ */
.hero-main {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: var(--dark);
}

.hero-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 28, 46, 0.92) 0%, rgba(28, 28, 46, 0.7) 50%, rgba(28, 28, 46, 0.85) 100%);
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Decorative floating particles */
.hero-particle {
    position: absolute;
    border-radius: var(--radius-full);
    background: rgba(212, 168, 67, 0.2);
    animation: heroFloat 8s ease-in-out infinite;
    z-index: 1;
}

.hero-particle:nth-child(1) { width: 6px; height: 6px; top: 15%; left: 10%; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 8px; height: 8px; top: 25%; right: 15%; animation-delay: 1.5s; }
.hero-particle:nth-child(3) { width: 5px; height: 5px; top: 60%; left: 20%; animation-delay: 3s; }
.hero-particle:nth-child(4) { width: 7px; height: 7px; top: 40%; right: 25%; animation-delay: 4.5s; }
.hero-particle:nth-child(5) { width: 4px; height: 4px; top: 70%; left: 60%; animation-delay: 2s; }
.hero-particle:nth-child(6) { width: 6px; height: 6px; top: 20%; left: 75%; animation-delay: 5.5s; }

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 0 140px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.2s forwards;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: var(--fs-hero);
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.4s forwards;
}

.hero-content h1 .text-accent {
    color: var(--accent);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-content > p {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.6s forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: fadeSlideUp 0.6s ease 0.8s forwards;
}

/* Hero Cards */
.hero-cards {
    position: relative;
    z-index: 5;
    margin-top: -100px;
    padding: 0 20px 80px;
}

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

/* ============================================
   11. About Section
   ============================================ */
.about-section {
    padding: var(--space-5xl) 0;
}

.about-preview {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.about-circular-image {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-full);
    float: left;
    margin: 0 40px 20px 0;
    shape-outside: circle(50%);
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-lg);
    background: var(--alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-circular-image .placeholder-icon {
    font-size: 72px;
    color: var(--primary);
    opacity: 0.3;
}

.about-preview > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin: 30px 0;
    clear: both;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--dark);
    font-size: 15px;
}

.about-feature i {
    color: var(--secondary);
    font-size: 18px;
}

/* ============================================
   12. Products Section (Tabs + Grid)
   ============================================ */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.product-tab {
    padding: 10px 28px;
    border-radius: 30px;
    border: 2px solid var(--border);
    background: transparent;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text);
}

.product-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.product-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.product-card[data-category] {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ============================================
   13. Stats Section
   ============================================ */
.stats-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: url('') center/cover no-repeat fixed;
    background-color: var(--dark);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 46, 0.88);
    z-index: 1;
}

.stats-section > .container {
    position: relative;
    z-index: 2;
}

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

/* ============================================
   14. Features / Why Choose Us
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Stagger reveal for feature cards */
.features-grid.animate-stagger .feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.features-grid.animate-stagger.visible .feature-card {
    opacity: 1;
    transform: translateY(0);
}

.features-grid.animate-stagger.visible .feature-card:nth-child(1) { transition-delay: 0s; }
.features-grid.animate-stagger.visible .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid.animate-stagger.visible .feature-card:nth-child(3) { transition-delay: 0.15s; }
.features-grid.animate-stagger.visible .feature-card:nth-child(4) { transition-delay: 0.2s; }
.features-grid.animate-stagger.visible .feature-card:nth-child(5) { transition-delay: 0.25s; }
.features-grid.animate-stagger.visible .feature-card:nth-child(6) { transition-delay: 0.3s; }

/* ============================================
   15. Brands Section
   ============================================ */
.brand-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.brand-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: var(--shadow-lg);
}

.brand-card:nth-child(even) {
    direction: rtl;
}

.brand-card:nth-child(even) > * {
    direction: ltr;
}

.brand-card__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 300px;
    background: var(--alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card__content h3 {
    font-size: var(--fs-h3);
    margin-bottom: 16px;
    color: var(--dark);
}

.brand-card__content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ============================================
   16. CTA Section
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-section::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: var(--fs-h2);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

/* ============================================
   17. Private Label Section
   ============================================ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    z-index: 1;
}

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

.benefit-card {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
}

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

.benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   18. B2B Section
   ============================================ */
.serve-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.serve-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.serve-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--light-bg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.serve-card:hover .serve-card__icon {
    background: var(--primary);
}

.serve-card__icon i {
    font-size: 32px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.serve-card:hover .serve-card__icon i {
    color: var(--white);
}

.serve-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.serve-card p {
    font-size: 14px;
    color: var(--text-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.advantage-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.advantage-item i {
    color: var(--secondary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.advantage-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.advantages-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 450px;
    background: var(--alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.advantages-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   19. Contact Section
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 40px;
    color: var(--white);
}

.contact-info h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-detail__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail__icon i {
    color: var(--white);
    font-size: 18px;
}

.contact-detail h4 {
    color: var(--white);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--white);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text);
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(193, 68, 14, 0.1);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 60px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Contact Cards */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.quick-contact-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.quick-contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.quick-contact-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.quick-contact-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.quick-contact-card p,
.quick-contact-card a {
    font-size: 14px;
    color: var(--text-light);
}

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

/* ============================================
   20. Quote Modal
   ============================================ */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 46, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.quote-modal-overlay.active .quote-modal {
    transform: translateY(0) scale(1);
}

.quote-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--alt-bg);
    cursor: pointer;
    font-size: 18px;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quote-modal__close:hover {
    background: var(--primary);
    color: var(--white);
}

.quote-modal h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.quote-modal > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ============================================
   21. Footer
   ============================================ */
.footer {
    position: relative;
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.85);
    background: url('../assets/footer-bg.jpg') center center / cover no-repeat;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(28, 28, 46, 0.78);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 0;
    transition: var(--transition);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
}

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

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

.footer-contact li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--accent);
}

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

/* ============================================
   22. WhatsApp Button
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn .tooltip {
    position: absolute;
    left: 70px;
    white-space: nowrap;
    background: var(--white);
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-family: var(--font-body);
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-btn:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   23. Back to Top
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(193, 68, 14, 0.3);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   24. Page Header / Breadcrumb
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--white);
    margin-bottom: 16px;
}

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

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

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

.breadcrumb .separator {
    color: var(--accent);
}

.breadcrumb .current {
    color: var(--accent);
}

/* ============================================
   25. SVG Wave Dividers
   ============================================ */
.section--wave-top {
    position: relative;
}

.section--wave-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FFF9F2' d='M0,40 C360,80 720,0 1080,40 C1260,60 1380,50 1440,40 L1440,80 L0,80 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
    z-index: 2;
    pointer-events: none;
}

.section--wave-bottom {
    position: relative;
}

.section--wave-bottom::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23FFF9F2' d='M0,40 C360,0 720,80 1080,40 C1260,20 1380,30 1440,40 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: 100% 100%;
    z-index: 2;
    pointer-events: none;
}

/* ============================================
   26. Animations & Keyframes
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-slide-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.visible {
    opacity: 1;
    transform: scale(1);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(-10px) translateX(-10px); }
    75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   27. Loading Overlay
   ============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(193, 68, 14, 0.12);
    border-top-color: var(--primary);
    border-right-color: var(--accent);
    border-radius: var(--radius-full);
    animation: spin 1.1s linear infinite;
}

.loader-bowl {
    font-size: 44px;
    color: var(--primary);
    animation: bowlPulse 1.6s ease-in-out infinite;
}

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

@keyframes bowlPulse {
    0%, 100% {
        transform: scale(1);
        color: var(--primary);
    }
    50% {
        transform: scale(1.08);
        color: var(--accent);
    }
}

/* ============================================
   28. Form Success Popup
   ============================================ */
.form-success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 46, 0.75);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.success-popup-content {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    animation: slideDown 0.4s ease;
}

.success-popup-content i {
    font-size: 56px;
    color: var(--success);
    margin-bottom: 20px;
    display: block;
}

.success-popup-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.success-popup-content p {
    color: var(--text-light);
    margin-bottom: 28px;
}

/* ============================================
   29. Quality Assurance Strip
   ============================================ */
.qa-strip {
    background: var(--light-bg);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.qa-strip .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.qa-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
}

.qa-item i {
    font-size: 28px;
    color: var(--secondary);
}

/* ============================================
   30. Mission & Vision Cards
   ============================================ */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card--mission {
    border-left: 4px solid var(--primary);
}

.mv-card--vision {
    border-left: 4px solid var(--secondary);
}

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

.mv-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mv-card--mission .mv-card__icon {
    background: rgba(193, 68, 14, 0.1);
}

.mv-card--vision .mv-card__icon {
    background: rgba(46, 125, 50, 0.1);
}

.mv-card__icon i {
    font-size: 28px;
}

.mv-card--mission .mv-card__icon i { color: var(--primary); }
.mv-card--vision .mv-card__icon i { color: var(--secondary); }

.mv-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

/* ============================================
   31. About Story Section
   ============================================ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.story-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 380px;
    background: var(--alt-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h3 {
    font-size: var(--fs-h3);
    margin-bottom: 20px;
    color: var(--dark);
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ============================================
   32. Process Timeline
   ============================================ */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 180px;
}

.timeline-step__number {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(193, 68, 14, 0.3);
}

.timeline-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.timeline-step p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   33. B2B Inquiry Form
   ============================================ */
.b2b-form-section {
    background: var(--light-bg);
    padding: var(--space-5xl) 0;
}

.b2b-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.b2b-form-wrapper h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 8px;
}

.b2b-form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 36px;
}

/* ============================================
   34. Responsive: 1200px
   ============================================ */
@media (max-width: 1200px) {
    .nav-menu > li > a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .serve-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ============================================
   35. Responsive: 1024px
   ============================================ */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 30px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        gap: 0;
    }

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

    .nav-menu > li > a {
        padding: 14px 24px;
        font-size: 16px;
        border-bottom: 1px solid var(--border);
    }

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

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--light-bg);
    }

    .nav-menu > li.dropdown-open .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-menu a {
        padding: 12px 40px;
    }

    .header__cta {
        display: none;
    }

    .hero-cards .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

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

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

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

    .process-grid::before {
        display: none;
    }
}

/* ============================================
   36. Responsive: 768px
   ============================================ */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .hero-main {
        min-height: auto;
    }

    .hero-content {
        padding: 60px 0 120px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-cards .container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .hero-cards {
        margin-top: -80px;
    }

    .about-circular-image {
        float: none;
        display: flex;
        margin: 0 auto 30px;
        width: 250px;
        height: 250px;
        shape-outside: none;
    }

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

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .brand-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .brand-card:nth-child(even) {
        direction: ltr;
    }

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

    .advantages-image {
        height: 300px;
    }

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

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

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

    .story-image {
        position: static;
        height: 300px;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0;
    }

    .timeline::before {
        top: 0;
        bottom: 0;
        left: 30px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .timeline-step {
        text-align: left;
        display: flex;
        gap: 20px;
        max-width: 100%;
        align-items: flex-start;
    }

    .timeline-step__number {
        margin: 0;
        flex-shrink: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

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

    .page-header {
        padding: 60px 0 40px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .qa-strip .container {
        gap: 30px;
        justify-content: flex-start;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   37. Responsive: 480px
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 50px 0;
    }

    .hero-content {
        padding: 40px 0 100px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

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

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

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

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

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

    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .whatsapp-btn .tooltip {
        display: none;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .quote-modal {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .b2b-form-wrapper {
        padding: 30px 20px;
    }

    .product-tab {
        padding: 8px 20px;
        font-size: 13px;
    }
}
