/* 
   Master Stylesheet for Vaajsan Industries Copy Website
   Theme: Modern Industrial Premium - Slate Blue, Light Grey, and Amber Orange (Light Theme)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-dark: #1F2937;             /* Charcoal dark backgrounds */
    --bg-body: #F8FAFC;             /* Off-white page backgrounds */
    --bg-card: #FFFFFF;             /* Pure white card backgrounds */
    --bg-card-hover: #FFFFFF;
    
    --primary: #D5F2C9;             /* Soft Light Green (from image) */
    --primary-dark: #16A34A;             /* Primary Green */
    --primary-hover: #C2E7B5;
    --primary-glow: rgba(213, 242, 201, 0.45);
    --secondary: #B5179E;           /* Purple Accent */
    --success: #16A34A;             /* Green success indications */
    --text-main: #222222;           /* Text Dark */
    --text-muted: #52525B;          /* Zinc-600 body text for high readability */
    --text-light: #ffffff;          /* White text */
    --text-light-muted: #94A3B8;    /* Slate-400 text on dark sections */
    --text-dark: #111827;
    --border-color: rgba(31, 41, 55, 0.08); /* Soft borders */
    --border-light: rgba(31, 41, 55, 0.06);
    --glass: rgba(255, 255, 255, 0.95);    /* Header Light Glass overlay */
    --glass-blur: blur(12px);
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(31, 34, 48, 0.03);
    --shadow-md: 0 8px 30px rgba(31, 34, 48, 0.05);
    --shadow-lg: 0 20px 50px rgba(31, 34, 48, 0.08);
    
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

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

body {
    background-color: var(--bg-body);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

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

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

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #E5E7EB;
}
::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Utilities & Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.container {
    width: 85%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 100px 0;
}

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

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

.section-subtitle {
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border-color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(31, 34, 48, 0.05);
    transform: translateY(-2px);
}

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

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

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

/* Header & Navigation */
.topbar {
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: var(--text-light-muted);
    padding: 10px 0;
}

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

.topbar-left span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.topbar-left i {
    color: var(--primary-dark);
}

.topbar-right a {
    margin-left: 15px;
    font-size: 14px;
    color: var(--text-light-muted);
}

.topbar-right a:hover {
    color: var(--primary-dark);
}

.header-main {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header-main.shrink {
    padding: 5px 0;
    box-shadow: var(--shadow-md);
}

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

.logo img {
    height: 95px;
    max-height: 95px;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 8px 0;
    color: var(--text-main);
    transition: var(--transition);
}

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

.nav-link:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

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

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Sidebar Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.35);
    color: #EF4444;
    transform: rotate(90deg);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: #CBD5E1;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.mobile-nav-link .nav-label-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-link .nav-label-wrap i {
    font-size: 15px;
    color: #94A3B8;
    transition: var(--transition);
}

.mobile-nav-link .arrow-icon {
    font-size: 11px;
    opacity: 0.5;
    transform: translateX(0);
    transition: var(--transition);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.3);
    color: #22C55E;
}

.mobile-nav-link:hover .nav-label-wrap i, .mobile-nav-link.active .nav-label-wrap i {
    color: #22C55E;
}

.mobile-nav-link:hover .arrow-icon, .mobile-nav-link.active .arrow-icon {
    opacity: 1;
    color: #22C55E;
    transform: translateX(3px);
}

.mobile-nav-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.mobile-contact-info {
    font-size: 12px;
    color: #94A3B8;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.mobile-contact-info i {
    color: #22C55E;
    font-size: 14px;
}

.mobile-socials {
    display: flex;
    gap: 12px;
}

.mobile-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.mobile-socials a:hover {
    background: #22C55E;
    border-color: #22C55E;
    color: #ffffff;
    transform: translateY(-3px);
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(31, 34, 48, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 620px;
    overflow: hidden;
}

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

.hero-slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    overflow: hidden;
}

.hero-slide.active {
    display: flex;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-slide.active .hero-slide-bg {
    animation: zoomBg 15s ease-out infinite alternate;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 34, 48, 0.75) 0%, rgba(31, 34, 48, 0.4) 100%);
    z-index: 3;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 10;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.hero-slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-subtitle {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-subtitle::before {
    content: '';
    width: 25px;
    height: 2px;
    background-color: var(--primary-dark);
    display: inline-block;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 22px;
    text-transform: capitalize;
    color: var(--text-light);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.35);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.65;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.hero-buttons .btn-secondary:hover {
    background-color: #ffffff;
    color: var(--bg-dark);
    border-color: #ffffff;
}

.hero-nav-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
    z-index: 12;
}

