/* Custom CSS for Swasthick Packaging Products */

/* Design Tokens & Variables */
:root {
    --primary: #0f5132;
    --primary-light: #198754;
    --primary-rgb: 15, 81, 50;
    --secondary: #b8860b;
    --secondary-light: #daa520;
    --secondary-rgb: 184, 134, 11;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --light-alt: #f1f5f9;
    --light-gray: #e2e8f0;
    --medium-gray: #64748b;
    --white: #ffffff;
    --accent-blue: #0284c7;
    --accent-blue-light: #bae6fd;
    --text-color: #334155;
    
    /* Layout & Shadow constants */
    --max-width: 1200px;
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 10px 20px -8px rgba(15, 23, 42, 0.08);
    --shadow-glow-green: 0 0 20px rgba(15, 81, 50, 0.15);
    --shadow-glow-gold: 0 0 20px rgba(184, 134, 11, 0.15);

    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.top-info-item a {
    color: inherit;
}

.top-info-item a:hover {
    color: var(--white);
}

.contact-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.contact-link:hover {
    color: var(--secondary-light);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* CSS Utilities & Typo */
.font-outfit { font-family: 'Outfit', sans-serif; }
.font-bold { font-weight: 700; }
.text-white { color: var(--white) !important; }
.text-green { color: var(--primary) !important; }
.text-gold { color: var(--secondary) !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    background-color: rgba(15, 81, 50, 0.08);
    border-radius: var(--border-radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-subtitle-small {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.text-gradient-kraft {
    background: linear-gradient(135deg, var(--secondary) 0%, #daa520 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(15, 81, 50, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 81, 50, 0.3);
}

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

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

.btn-light {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background-color: var(--light-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block {
    display: flex;
    width: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

/* Info Bar Above Header */
.top-bar {
    background-color: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--dark-light);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--light-gray);
}

.badge-legacy {
    background-color: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.75rem;
}

/* Header & Nav */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--light-gray);
    padding: 0.4rem 0;
    transition: var(--transition-base);
}

.main-header.scrolled {
    padding: 0.2rem 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.95);
}

.main-header .logo img {
    height: 62px;
    max-width: min(260px, 48vw);
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-base);
}

.main-header.scrolled .logo img {
    height: 52px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

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

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--secondary);
    text-transform: uppercase;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-light);
    position: relative;
    padding: 0.25rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-base);
}

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

.btn-nav {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 8rem 0;
    background-image: url('hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.7);
    z-index: 1;
}

.hero-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.hero-section .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    color: var(--white);
}

.hero-glow-1, .hero-glow-2 {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.badge-accent-wrapper {
    margin-bottom: 1.5rem;
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-full);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--white);
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-self: center;
    margin-top: 1rem;
}

.hero-metrics-strip {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    padding: 2rem 0;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
}

/* Packaging Mockup Visual */
.hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.packaging-scene {
    position: relative;
    width: 320px;
    height: 320px;
}

