/* CSS Variables & Reset */
:root {
    --primary-color: #113e2d;
    /* Deep Green */
    --primary-dark: #0d2e21;
    --accent-color: #FDB913;
    /* Golden Yellow */
    --accent-light: #ffcd4d;

    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-light: #f5f5f5;

    --bg-light: #FDFBF7;
    /* Warmer Cream */
    --bg-white: #ffffff;
    --bg-green-light: #E8EDE9;
    /* Subtle green tint */

    --font-main: 'Poppins', sans-serif;

    --transition-speed: 0.4s;
    --spacing-section: 120px;
    /* Increased spacing */

    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: auto;
    /* Let GSAP handle scrolling or native */
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.mt-2 {
    margin-top: 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.25;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: -0.5px;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.5rem;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all var(--transition-speed) ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 185, 19, 0.3);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    background: transparent;
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-text {
    background: none;
    color: var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-radius: 0;
    padding: 0 0 2px 0;
}

.btn-text:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: #fff;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Lighter shadow */
}

/* Change logo based on scaffold happens in HTML, but here we handle Nav Link colors */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 48px;
    transition: all 0.3s;
}

/* Mobile logo handling */
@media (max-width: 768px) {
    .brand-logo img.logo-desktop {
        display: none;
    }
    
    .brand-logo img.logo-mobile {
        display: block !important;
        height: 40px;
    }
}

.navbar.scrolled .brand-logo img.logo-desktop {
    display: none;
    /* Logic handled via JS class toggle ideally, but simple CSS swap: */
}

/* We will handle logo swap in JS for cleaner control */

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    opacity: 0.9;
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

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

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--accent-color);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    /* For parallax */
    z-index: -2;
}

.hero-bg-img,
.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient from Deep Green to Transparent */
    background: linear-gradient(90deg, rgba(17, 62, 45, 0.95) 0%, rgba(17, 62, 45, 0.85) 45%, rgba(17, 62, 45, 0.2) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1280px;
    padding-top: 80px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    opacity: 0.9;
    color: #eee;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trust-row {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    max-width: 700px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ddd;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-icon-img {
    width: 24px;
    height: 24px;
    display: block;
}

/* Sections Global */
.section {
    padding: var(--spacing-section) 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.img-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.stats-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.stat-item span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
    /* Force alignment at top */
}

.value-card {
    background: var(--bg-green-light);
    padding: 2rem 1.5rem;
    /* Increased padding */
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
    /* Ensure full height */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center content horizontally */
    justify-content: flex-start;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    height: 40px;
    /* Fix container height */
    align-items: center;
}

.value-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    min-height: 1.4em;
}

/* Min height for alignment */
.value-card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.testimonial-mini {
    margin-top: 3rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    padding: 2rem;
    background: var(--bg-green-light);
    /* Solid background or gradient */
    border-radius: 8px;
    /* Full radius */
    text-align: center;
    /* Center alignment */
    border-left: none;
    /* Remove left border */
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-mini::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    font-family: serif;
}

/* ============================================
   WHY CHOOSE US SECTION - NEW DESIGN
   ============================================ */
.why-choose-section {
    padding: var(--spacing-section) 0 60px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 62, 45, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.why-choose-content {
    padding-right: 2rem;
}

.why-choose-visual {
    padding-top: 3rem;
}

.why-choose-content .section-title {
    margin-bottom: 2rem;
}

.why-choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.why-feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(17, 62, 45, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.why-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(17, 62, 45, 0.12);
    border-color: var(--accent-color);
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.why-feature-card:hover .why-feature-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e5a711 100%);
    color: var(--primary-dark);
    transform: scale(1.05) rotate(-5deg);
}

.why-feature-text h4 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.why-feature-text p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.5;
    margin: 0;
}

/* Why Choose Us - Image Carousel */
.why-choose-visual {
    position: relative;
}

.why-carousel-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(17, 62, 45, 0.15);
}

.why-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.why-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.why-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.why-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.why-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.why-dot.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.2);
}