.hero-dot {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    width: 65px;
}

.hero-dot .dot-num {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.hero-dot .dot-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.hero-dot .dot-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    transition: width 0s linear;
}

.hero-dot.active .dot-num {
    color: var(--primary-dark);
}

.hero-dot.active .dot-bar::after {
    width: 100%;
    transition: width 6s linear;
}

@keyframes zoomBg {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

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

/* Feature Cards Section */
.features-section {
    position: relative;
    z-index: 20;
    margin-top: -60px;
    padding-bottom: 80px;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 35px 25px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(31, 34, 48, 0.015);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 143, 39, 0.35);
    box-shadow: 0 15px 35px rgba(31, 34, 48, 0.06);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: rgba(255, 143, 39, 0.06);
    border: 1px solid rgba(255, 143, 39, 0.12);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: scale(1.05);
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
}

/* About Intro Section */
.about-intro-img-wrap {
    position: relative;
}

.about-intro-img {
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    font-family: var(--font-heading);
    text-align: center;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.experience-years {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.experience-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-intro-text {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-check-list {
    margin-bottom: 35px;
}

.about-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-check-item i {
    color: var(--primary-dark);
}

/* Statistics Counters */
.stats-section {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
    color: var(--text-light);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.stat-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Products Grid */
.products-section {
    background-color: var(--bg-body);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.product-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(31, 41, 55, 0.04);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(31, 34, 48, 0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(31, 34, 48, 0.08);
    border-color: rgba(22, 163, 74, 0.25);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #E5E7EB;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 100%);
    transform: skewX(-25deg);
    transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    pointer-events: none;
}

.product-card:hover .product-img-wrap::after {
    left: 125%;
    opacity: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Clickable image wrapper */
.product-img-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Clickable product title */
.product-title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}
.product-title-link:hover {
    color: var(--primary-dark);
}

.product-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 15px;
}

.product-detail-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-detail-link i {
    color: var(--primary-dark);
    transition: var(--transition);
}

.product-card:hover .product-detail-link i {
    transform: translateX(5px);
}

/* Testimonials Layout */
.testimonials-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(31, 34, 48, 0.02);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(31, 34, 48, 0.06);
    border-color: rgba(22, 163, 74, 0.15);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 80px;
    color: rgba(22, 163, 74, 0.08);
    font-family: serif;
    z-index: -1;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(22, 163, 74, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    border-color: var(--primary-dark);
    transform: scale(1.05);
}

.testimonial-name {
    font-weight: 700;
    font-size: 15px;
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.cta-desc {
    color: var(--text-light-muted);
    font-size: 15px;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--border-light);
    padding: 80px 0 30px;
    font-size: 14px;
    color: var(--text-light-muted);
}

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

.footer-logo img {
    height: 95px;
    max-height: 95px;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: rotate(360deg);
}

.footer-title {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-dark);
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-light-muted);
}

.footer-menu a:hover {
    color: var(--primary-dark);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-contact i {
    color: var(--primary-dark);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

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

/* Page Banner */
.page-banner {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-dark);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-light);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 34, 48, 0.85);
    z-index: 1;
}

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

.page-banner-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-light);
}