.paper-bag-mock {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 180px;
    height: 240px;
    background: linear-gradient(135deg, #d2b48c 0%, #b8860b 100%);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.bag-handle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 35px;
    border: 5px solid #a0782a;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
}

.bag-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bag-logo {
    background-color: var(--primary);
    padding: 0.6rem;
    border-radius: var(--border-radius-full);
    margin-bottom: 0.8rem;
    box-shadow: var(--shadow-sm);
}

.bag-text {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.bag-eco-tag {
    font-size: 0.7rem;
    color: #f1f5f9;
    font-weight: 600;
    background-color: rgba(15, 81, 50, 0.4);
    padding: 0.1rem 0.5rem;
    border-radius: var(--border-radius-full);
}

.plastic-roll-mock {
    position: absolute;
    bottom: 50px;
    right: 10px;
    width: 140px;
    height: 180px;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.4) 0%, rgba(2, 132, 199, 0.15) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(2, 132, 199, 0.5);
    border-radius: var(--border-radius-full);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.roll-core {
    position: absolute;
    top: 5px;
    width: 50px;
    height: 10px;
    background-color: #94a3b8;
    border-radius: var(--border-radius-full);
}

.roll-plastic {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.roll-text {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.roll-badge {
    font-size: 0.65rem;
    color: var(--accent-blue);
    font-weight: 700;
    background-color: var(--accent-blue-light);
    padding: 0.1rem 0.4rem;
    border-radius: var(--border-radius-full);
}

.visual-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: var(--shadow-lg);
    z-index: 4;
}

.visual-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.visual-card p {
    font-size: 0.7rem;
    color: var(--medium-gray);
}

.card-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-circle.green { background-color: rgba(15, 81, 50, 0.1); }
.card-icon-circle.gold { background-color: rgba(184, 134, 11, 0.1); }

.floating-card-1 {
    top: 50px;
    left: -20px;
    animation: float 5s ease-in-out infinite alternate;
}

.floating-card-2 {
    bottom: 10px;
    right: -20px;
    animation: float 5s ease-in-out infinite alternate-reverse;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Logos Section */
.logos-section {
    padding: 3rem 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    background-color: var(--white);
}

.logos-title {
    font-size: 0.85rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-items: center;
    gap: 2rem;
}

.logos-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logos-marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.logos-marquee-track .logo-item {
    flex-shrink: 0;
    white-space: nowrap;
}

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

@media (min-width: 576px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .logos-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.logo-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #cbd5e1;
    letter-spacing: 0.1em;
    user-select: none;
    transition: var(--transition-base);
}

.logo-item:hover {
    color: var(--medium-gray);
}

/* Why Choose Us Section */
.why-section {
    padding: 6rem 0;
    background-image: url('why_choose_us_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.7); /* dark overlay for high contrast text readability */
    z-index: 1;
}

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

.why-section .section-title {
    color: var(--white);
}

.why-section .section-subtitle {
    color: #cbd5e1; /* slate-300 */
}

.why-section .section-tag {
    color: var(--secondary);
    background-color: rgba(184, 134, 11, 0.15);
}

/* Glassmorphic cards for Why Choose Us on dark background */
.why-section .why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.why-section .why-card h3 {
    color: var(--white);
}

.why-section .why-card p {
    color: #94a3b8; /* slate-400 */
}

.why-section .why-icon {
    background-color: rgba(184, 134, 11, 0.12);
    color: var(--secondary);
}

.why-section .why-card:hover {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.why-section .why-card:hover .why-icon {
    background-color: var(--secondary);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 576px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    background-color: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-5px);
    background-color: var(--white);
    border-color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background-color: rgba(15, 81, 50, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.why-card:hover .why-icon {
    background-color: var(--primary);
    color: var(--white);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Product Showcase */
.products-section {
    padding: 6rem 0;
    background-color: var(--light-alt);
}

.tab-filters {
    display: inline-flex;
    background-color: var(--white);
    padding: 0.4rem;
    border-radius: var(--border-radius-full);
    border: 1px solid var(--light-gray);
    margin-bottom: 3rem;
}

.tab-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--medium-gray);
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius-full);
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.tab-btn:hover {
    color: var(--dark);
}

.tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--dark);
    color: var(--white);
    padding: 0.25rem 0.6rem;
    border-radius: var(--border-radius-full);
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-badge.green {
    background-color: var(--primary);
}

.product-badge.gold {
    background-color: var(--secondary);
    color: var(--white);
}

.product-badge.blue {
    background-color: var(--accent-blue);
}

.product-img-placeholder {
    height: 160px;
    background: linear-gradient(135deg, var(--light) 0%, var(--light-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.product-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.product-card-body .btn {
    width: 100%;
}

.products-showcase-wrapper {
    margin-top: 3.5rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 3.5rem;
}

.tab-filters-wrapper {
    margin-bottom: 2.5rem;
}

.catalog-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 576px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    background: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition-base);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(15, 81, 50, 0.2);
    background: var(--white);
}

.process-num {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.process-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: rgba(15, 81, 50, 0.08);
    color: var(--primary);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.process-step:hover .process-icon {
    background: var(--primary);
    color: var(--white);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.55;
}

/* Reviews Section */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-alt) 0%, var(--white) 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

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

.review-stars {
    display: flex;
    gap: 0.15rem;
}

.review-card blockquote {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.65;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

/* Map embed */
.map-embed {
    margin-top: 2rem;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 10;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, #082d1c 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (min-width: 768px) {
    .cta-card {
        padding: 4rem;
    }
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
}

.cta-card-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-card-content h2 {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .cta-card-content h2 {
        font-size: 2.75rem;
    }
}

.cta-card-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* About Us Section */
.about-section {
    padding: 6rem 0 3rem;
    background-image: url('why_choose_us_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-top: none;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 40, 0.7); /* dark overlay to ensure readability */
    z-index: 1;
}

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

.about-lower-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-section .section-tag,
.about-section .section-title,
.about-section .story-block h3,
.about-section .story-block p,
.about-section .story-block strong,
.about-section .story-block em,
.about-section .mission-block h3,
.about-section .values-list li,
.about-section .values-list strong {
    color: var(--white);
}

.about-section .font-bold.text-green {
    color: #7ecfa0 !important;
}

.about-section .value-icon {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.12);
}

.about-section .qa-card.shadow-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: var(--white);
}

.about-section .qa-card.shadow-card h3,
.about-section .qa-card.shadow-card .legacy-concl {
    color: var(--white);
}

.about-section .legacy-pillars li {
    color: rgba(255, 255, 255, 0.85);
}

.about-section .qa-tag {
    color: var(--secondary);
    background-color: rgba(184, 134, 11, 0.15);
    border-color: rgba(184, 134, 11, 0.3);
}

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

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.story-block {
    margin-bottom: 2.5rem;
}

.story-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.story-block p {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.mission-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.values-list li {
    display: flex;
    gap: 1rem;
}

.value-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: var(--border-radius-full);
    background-color: rgba(15, 81, 50, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.values-list li div {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.values-list li div strong {
    color: var(--dark);
    display: block;
    margin-bottom: 0.15rem;
}

/* QA cards and Legacy details */
.about-qa {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qa-card {
    border-radius: var(--border-radius-md);
    padding: 2.5rem 2rem;
}

.qa-card.shadow-card {
    background-color: var(--light);
    border: 1px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.qa-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.05em;
    background-color: rgba(184, 134, 11, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.qa-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.legacy-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.legacy-pillars li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
}

.legacy-pillars li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.legacy-concl {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--medium-gray);
    border-left: 2px solid var(--secondary);
    padding-left: 0.75rem;
}

.qa-card.green-card {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.qa-card.green-card h3 {
    color: var(--white);
}

.qa-grid-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.qa-inner-item {
    display: flex;
    gap: 1rem;
}

.qa-inner-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-inner-item h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.qa-inner-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Serving Chennai Section */
.about-regions {
    margin-bottom: 4rem;
}

.region-box {
    background: linear-gradient(135deg, var(--light) 0%, var(--light-alt) 100%);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 3rem 2rem;
}

.region-box h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.region-box p {
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.regions-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.region-chip {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    color: var(--dark);
}

/* Wholesale advantages */
.wholesale-advantages {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 576px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.adv-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: var(--transition-base);
}

.adv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 134, 11, 0.3);
}

.adv-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: rgba(184, 134, 11, 0.25);
    line-height: 1;
    margin-bottom: 1rem;
}

.adv-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.adv-card p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
}

/* Extra Info grid */
.extra-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .extra-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.info-panel {
    background-color: var(--light);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    border-left: 4px solid var(--primary);
}

.info-panel-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.info-panel h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.info-panel p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.5;
}



/* FAQ Accordion Styling */
.faqs-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.faq-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.faq-search-wrapper input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background-color: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    transition: var(--transition-base);
}

.faq-search-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(15, 81, 50, 0.1);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-gray);
    pointer-events: none;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--light);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item.active {
    border-color: rgba(15, 81, 50, 0.2);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    outline: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--medium-gray);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Contact / Quick Quote Form Styling */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0d1e15 0%, #030805 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(184, 134, 11, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: 1;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.contact-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-details-item {
    display: flex;
    gap: 1.25rem;
}

.info-details-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-details-item h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.info-details-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.badge-contact-legacy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.badge-contact-legacy p {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Quote Form Card */
.quote-form-container {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.quote-form {
    padding: 2.5rem 2rem;
    transition: var(--transition-base);
}

@media (min-width: 576px) {
    .quote-form {
        padding: 3rem;
    }
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.form-sub {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 576px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    background-color: var(--light);
    color: var(--dark);
    transition: var(--transition-base);
}

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

/* Range Slider */
.slider-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.slider-label-row label {
    margin-bottom: 0;
}

.moq-hint {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    background-color: rgba(184, 134, 11, 0.08);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: var(--border-radius-full);
    background: #e2e8f0;
    outline: none;
    padding: 0 !important;
    border: none !important;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform 0.1s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: transform 0.1s ease;
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--medium-gray);
    margin-top: 0.5rem;
    padding: 0 0.25rem;
}

/* Quotation Insight box */
.calculator-box {
    background-color: var(--light-alt);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.calc-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.calc-body p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0.4rem;
}

.calc-body p strong {
    font-size: 0.9rem;
}

.calc-notice {
    font-size: 0.75rem !important;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Success Card Overlay */
.form-success-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: var(--transition-slow);
}

.form-success-card.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-full);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(15, 81, 50, 0.3);
    margin-bottom: 2rem;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 10px 20px rgba(15, 81, 50, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 10px 25px rgba(15, 81, 50, 0.5); }
    100% { transform: scale(1); box-shadow: 0 10px 20px rgba(15, 81, 50, 0.3); }
}

.form-success-card h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-success-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.form-success-card p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    max-width: 420px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Footer Styling */
.main-footer {
    background-color: var(--dark);
    color: #94a3b8;
    padding: 5rem 0 0 0;
    border-top: 1px solid var(--dark-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    }
}

.footer-col-about .footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.footer-logo img {
    height: 70px;
    max-width: min(280px, 72vw);
    width: auto;
    display: block;
    transition: var(--transition-base);
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.legacy-stamp {
    display: inline-block;
    background-color: var(--dark-light);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border-left: 3px solid var(--secondary);
}

.footer-grid h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-grid h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    font-size: 0.9rem;
    color: #94a3b8;
}

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

.footer-col-info p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-col-info strong {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #020617;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        text-align: left;
    }
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: var(--secondary);
}

.back-to-top:hover {
    color: var(--secondary-light);
}

/* Navigation Drawer Mobile View */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: flex;
    }

    body.nav-open {
        overflow: hidden;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        padding: 5rem 2rem 2rem 2rem;
        transition: var(--transition-slow);
        z-index: 99;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-nav {
        width: 100%;
    }
    
    /* Toggle animations */
    .mobile-nav-toggle.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-actions {
        position: static;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .hero-metrics {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .metric-item {
        min-width: 90px;
    }

    .top-bar-content {
        justify-content: center;
        text-align: center;
    }

    .top-info-item.text-right {
        width: 100%;
        justify-content: center;
    }

    .category-split-card {
        padding: 3rem 2rem;
        min-height: auto;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3), 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-base);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4), 0 16px 32px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 10px rgba(37, 211, 102, 0.3);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 4px 10px rgba(37, 211, 102, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 10px rgba(37, 211, 102, 0.3);
    }
}

/* Adjust floating button position for smaller mobile screens so it doesn't cover content */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

/* Mobile UX: prevent floating WhatsApp from covering content */
@media (max-width: 576px) {
    body {
        padding-bottom: 90px;
    }
}

/* Mobile UX: improve tap targets and font sizing for small screens */
@media (max-width: 576px) {
    .btn {
        min-height: 44px;
        padding: 0.8rem 1.2rem;
    }

    /* Make primary controls feel easier to tap */
    .mobile-nav-toggle {
        width: 28px;
        height: 20px;
    }
    .mobile-nav-toggle span {
        height: 2.5px;
    }

    .faq-question {
        padding: 1.1rem 1.25rem;
        font-size: 1.02rem;
    }

    .faq-search-wrapper {
        margin-left: 0;
        margin-right: 0;
        padding: 0 0.25rem;
    }

    .faq-search-wrapper input {
        font-size: 1rem;
    }

    /* Form ergonomics */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem; /* reduce iOS/Android auto-zoom */
        padding: 0.85rem 1rem;
    }

    .form-grid {
        gap: 1rem;
    }

    .quote-form {
        padding: 2rem 1.2rem;
    }

    .calculator-box {
        padding: 1.1rem;
    }

    textarea {
        min-height: 110px;
    }

    /* Tabs: avoid tiny tap areas */
    .tab-btn {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }

    .tab-filters {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.25rem;
    }
}