/* Why Choose Us Responsive */
@media (max-width: 1024px) {
    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-content {
        padding-right: 0;
        text-align: center;
    }

    .why-choose-features {
        max-width: 600px;
        margin: 0 auto;
    }

    .why-feature-card {
        text-align: left;
    }

    .why-carousel {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0 40px 0;
    }

    .why-choose-wrapper {
        gap: 2rem;
    }

    .why-choose-visual {
        padding-top: 0;
    }

    .why-choose-content .section-title {
        font-size: 2rem;
    }

    .why-choose-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .why-feature-card {
        padding: 1rem;
        gap: 0.6rem;
    }

    .why-feature-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 10px;
    }

    .why-feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .why-feature-text h4 {
        font-size: 0.85rem;
    }

    .why-feature-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .why-carousel {
        height: 320px;
    }

    .why-carousel-container {
        border-radius: 16px;
    }

    .why-carousel-dots {
        bottom: 15px;
    }

    .why-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .why-choose-features {
        grid-template-columns: 1fr;
    }

    .why-feature-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 0.85rem;
    }
}

/* ============================================
   FEATURES GRID (Legacy)
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 62, 45, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(17, 62, 45, 0.12);
    border-color: transparent;
}

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

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(17, 62, 45, 0.25);
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) rotate(-5deg);
    background: linear-gradient(135deg, var(--accent-color) 0%, #e5a711 100%);
    color: var(--primary-dark);
}

.feature-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-card:hover .feature-glow {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.3; }
}

/* Product Showcase in Why Choose Us */
.product-showcase {
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.showcase-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    white-space: nowrap;
}

.showcase-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.showcase-gallery {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 2rem;
    align-items: center;
}

.showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(17, 62, 45, 0.15);
}

.showcase-item-featured {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(17, 62, 45, 0.18);
    z-index: 2;
}

.showcase-item-featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.showcase-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.showcase-item-featured .showcase-img-wrapper {
    height: 320px;
}

.showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover .showcase-img-wrapper img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(17, 62, 45, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-tag {
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-item-featured .showcase-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 60%, rgba(17, 62, 45, 0.9) 100%);
}

.showcase-info {
    padding: 1.5rem;
    text-align: center;
    background: #fff;
}

.showcase-info h5 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.showcase-info p {
    font-size: 0.85rem;
    color: var(--text-body);
    margin: 0;
}

/* Showcase Responsive */
@media (max-width: 1024px) {
    .showcase-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .showcase-item-featured {
        transform: scale(1);
    }

    .showcase-item-featured:hover {
        transform: translateY(-10px);
    }

    .showcase-img-wrapper,
    .showcase-item-featured .showcase-img-wrapper {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        margin-top: 3.5rem;
    }

    .showcase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .showcase-line {
        width: 100px;
        height: 2px;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .showcase-item {
        border-radius: 16px;
    }

    .showcase-img-wrapper,
    .showcase-item-featured .showcase-img-wrapper {
        height: 240px;
    }

    .showcase-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 60%, rgba(17, 62, 45, 0.85) 100%);
    }

    .showcase-info {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .showcase-img-wrapper,
    .showcase-item-featured .showcase-img-wrapper {
        height: 200px;
    }

    .showcase-info h5 {
        font-size: 1.05rem;
    }
}

.feature-card h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FOUNDER'S STORY SECTION
   ============================================ */
.founders-section {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.founders-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");
    pointer-events: none;
}

.founders-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.founders-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image-col {
    display: flex;
    justify-content: center;
}

.founder-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.founder-img-wrapper img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.founder-img-wrapper:hover img {
    transform: scale(1.02) translateY(-5px);
}

.founder-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--accent-color);
    border-radius: 20px;
    z-index: 1;
    transition: all 0.5s ease;
}

.founder-img-wrapper:hover .founder-frame {
    top: -20px;
    left: -20px;
}

.founder-accent {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e5a711 100%);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.8;
}

.founder-content-col {
    color: #fff;
}

.founder-content-col .eyebrow {
    color: var(--accent-color);
}

.founder-content-col .section-title {
    color: #fff;
    margin-bottom: 2rem;
}