.breadcrumbs {
    display: inline-flex;
    gap: 10px;
    font-size: 13px;
    color: var(--text-light-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs a {
    color: var(--text-light-muted);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.breadcrumbs span {
    color: var(--primary-dark);
}

/* About Page Styles */
.about-mission-section {
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.mission-card {
    padding: 40px;
    background-color: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-dark);
}

.mission-card i {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
}

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

/* Product Detail Page */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

.product-detail-img-wrap {
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    background-color: var(--bg-card);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: zoom-in;
    transition: var(--transition);
}

.product-detail-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-detail-img-wrap:hover img {
    transform: scale(1.06);
}

/* Glassmorphic Hover Overlay on Product Image */
.img-zoom-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    transition: all 0.35s ease;
    z-index: 2;
    pointer-events: none;
}

.product-detail-img-wrap:hover .img-zoom-overlay {
    opacity: 1;
}

.img-zoom-overlay i {
    font-size: 32px;
    transform: scale(0.8);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-detail-img-wrap:hover .img-zoom-overlay i {
    transform: scale(1);
}

.img-zoom-overlay span {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Upgraded Specifications Panel */
.product-detail-meta {
    margin-top: 30px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-md);
}

.product-detail-meta h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    transition: var(--transition);
    border-radius: 8px;
}

.meta-row:hover {
    background-color: rgba(22, 163, 74, 0.03);
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 14px;
}

.meta-val {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
}

/* Tab Container styles */
.detail-tab-container {
    margin-top: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-sm);
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid #f1f5f9;
    gap: 35px;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    padding: 14px 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

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

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

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px 3px 0 0;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background-color: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

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

.lightbox-content-wrap {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.lightbox-modal.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .lightbox-close {
        top: -60px;
        right: 10px;
    }
}

.tab-content {
    display: none;
    animation: fadeEffect 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

.tab-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Inquiry Form */
.inquiry-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.inquiry-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

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

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 13px 18px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #DEF7EC;
    border: 1px solid #BCF0DA;
    color: #03543F;
}

.alert-error {
    background-color: #FDE8E8;
    border: 1px solid #FBD5D5;
    color: #9B1C1C;
}

/* Contact Page */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-dark);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 143, 39, 0.1);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-text {
    color: var(--text-muted);
}

.map-container {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

/* Mobile Responsive Adjustments */
/* Viewport styles migrated to the end of file for consistency */

/* ==========================================================================
   Products Page — Layout & Sidebar (Desktop)
   ========================================================================== */

.products-section-bg { background-color: #f8fafc; }

.products-layout-wrapper {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 40px;
    align-items: start;
}

/* Desktop sidebar: sticky vertical column */
.products-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 90px;
}

/* --- Category Card --- */
.products-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(22,163,74,0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(31,41,55,0.04);
}

.products-sidebar-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 18px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}
.products-sidebar-title i {
    color: var(--primary-dark);
    font-size: 13px;
}

.products-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Button-based category links (no page reload) */
.products-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    background: transparent;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}
.products-cat-link:hover {
    background: rgba(22,163,74,0.06);
    border-color: rgba(22,163,74,0.15);
    color: var(--primary-dark);
}
.products-cat-link.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(22,163,74,0.3);
}

.cat-link-inner {
    display: flex;
    align-items: center;
    gap: 9px;
}
.cat-link-inner i { font-size: 12px; }

.cat-count {
    background: rgba(255,255,255,0.2);
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    min-width: 26px;
    text-align: center;
    transition: all 0.2s;
}
.products-cat-link:not(.active) .cat-count {
    background: rgba(22,163,74,0.08);
    color: var(--primary-dark);
}

/* --- PDF CTA Card --- */
.products-sidebar-cta {
    background: linear-gradient(135deg, var(--bg-dark), #111827);
    color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.products-sidebar-cta .cta-icon {
    position: absolute;
    right: -15px;
    bottom: -15px;
    font-size: 90px;
    color: rgba(255,255,255,0.03);
    transform: rotate(-15deg);
}
.sidebar-cta-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}
.products-sidebar-cta p {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 18px;
    line-height: 1.6;
}

/* --- Assistance Card --- */
.products-sidebar-assistance {
    background: #ffffff;
    border: 1px solid rgba(22,163,74,0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(31,41,55,0.04);
}
.products-assistance-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(22,163,74,0.07);
    border: 1px solid rgba(22,163,74,0.15);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 14px;
}
.sidebar-assist-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}
.sidebar-assist-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.sidebar-assist-email {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    word-break: break-all;
}
.sidebar-assist-email:hover { text-decoration: underline; }

/* ==========================================================================
   Products Main Column
   ========================================================================== */

/* Mobile pill strip (hidden on desktop) */
.mobile-cat-strip { display: none; }

/* Results header */
.products-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: #ffffff;
    border: 1px solid rgba(22,163,74,0.1);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(31,41,55,0.03);
}
.results-info {
    font-size: 14px;
    color: var(--text-muted);
}
.results-count {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-right: 2px;
}
.active-cat-badge {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.2);
    padding: 4px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Products grid — desktop 3 columns */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* --- Product Card Redesign --- */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(31,41,55,0.06);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 4px 16px rgba(31,34,48,0.04);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(31,34,48,0.1);
    border-color: rgba(22,163,74,0.2);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #E5E7EB;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.product-card:hover .product-img { transform: scale(1.08); }