/* Mobile UX: tighten header/logo a bit */
@media (max-width: 480px) {
    .main-header {
        padding: 0.25rem 0;
    }
    .main-header .logo img {
        height: 42px;
        max-width: 190px;
    }
}

/* Mobile UX: reduce animation noise */
@media (max-width: 576px) {
    .catalog-marquee-track {
        will-change: transform;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-marquee-track {
        animation: none !important;
    }
    .whatsapp-float {
        animation: none !important;
    }
}


/* Product Categories Split Section (Reference Design) */
.product-categories-split {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--light-gray);
}

@media (min-width: 992px) {
    .product-categories-split {
        grid-template-columns: 1fr 1fr;
    }
}

.category-split-card {
    position: relative;
    padding: 4.5rem 3.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 480px;
    transition: var(--transition-base);
}

.paper-split-card {
    background-color: var(--white);
    color: var(--dark);
    border-bottom: 1px solid var(--light-gray);
}

@media (min-width: 992px) {
    .paper-split-card {
        border-bottom: none;
        border-right: 1px solid var(--light-gray);
    }
}

.plastic-split-card {
    background-color: #0b1220; /* Deep navy matching dark theme */
    color: var(--white);
}

/* Watermark SVG styling */
.category-split-watermark {
    position: absolute;
    right: -5%;
    bottom: -5%;
    width: 50%;
    height: 70%;
    pointer-events: none;
    z-index: 1;
    transition: var(--transition-slow);
}

