/* Indeco Premium Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --primary: #2D5016;
    --primary-dark: #0D3A12;
    --primary-light: #4A7C23;
    --primary-glow: rgba(46, 125, 50, 0.4);
    --secondary: #6D4C41;
    --accent: #F4A261;
    --accent-light: #FFB300;
    --dark: #1a1a1a;
    --gray: #555;
    --gray-light: #888;
    --gray-lighter: #ccc;
    --light: #f8faf5;
    --white: #ffffff;
    --success: #00C853;
    --error: #D32F2F;
    --warning: #FF9100;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.18);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 50px;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

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

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    z-index: 9999;
    transition: width 0.1s;
}

/* ===== Top Bar ===== */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span, .top-bar-right a {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.top-bar-left span:hover, .top-bar-right a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.top-bar-right .whatsapp-link {
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
}

/* ===== Header ===== */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary);
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
}

.logo {
    outline: none;
}
.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.4);
}

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

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

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

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f9f5 0%, #e8f5e9 50%, #f1f8e9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(74, 124, 35, 0.05) 0%, transparent 50%);
}

.floating-leaves {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.leaf {
    position: absolute;
    font-size: 30px;
    color: var(--primary);
    opacity: 0.1;
    animation: floatLeaf 15s infinite ease-in-out;
}

.leaf:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.leaf:nth-child(2) { left: 30%; animation-delay: 3s; animation-duration: 18s; }
.leaf:nth-child(3) { left: 50%; animation-delay: 5s; animation-duration: 22s; }
.leaf:nth-child(4) { left: 70%; animation-delay: 2s; animation-duration: 19s; }
.leaf:nth-child(5) { left: 90%; animation-delay: 4s; animation-duration: 21s; }

@keyframes floatLeaf {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
    position: relative;
    z-index: 1;
    max-width: 650px;
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-text h1 span {
    display: block;
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 35px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: slideInUp 0.8s ease-out 0.8s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-circle {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(74, 124, 35, 0.1) 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseCircle 4s infinite ease-in-out;
}

@keyframes pulseCircle {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    animation: floatImage 6s infinite ease-in-out;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 3s infinite ease-in-out;
    z-index: 2;
}

.floating-card i {
    font-size: 24px;
    color: var(--primary);
}

.floating-card span {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.card-1 {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30%;
    left: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ===== Features Banner ===== */
.features-banner {
    background: white;
    padding: 30px 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.4s;
    cursor: default;
}

.feature-item:hover {
    background: var(--light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.4s;
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

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

.feature-text p {
    font-size: 13px;
    color: var(--gray);
}

/* ===== Sections ===== */
.section {
    padding: 100px 0;
}

.bg-light {
    background: var(--light);
}

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

.section-subtitle {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.1) 0%, rgba(74, 124, 35, 0.1) 100%);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Categories ===== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(74, 124, 35, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.5s;
}

.category-card:hover .category-icon {
    transform: rotate(10deg) scale(1.1);
    border-radius: 50%;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.category-card p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
    transition: transform 0.3s;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge.bestseller {
    background: linear-gradient(135deg, var(--warning) 0%, #e67e22 100%);
    color: white;
}

.badge.new {
    background: linear-gradient(135deg, var(--success) 0%, #2ecc71 100%);
    color: white;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--dark);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.product-card:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.product-card:hover .overlay-btn:nth-child(2) {
    transition-delay: 0.1s;
}

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

.product-content {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-content h3 a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.3s;
}

.product-content h3 a:hover {
    color: var(--primary);
}

.product-content p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price .mrp {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===== Sustainability ===== */
.sustainability {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sustainability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.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");
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sustainability-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.sustainability-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 20px;
}

.sustainability-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.sustainability-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.sustainability-feature i {
    color: var(--accent);
    font-size: 20px;
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.stat-card .stat-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--accent);
}

.stat-card .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 13px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.5s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

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

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

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

/* ===== Newsletter ===== */
.newsletter {
    background: var(--dark);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.newsletter h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

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

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

.newsletter-note {
    margin-top: 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ===== Footer ===== */
.footer {
    background: #111;
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand .logo .logo-text {
    color: var(--primary-light);
    font-size: 22px;
    font-weight: 700;
}

.footer-brand .logo-icon {
    background: white;
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-links h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-links i {
    margin-right: 8px;
    color: white;
}

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

.footer-bottom i {
    color: var(--error);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

/* ===== Notification Toast ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 20px 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 5px solid var(--success);
}

.notification-success i {
    color: var(--success);
    font-size: 24px;
}

.notification-error {
    border-left: 5px solid var(--error);
}

.notification-error i {
    color: var(--error);
    font-size: 24px;
}

/* ===== Scroll Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

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

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

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

/* ===== Mobile Menu ===== */
.mobile-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    background: var(--light);
    border: none;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
}

/* ===== Certifications Strip ===== */
.certifications-strip {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--light);
    transition: all 0.4s;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.cert-item img {
    height: 35px;
    width: auto;
}

.cert-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.cert-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.1);
}

/* ===== Green Promises ===== */
.promises-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.promise-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.03) 0%, rgba(74, 124, 35, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.promise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.promise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    transition: all 0.5s;
}

.promise-card:hover .promise-icon {
    transform: rotate(10deg) scale(1.1);
    border-radius: 50%;
}

.promise-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.promise-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}


/* ===== Customization Section ===== */
.customization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-card {
    background: white;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.custom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(74, 124, 35, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.custom-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.custom-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    transition: all 0.5s;
}

.custom-card:hover .custom-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.3);
}

.custom-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.custom-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ===== Brochure Section ===== */
.brochure-content {
    text-align: center;
}

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

.brochure-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s;
}

.brochure-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.brochure-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.brochure-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.brochure-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* ===== Nav CTA Buttons ===== */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.nav-cta-btn i {
    font-size: 14px;
}

.nav-cta-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.nav-cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.nav-cta-btn.primary:hover::before {
    left: 100%;
}

.nav-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.4);
}

.nav-cta-btn.outline {
    background: rgba(45, 80, 22, 0.06);
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.nav-cta-btn.outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.2);
}

/* ===== Product Hero Banner ===== */
.product-hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.product-hero:nth-child(even) {
    background: var(--light);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-content.reverse {
    direction: rtl;
}

.product-hero-content.reverse > * {
    direction: ltr;
}

.product-hero-text .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-hero-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-hero-text .hero-buttons {
    display: flex;
    gap: 15px;
}

.product-hero-image {
    position: relative;
}

.product-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.6s;
}

.product-hero-image:hover img {
    transform: scale(1.03);
}

.product-hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45,80,22,0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ===== Why Choose Section ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45,80,22,0.04) 0%, rgba(74,124,35,0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

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

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.why-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 26px;
    transition: all 0.5s;
}

.why-card:hover .why-icon {
    transform: rotate(10deg) scale(1.1);
    border-radius: 50%;
}

.why-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.why-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ===== Blog Section ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: var(--dark);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.blog-body {
    padding: 25px;
}

.blog-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45,80,22,0.1) 0%, rgba(74,124,35,0.1) 100%);
    color: var(--primary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-body p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(5px);
    transition: transform 0.3s;
}

/* ===== Work With Us ===== */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.work-card {
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.work-card.distribution {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.work-card.quote-request {
    background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
    color: white;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.work-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    transition: all 0.5s;
}

.work-card:hover .work-icon {
    transform: scale(1.1) rotate(5deg);
}

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.work-card p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===== Manufacturer Section ===== */
.mf-section {
    background: linear-gradient(135deg, #f8f9f5 0%, #e8f5e9 50%, #f1f8e9 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mf-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mf-image {
    position: relative;
}

.mf-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    display: block;
}

.mf-badge {
    position: absolute;
    bottom: -25px;
    right: -20px;
    background: white;
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 160px;
}

.mf-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.mf-badge-text strong {
    display: block;
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1.1;
}

.mf-badge-text span {
    display: block;
    font-size: 12px;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.mf-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.mf-text h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.mf-text p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 22px;
}

.mf-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.mf-stat {
    text-align: center;
    padding: 22px 12px 18px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.mf-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.mf-stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin: 0 auto 10px;
    transition: all 0.3s;
}

.mf-stat:hover .mf-stat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.mf-stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.mf-stat-lbl {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===== Certifications Section ===== */
.certs-section {
    padding: 80px 0;
    background: white;
}

.certs-header {
    text-align: center;
    margin-bottom: 48px;
}

.certs-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.certs-header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    justify-items: center;
    max-width: 780px;
    margin: 0 auto 30px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cert-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D9F2E6;
    color: #2B7A5B;
    font-size: 28px;
    transition: transform 0.3s;
}

.cert-item:hover .cert-circle {
    transform: scale(1.05);
}

.cert-label {
    font-size: 14px;
    font-weight: 600;
    color: #0B4F3B;
    text-align: center;
    line-height: 1.3;
}

.certs-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #D9F2E6;
    color: #0B4F3B;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 20px;
    border-radius: 50px;
    margin: 0 auto;
    width: fit-content;
}

.certs-badge i {
    font-size: 13px;
}

/* ===== Alert Styles ===== */
.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        display: none;
    }
    .hero-text h1 {
        font-size: 3rem;
    }
    .hero-stats {
        justify-content: flex-start;
    }
    .hero-buttons {
        justify-content: flex-start;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .customization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brochure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .product-hero-content.reverse {
        direction: ltr;
    }
    .product-hero-text .hero-buttons {
        justify-content: center;
    }
    .mf-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mf-stats {
        justify-content: center;
    }
    .sustainability-content {
        grid-template-columns: 1fr;
    }
    .sustainability-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        gap: 5px;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    .nav-menu.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        margin: 0;
        display: none;
    }
    .nav-menu.active .dropdown:hover .dropdown-menu {
        display: block;
    }
    .nav-menu.active .dropdown-menu a {
        padding: 8px 15px;
        font-size: 13px;
    }
    .nav-cta-btn {
        display: none;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .customization-grid {
        grid-template-columns: 1fr;
    }
    .brochure-grid {
        grid-template-columns: 1fr;
    }
    .mf-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .promises-grid {
        grid-template-columns: 1fr;
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .work-grid {
        grid-template-columns: 1fr;
    }
    .customization-grid {
        grid-template-columns: 1fr;
    }
    .brochure-grid {
        grid-template-columns: 1fr;
    }
    .certs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
    .cert-circle {
        width: 72px;
        height: 72px;
        font-size: 26px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .sustainability-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .mf-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mf-badge {
        position: static;
        margin-top: 20px;
        justify-content: center;
    }
    .mf-stats {
        grid-template-columns: 1fr;
    }
    .product-hero-text h2 {
        font-size: 1.8rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .certs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 8px;
    }
    .cert-circle {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }
}

/* ===== Tree View Dropdown ===== */
.tree-view {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tree-view li {
    position: relative;
    padding-left: 24px;
}

.tree-view li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #ddd;
}

.tree-view li::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 22px;
    width: 14px;
    height: 1px;
    background: #ddd;
}

.tree-view li:first-child::before {
    top: 50%;
}

.tree-view li:last-child::before {
    bottom: 50%;
}

.tree-view li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s;
}

.tree-view li a:hover {
    background: var(--primary);
    color: #fff;
}

.tree-view li a i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 13px;
    transition: all 0.3s;
}

.tree-view li a:hover i {
    color: #fff;
}

.tree-view .tree-root {
    padding-left: 0;
}

.tree-view .tree-root::before,
.tree-view .tree-root::after {
    display: none;
}

/* ===== Dropdown Click Toggle ===== */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid #eee;
    pointer-events: none;
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* ===== Responsive ===== */