/* Overlay CTA on hover */
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,24,39,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.product-card:hover .product-overlay-btn { transform: translateY(0); }
.product-overlay-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

/* Shine sweep on hover */
.product-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 100%);
    transform: skewX(-25deg);
    transition: 0.75s cubic-bezier(0.16,1,0.3,1);
    opacity: 0;
    pointer-events: none;
}
.product-card:hover .product-img-wrap::after {
    left: 125%;
    opacity: 1;
}

.product-category-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--primary-dark);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text-main);
}
.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(22,163,74,0.08);
}
.product-detail-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    transition: gap 0.2s ease;
}
.product-detail-link:hover { gap: 10px; }
.product-inquiry-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(22,163,74,0.08);
    border: 1px solid rgba(22,163,74,0.18);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.product-inquiry-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
    transform: scale(1.1);
}

/* No-results empty state */
.products-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 30px;
    background: #ffffff;
    border: 1px dashed rgba(22,163,74,0.25);
    border-radius: 16px;
}
.products-empty-state i {
    font-size: 48px;
    color: var(--primary-dark);
    opacity: 0.4;
    margin-bottom: 20px;
}
.products-empty-state h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-main);
}
.products-empty-state p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

/* Card entrance animation */
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   Comprehensive Mobile Responsive Adjustments
   ========================================================================== */

@media (max-width: 1199px) {
    .container {
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .products-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .container {
        width: 100%;
        padding: 0 20px;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-title-wrap {
        margin-bottom: 35px;
    }
    .section-title {
        font-size: 28px;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Header and Navigation adjustments */
    .topbar {
        display: none;
    }
    .logo img {
        height: 70px !important;
        max-height: 70px !important;
    }
    .nav-menu {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
        padding: 8px;
    }
    .header-main {
        padding: 8px 0;
    }
    
    /* Mobile Sidebar Nav Styles defined globally above */
    
    /* Hero Banner Slider Section */
    .hero {
        height: 70vh;
        min-height: 460px;
    }
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 10px;
        max-width: 100%;
    }
    .hero-subtitle {
        font-size: 12px;
        justify-content: center;
    }
    .hero-subtitle::before {
        display: none;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.15;
        margin-bottom: 15px;
    }
    .hero-desc {
        font-size: 14px;
        margin-bottom: 25px;
    }
    .hero-buttons {
        justify-content: center;
        gap: 15px;
    }
    .hero-nav-dots {
        bottom: 25px;
        gap: 15px;
    }
    .hero-dot {
        width: 45px;
    }
    .hero-dot .dot-num {
        font-size: 10px;
    }
    
    /* Overlap Adjustments */
    .features-section {
        margin-top: 0;
        padding: 40px 0 20px 0;
    }
    .feature-card {
        padding: 25px 20px;
    }
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 18px;
        border-radius: 12px;
    }
    .experience-years {
        font-size: 32px;
    }
    .experience-text {
        font-size: 9px;
    }
    
    /* Statistics section */
    .stats-section {
        padding: 40px 0;
    }
    .stats-section .container.grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 15px;
    }
    .stat-number {
        font-size: 32px;
    }
    .stat-title {
        font-size: 11px;
    }
    
    /* Testimonials padding */
    .testimonial-card {
        padding: 25px 20px;
    }
    .testimonial-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .testimonial-text::before {
        font-size: 60px;
        top: -15px;
    }
    
    /* CTA section */
    .cta-wrap {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cta-title {
        font-size: 24px;
    }
    .cta-desc {
        font-size: 13px;
    }
    
    /* Product Detail page */
    .product-detail-title {
        font-size: 28px;
    }
    .tab-nav {
        gap: 15px;
        flex-wrap: wrap;
    }
    .tab-btn {
        font-size: 13px;
        padding: 8px 0;
    }
    
    /* Contact page Form card */
    .inquiry-card {
        padding: 25px 20px;
    }
    .contact-info-item {
        padding: 20px;
        gap: 15px;
    }
    .map-container {
        margin-top: 40px;
    }
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px !important;
        max-height: 60px !important;
    }
    .hero-title {
        font-size: 26px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .products-filter {
        gap: 10px;
    }
    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }
}