.paper-split-card .category-split-watermark {
    color: rgba(15, 81, 50, 0.04); /* Faint Forest Green */
}

.plastic-split-card .category-split-watermark {
    color: rgba(255, 255, 255, 0.03); /* Faint White/Navy */
}

.category-split-card:hover .category-split-watermark {
    transform: scale(1.1) translate(-10px, -10px);
}

.category-split-content {
    position: relative;
    z-index: 2;
    max-width: 440px;
    text-align: left;
}

.category-split-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--secondary); /* Kraft Gold */
    margin-bottom: 1rem;
}

.category-split-title {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.paper-split-card .category-split-title {
    color: var(--primary); /* Deep Green */
}

.plastic-split-card .category-split-title {
    color: var(--white);
}

.category-split-list {
    margin-bottom: 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.category-split-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1.05rem;
    font-weight: 500;
}

.paper-split-card .category-split-list li {
    color: #475569;
}

.plastic-split-card .category-split-list li {
    color: #cbd5e1;
}

/* Checkmarks */
.category-split-list .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
    flex-shrink: 0;
}

.category-split-list .check-icon svg {
    width: 12px;
    height: 12px;
}

/* Split Buttons */
.btn-split-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    color: var(--white);
    border: none;
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-split-dark:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 81, 50, 0.25);
    color: var(--white);
}