.founder-message {
    position: relative;
    padding-left: 2rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--accent-color);
    opacity: 0.3;
}

.founder-message p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.founder-message .message-lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.7;
}

.founder-message .message-highlight {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 500;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 0;
}

.founder-signature {
    margin-top: 2.5rem;
    padding-top: 2rem;
    position: relative;
}

.signature-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin-bottom: 1rem;
}

.founder-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.founder-title {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW SECTIONS
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-img-wrapper {
        max-width: 350px;
    }

    .founder-content-col .section-title {
        text-align: center;
    }

    .founder-content-col .eyebrow {
        text-align: center;
    }

    .founder-message {
        padding-left: 0;
        text-align: center;
    }

    .quote-icon {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        margin: 0 auto 1rem;
    }

    .founder-signature {
        text-align: center;
    }

    .signature-line {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-card h4 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .founders-section {
        padding: 80px 0;
    }

    .founders-grid {
        gap: 2.5rem;
    }

    .founder-img-wrapper {
        max-width: 300px;
    }

    .founder-frame {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .founder-accent {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }

    .founder-message p {
        font-size: 1rem;
    }

    .founder-message .message-lead {
        font-size: 1.1rem;
    }

    .founder-message .message-highlight {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .quote-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .founder-img-wrapper {
        max-width: 260px;
    }

    .founder-content-col .section-title {
        font-size: 1.75rem;
    }

    .founder-message p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .founder-message .message-lead {
        font-size: 1rem;
    }
}

/* Process Section - Completely Redesigned */
.process-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 100px 0 120px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.process-step {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(17, 62, 45, 0.15);
}

.process-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.process-step:hover .process-img {
    transform: scale(1.08);
}

.step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(17, 62, 45, 0.3);
}

.process-step:hover .step-number {
    background: var(--accent-color);
    color: var(--primary-color);
}

.process-content {
    padding: 1.8rem 1.5rem 2rem;
}

.process-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.process-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Connector line for visual flow */
.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -1.25rem;
    width: 2.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.process-step:nth-child(3n)::after,
.process-step:last-child::after {
    display: none;
}

/* About Section Grid Fix */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

/* Products Section */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 4rem;
}

.filter-btn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    color: #888;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 20px;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--primary-color);
    background: var(--bg-green-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.4s;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

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

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

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

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 2rem;
}

.product-desc {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.specs-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #eee;
    padding-bottom: 0.5rem;
}

.card-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}



/* Distribution */
.distribution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.channel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.channel-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.channel-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.channel-card p {
    font-size: 0.85rem;
    margin: 0;
}