/* =========================================================
   Premium Mega Menu Redesign
   ========================================================= */

/* Wrapper positioning */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

/* Outer panel */
.dropdown-menu-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 1040px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border: 1px solid rgba(22, 163, 74, 0.1);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(31, 34, 48, 0.12), 0 8px 20px rgba(22, 163, 74, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), left 0.2s ease;
    z-index: 1100;
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

/* Hover bridge */
.dropdown-menu-mega::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

/* Triangle arrow */
.dropdown-menu-mega::before {
    content: '';
    position: absolute;
    top: -8px;
    left: var(--arrow-left, 50%);
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background-color: #ffffff;
    border-left: 1px solid rgba(22, 163, 74, 0.1);
    border-top: 1px solid rgba(22, 163, 74, 0.1);
    z-index: 1;
    transition: left 0.15s ease;
}

/* Open state — controlled ONLY by JS (.open class), not CSS :hover */
.nav-item-dropdown.open .dropdown-menu-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Inner layout: intro strip + category grid side by side */
.mega-menu-inner {
    display: flex;
    height: 100%;
}

/* ── Left Intro Panel ── */
.mega-intro-panel {
    width: 220px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #0f172a 0%, #1a2e1e 100%);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 24px 0 0 24px;
}

.mega-intro-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 4px;
}

.mega-intro-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.mega-intro-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    flex: 1;
}

.mega-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    font-family: var(--font-heading);
    transition: gap 0.2s ease;
    margin-top: 4px;
}
.mega-intro-link:hover { gap: 11px; }

.mega-intro-stats {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.mega-stat {
    display: flex;
    flex-direction: column;
}
.mega-stat strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.mega-stat span {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
}

/* ── Right: Category Grid + CTA ── */
.mega-menu-container {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 180px;
    gap: 0;
    padding: 24px 20px 24px 24px;
    align-items: start;
}

/* Category column */
.mega-menu-col {
    display: flex;
    flex-direction: column;
    padding-right: 18px;
    border-right: 1px solid rgba(22, 163, 74, 0.07);
    margin-right: 0;
    min-width: 0;
}
.mega-menu-col:last-of-type { border-right: none; }

/* Category header link */
.mega-cat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid rgba(22, 163, 74, 0.1);
    transition: all 0.2s ease;
    min-width: 0;
}
.mega-cat-header:hover .mega-cat-name { color: var(--primary-dark); }
.mega-cat-header:hover .mega-cat-arrow { transform: translateX(3px); opacity: 1; }

.mega-cat-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 9px;
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--primary-dark);
    transition: all 0.2s ease;
}
.mega-cat-header:hover .mega-cat-icon {
    background: var(--primary-dark);
    color: #ffffff;
    border-color: var(--primary-dark);
}

.mega-cat-name {
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-main);
    flex: 1;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-break: break-word;
}

.mega-cat-arrow {
    font-size: 10px;
    color: var(--text-muted);
    opacity: 0.4;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Product list */
.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mega-menu-list li {
    border-bottom: 1px solid rgba(22, 163, 74, 0.05);
}
.mega-menu-list li:last-child { border-bottom: none; }

.mega-menu-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    color: #4b5563;
    font-size: 12.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1.3;
    overflow-wrap: break-word;
    word-break: break-word;
}
.mega-menu-list li a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-dark);
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}
.mega-menu-list li a:hover {
    color: var(--primary-dark);
    padding-left: 6px;
}
.mega-menu-list li a:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* View all link */
.mega-view-all a {
    font-weight: 700 !important;
    color: var(--primary-dark) !important;
    font-family: var(--font-heading);
    font-size: 11.5px !important;
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 9px 0 4px !important;
}
.mega-view-all a i { font-size: 10px; transition: transform 0.2s ease; }
.mega-view-all a:hover i { transform: translateX(4px); }

/* ── CTA Column ── */
.mega-cta-col {
    padding-left: 16px;
    display: flex;
    flex-direction: column;
}