.btn-split-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: #0f172a;
    border: none;
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-split-light:hover {
    background-color: var(--secondary-light);
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.25);
}

.faq-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

/* FAQ page overrides */
.faq-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.faq-hero-title {
    margin-bottom: 0.5rem;
    font-size: 2.75rem;
}

.faq-hero-subtitle {
    margin-bottom: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-section {
    background-color: var(--light-alt);
    padding: 4rem 0 6rem;
}

.faq-search-header {
    margin-bottom: 2.5rem;
}

.faq-search-wrapper input[type="search"] {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-cta {
    text-align: center;
    margin-top: 3.5rem;
}

.faq-cta p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

/* Catalog Grid (formerly Marquee) */
.catalog-marquee-outer {
    overflow: visible;
    width: 100%;
    padding: 15px 0;
}

.catalog-marquee-track {
    display: block;
    width: 100%;
    animation: none;
}

.catalog-marquee-track .products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding-right: 0;
}

.catalog-marquee-track .product-card {
    flex: none;
    width: 100%;
    max-width: none;
    margin: 0;
}

@media (max-width: 1200px) {
    .catalog-marquee-track .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .catalog-marquee-track .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .catalog-marquee-track .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .catalog-marquee-track .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    transition: var(--transition-base);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 40, 0.8) 0%, rgba(10, 20, 40, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-title);
}

.gallery-overlay p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Hover States */
.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