.dist-map-wrapper {
    background: #fcfcfc;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

/* FAQ & Certs */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.cert-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cert-badge {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.help-box {
    margin-top: 3rem;
    background: var(--primary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 12px;
}

.help-box h4 {
    color: #fff;
}

.link-btn {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.accordion details {
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.accordion summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary-color);
    list-style: none;
    /* Hide default */
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.ans {
    margin-top: 0.8rem;
    color: #666;
    font-size: 0.95rem;
}

/* Footer (Contact) */
.site-footer {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-desc {
    opacity: 0.7;
    margin-bottom: 2rem;
    max-width: 280px;
    line-height: 1.7;
}

.tagline {
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-details-col {
    padding-left: 1rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a,
.footer-links span {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--primary-dark);
    background: var(--accent-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    /* Placeholder for icon font */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-group {
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form .btn {
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid,
    .distribution-layout,
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Process section responsive */
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-step::after {
        display: none;
    }

    .process-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* Process section mobile */
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .process-image-wrapper {
        width: 140px;
        min-width: 140px;
        height: auto;
        min-height: 160px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        top: 10px;
        left: 10px;
    }

    .process-content {
        padding: 1.2rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .process-content h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .process-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-desc {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .contact-details-col {
        padding-left: 0;
    }

    .contact-info-list li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .contact-form {
        max-width: 400px;
        margin: 0 auto;
    }

    /* Navbar styling adjustments for Mobile */
    .menu-toggle {
        display: block;
        border: none;
        background: none;
        cursor: pointer;
        z-index: 1001;
    }

    .bar {
        background: #fff;
        height: 3px;
        width: 25px;
        margin: 5px auto;
        display: block;
        transition: background 0.3s ease;
    }
    
    .navbar.scrolled .bar {
        background: var(--primary-color);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 6rem 2rem;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.4s;
    }

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

    .nav-link {
        color: var(--primary-color);
        font-size: 1.2rem;
    }

    .packaging-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Packaging Gallery Section */
.packaging-section {
    padding: var(--spacing-section) 0;
}

.packaging-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.package-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    position: relative;
}

.package-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 1rem;
    background: #fafafa;
}

.package-label {
    display: block;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: #fff;
    border-top: 1px solid #eee;
}

/* Registration Numbers Section */
.registration-numbers {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.registration-numbers h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reg-list {
    list-style: none;
}

.reg-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed #ddd;
}

.reg-list li:last-child {
    border-bottom: none;
}

.reg-list strong {
    color: var(--primary-color);
    min-width: 60px;
    display: inline-block;
}

/* Contact Details in Footer */
.contact-details-col h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-info-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent-color);
}

.contact-info-list li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.contact-info-list li a:hover {
    color: var(--accent-color);
}

/* Social Links with SVG Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a svg {
    color: var(--primary-dark);
}

.social-links a:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .packaging-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .packaging-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .package-item img {
        height: 180px;
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================ */

/* Tablet adjustments */
@media (max-width: 1024px) {
    :root {
        --spacing-section: 80px;
    }
    
    .container {
        width: 92%;
        padding: 0 15px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .eyebrow {
        font-size: 0.8rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(17, 62, 45, 0.9) 0%, rgba(17, 62, 45, 0.85) 60%, rgba(17, 62, 45, 0.7) 100%);
    }
    
    .hero-content {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .trust-row {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
    }
    
    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image-col {
        order: -1;
    }
    
    .about-image-col .img-box {
        max-width: 100%;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .value-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-mini {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-mini p {
        font-size: 0.95rem;
    }
    
    /* Products Section Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-img {
        height: 220px;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
    }
    
    .card-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .card-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Distribution Section Mobile */
    .distribution-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .channel-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .channel-card {
        padding: 1.2rem;
    }
    
    .dist-map-wrapper {
        padding: 1rem;
    }
    
    /* FAQ Section Mobile */
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .certifications-col {
        text-align: center;
    }
    
    .cert-badges {
        justify-content: center;
    }
    
    .registration-numbers {
        text-align: left;
    }
    
    .accordion summary {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-col.brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .footer-desc {
        max-width: 100%;
        text-align: center;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .contact-form .btn {
        width: 100%;
    }
    
    .contact-details-col {
        padding-left: 0;
    }
    
    .contact-info-list {
        text-align: left;
    }
    
    .contact-info-list li {
        justify-content: flex-start;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Small Mobile adjustments */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.85rem;
    }
    
    .btn-sm {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .stats-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1 1 calc(33% - 1rem);
        min-width: 80px;
    }
    
    .stat-item strong {
        font-size: 1.2rem;
    }
    
    .stat-item span {
        font-size: 0.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-image-wrapper {
        width: 100%;
        height: 180px;
        min-width: unset;
    }
    
    .process-content {
        padding: 1.2rem;
    }
    
    .product-img {
        height: 200px;
    }
    
    .channel-card h4 {
        font-size: 1rem;
    }
    
    .channel-card p {
        font-size: 0.8rem;
    }
    
    .cert-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cert-badge {
        width: fit-content;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
}

/* Video specific mobile fixes */
@media (max-width: 768px) {
    .hero-bg-video {
        /* Ensure video covers area properly on mobile */
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Remove any play button overlays */
    .hero-bg-video::-webkit-media-controls-play-button,
    .hero-bg-video::-webkit-media-controls-start-playback-button {
        display: none !important;
        -webkit-appearance: none;
    }
    
    .hero-bg-video::-webkit-media-controls {
        display: none !important;
    }
}