.mega-cta-box {
    background: linear-gradient(150deg, #0f172a, #16301f);
    border-radius: 16px;
    padding: 20px 14px;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.mega-cta-box::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(22,163,74,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.mega-cta-icon {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 2px;
}

.mega-cta-box h4 {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

.mega-cta-box p {
    font-size: 11px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    flex: 1;
}

.mega-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-dark);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11.5px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
    white-space: nowrap;
}
.mega-cta-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.35);
}

/* Responsive scaling for Mega Menu on medium/laptop screens */
@media (max-width: 1200px) {
    .dropdown-menu-mega {
        width: 960px;
    }
    .mega-intro-panel {
        width: 190px;
        padding: 24px 16px;
    }
    .mega-intro-title {
        font-size: 16px;
    }
    .mega-intro-desc {
        font-size: 11.5px;
    }
    .mega-menu-container {
        grid-template-columns: repeat(3, minmax(0, 1fr)) 160px;
        padding: 20px 16px;
    }
    .mega-menu-col {
        padding-right: 14px;
    }
    .mega-cat-name {
        font-size: 11.5px;
    }
    .mega-menu-list li a {
        font-size: 12px;
    }
    .mega-cta-col {
        padding-left: 12px;
    }
    .mega-cta-box {
        padding: 16px 12px;
    }
    .mega-cta-box h4 {
        font-size: 12.5px;
    }
}



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

/* Mobile filter label (hidden on desktop) */
.mobile-filter-label { display: none; }

/* =========================================================
   Products Page — Mobile Overhaul (≤768px)
   ========================================================= */
@media (max-width: 768px) {

    /* Compact page banner */
    .products-page-banner { padding: 55px 0 35px; }
    .products-page-banner .page-banner-title { font-size: 24px; }

    /* Stack layout vertically */
    .products-layout-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* ── Hide desktop sidebar entirely on mobile ── */
    .products-sidebar { display: none !important; }

    /* ── Mobile category pill strip ── */
    .mobile-cat-strip {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 14px 0 10px;
        margin-bottom: 16px;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-cat-strip::-webkit-scrollbar { display: none; }

    .mobile-cat-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
        padding: 9px 16px;
        border-radius: 30px;
        border: 1.5px solid rgba(22,163,74,0.2);
        background: #ffffff;
        font-family: var(--font-heading);
        font-size: 12px;
        font-weight: 600;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.25s ease;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(31,41,55,0.04);
    }
    .mobile-cat-pill i { font-size: 11px; }
    .mobile-cat-pill.active {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
        color: #ffffff;
        box-shadow: 0 4px 14px rgba(22,163,74,0.3);
    }
    .pill-count {
        background: rgba(255,255,255,0.25);
        font-size: 10px;
        font-weight: 700;
        padding: 1px 6px;
        border-radius: 12px;
        min-width: 20px;
        text-align: center;
    }
    .mobile-cat-pill:not(.active) .pill-count {
        background: rgba(22,163,74,0.1);
        color: var(--primary-dark);
    }

    /* Results header compact */
    .products-results-header {
        padding: 10px 14px;
        margin-bottom: 16px;
        border-radius: 10px;
    }
    .results-count { font-size: 18px; }
    .active-cat-badge { font-size: 11px; padding: 3px 10px; }

    /* 2-column compact grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Compact cards */
    .product-card { border-radius: 12px; }
    .product-img-wrap { aspect-ratio: 1/1; }
    .product-category-tag { top: 8px; left: 8px; font-size: 9px; padding: 3px 8px; }
    .product-info { padding: 11px 13px 13px; }
    .product-title {
        font-size: 12px;
        margin-bottom: 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-desc { display: none; }
    .product-footer { padding-top: 10px; }
    .product-detail-link { font-size: 11px; gap: 4px; }
    .product-inquiry-btn { width: 28px; height: 28px; font-size: 11px; }

    /* Hide overlay on mobile (tap to navigate instead) */
    .product-card-overlay { display: none; }

    /* Empty state compact */
    .products-empty-state { padding: 50px 20px; }
    .products-empty-state i { font-size: 36px; }
}

/* Extra small (≤380px): single column */
@media (max-width: 380px) {
    .products-grid { grid-template-columns: 1fr; gap: 14px; }
    .product-img-wrap { aspect-ratio: 4/3; }
    .product-title { font-size: 14px; }
    .product-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
        margin-bottom: 10px;
    }
}


