/* ════════════════════════════════════════════════════════════
   JRG FILTER TECH - PREMIUM DESIGN SYSTEM
   ════════════════════════════════════════════════════════════ */

:root {
    /* Color Palette */
    --color-primary: #1B3A6B;
    --color-primary-rgb: 27, 58, 107;
    --color-accent: #F97316;
    --color-accent-dark: #EA580C;
    --color-dark: #0F172A;
    --color-dark-rgb: 15, 23, 42;
    --color-light: #F8FAFC;
    --color-white: #FFFFFF;
    --color-gray: #64748B;
    --color-border: #E2E8F0;

    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Elevation */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Layout */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-full: 9999px;
    --nav-height: 85px;
    --container-max: 1300px;

    /* Animation */
    --transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

.bg-light::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--color-border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

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

ul {
    list-style: none;
}

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

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

/* ── Typography ──────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* ── Global Elements ─────────────────────────────────────── */
body {
    font-family: var(--font-main);
    color: var(--color-dark);
    background: #fff;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
    border: 3px solid #f1f5f9;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.bg-light {
    background-color: #F8FAFC;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 3rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: currentColor;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    font-weight: 500;
    line-height: 1.8;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #2A5298 100%);
    color: var(--color-white);
    padding: 1.1rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(var(--color-primary-rgb), 0.3);
    color: white;
}

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--color-dark-rgb), 0.05);
    transition: var(--transition);
}

.site-nav.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.site-logo-img {
    height: 50px;
    width: auto;
    border-radius: 6px;
}

.logo-name {
    display: block;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
}

.logo-tagline {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-top: 2px;
}

/* --- Mobile Navigation Hamburger --- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    position: relative;
    width: 45px;
    height: 45px;
    justify-content: center;
    align-items: center;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.nav-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.nav-link {
    font-weight: 700;
    color: var(--color-dark);
    font-size: 0.95rem;
    opacity: 0.85;
}

.nav-link:hover {
    color: var(--color-primary);
    opacity: 1;
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white !important;
    padding: 0.8rem 1.75rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Hero Section ────────────────────────────────────────── */
/* ── Hero Section (Normal Premium) ───────────────────────── */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: calc(var(--nav-height) * -1);
    overflow: hidden;
    background: #000;
}

.hero-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 20, 40, 0.85) 0%,
            rgba(10, 20, 40, 0.65) 50%,
            rgba(10, 20, 40, 0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    color: white;
    width: 100%;
    max-width: 1100px;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-title .hero-accent {
    color: var(--color-accent);
}

.hero-desc {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    max-width: 700px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Controls */
.hero-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-dots {
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--color-accent);
    width: 35px;
    border-radius: 10px;
}

.hero-scroll-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    margin-left: 50px;
}

.hero-scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-scroll-indicator:hover span {
    color: var(--color-accent);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.hero-scroll-indicator:hover span {
    color: white;
}

.btn-hero-primary {
    background: var(--color-accent);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(var(--color-accent-rgb), 0.3);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(var(--color-accent-rgb), 0.4);
    background: var(--color-accent-dark);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}


.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--color-dark);
    border-color: white;
    transform: translateY(-5px);
}

/* ── Advantage Grid (Dark Style) ────────────────────────── */
.features-section.bg-primary-dark {
    background: #0f172a;
    color: white;
}

.section-header.light .section-title {
    color: white;
}

.section-header.light .section-eyebrow {
    color: var(--color-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* ── Responsive Adjustments ───────────────────────────── */
@media (max-width: 1024px) {
    .hero-text-side {
        padding: 0 5%;
    }

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

@media (max-width: 768px) {
    .hero-slide {
        flex-direction: column;
    }

    .hero-text-side {
        flex: 0 0 100%;
        padding: 120px 20px 60px;
        text-align: center;
        align-items: center;
    }

    .hero-image-side {
        flex: 0 0 100%;
        height: 50vh;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-controls {
        left: 50%;
        transform: translateX(-50%);
    }
}

box-shadow: 0 20px 50px rgba(var(--color-primary-rgb), 0.1);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    color: var(--color-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

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

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.feature-content p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.5;
}

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

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

/* Entrance Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.hero-slide.active .animate-up:nth-child(1) {
    transition-delay: 0.1s;
}

.hero-slide.active .animate-up:nth-child(2) {
    transition-delay: 0.2s;
}

.hero-slide.active .animate-up:nth-child(3) {
    transition-delay: 0.3s;
}

.hero-slide.active .animate-up:nth-child(4) {
    transition-delay: 0.4s;
}

/* ── Product Cards ───────────────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary-light);
}

.product-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-img img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--color-gray);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.2em;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.product-status-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-view-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.product-card:hover .product-view-btn {
    gap: 8px;
    color: var(--color-accent);
}

/* ── Page Components ─────────────────────────────────────── */
.breadcrumb-header {
    height: 400px;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: calc(var(--nav-height) * -1);
}

.breadcrumb-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(var(--color-dark-rgb), 0.7), rgba(var(--color-dark-rgb), 0.4));
    z-index: 1;
}

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

.breadcrumb-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.breadcrumb-sep {
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
}

.page-hero {
    height: 450px;
    background: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

/* ── About Page ──────────────────────────────────────────── */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text-side p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-border);
}

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

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

.about-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.4rem;
    font-weight: 600;
}

.about-media-side {
    position: relative;
    height: 520px;
}

.about-img-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

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

/* Mission/Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mv-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), #2563eb);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.mv-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ── Core Strengths (Premium Masonry) ────────────────────── */
.core-strengths-section {
    background: #0f172a;
    color: white;
}

.core-strengths-section .section-eyebrow {
    color: var(--color-accent);
}

.core-strengths-section .section-title {
    color: white;
}

.core-strengths-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.strengths-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

/* Large card spans 1 col, 2 rows */
.strength-feature-card.large {
    grid-row: span 2;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 480px;
}

.strength-feature-img {
    position: absolute;
    inset: 0;
}

.strength-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strength-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 30, 0.95) 0%, rgba(10, 15, 30, 0.4) 60%, transparent 100%);
}

.strength-feature-card.large .strength-feature-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
}

.strength-feature-card.large .strength-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.25rem;
}

.strength-feature-card.large h3 {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 0.75rem;
}

.strength-feature-card.large p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Small cards */
.strength-feature-card:not(.large) {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.strength-feature-card:not(.large):hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.strength-feature-icon.solo {
    width: 52px;
    height: 52px;
    background: rgba(var(--color-primary-rgb), 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary-light, #60a5fa);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.strength-feature-card:not(.large) h3 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.strength-feature-card:not(.large) p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
}

.strength-card-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.85rem;
    background: rgba(var(--color-accent-rgb, 249, 115, 22), 0.15);
    border: 1px solid rgba(var(--color-accent-rgb, 249, 115, 22), 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-media-side {
        height: 360px;
    }

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

    .strengths-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .strength-feature-card.large {
        grid-row: span 1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .strengths-masonry {
        grid-template-columns: 1fr;
    }

    .about-stats-row {
        gap: 1.25rem;
    }
}


/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--color-dark);
    color: white;
    padding: 60px 0 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.75rem;
    display: inline-block;
}

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

.footer-links a {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-contact-list li {
    margin-bottom: 1.25rem;
    display: flex;
    gap: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-name {
    color: white;
}

.footer-about {
    line-height: 1.8;
    opacity: 0.8;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    border-radius: 6px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
}

.social-link.facebook:hover {
    background: #1877F2;
    transform: translateY(-3px);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px);
}

.social-link.linkedin:hover {
    background: #0077b5;
    transform: translateY(-3px);
}

.social-link.youtube:hover {
    background: #FF0000;
    transform: translateY(-3px);
}

.footer-map {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(1.2);
    opacity: 0.7;
    transition: var(--transition);
}

.footer-map:hover iframe {
    filter: grayscale(0) invert(0);
    opacity: 1;
}

.footer-map-placeholder {
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.footer-map-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

/* ── UI Elements ─────────────────────────────────────────── */
.whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-fab:hover {
    transform: scale(1.1) rotate(10deg);
}

.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 900;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

/* ── Stats Section ────────────────────────────────────────── */
.stats-section {
    padding: 0;
    margin-top: -60px;
    /* Overlap with hero or previous section */
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    padding: 1rem;
    transition: var(--transition);
}

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

.stat-icon {
    width: 65px;
    height: 65px;
    background: rgba(var(--color-primary-rgb), 0.06);
    color: var(--color-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
}

.stat-number-wrap {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
}

.stat-plus {
    font-size: 1.5rem;
    color: var(--color-accent);
    font-weight: 800;
}

.stat-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--color-gray);
    margin-top: 4px;
}


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

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

.about-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 1;
}

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

.about-img-placeholder {
    height: 100%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #cbd5e1;
}

.about-badge-float {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.about-badge-float i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.about-badge-float span {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-feat i {
    color: var(--color-accent);
    font-size: 1.25rem;
}

/* ── Category Cards ──────────────────────────────────────── */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.category-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary-light);
}

.category-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2.5rem;
    transition: transform 0.8s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.15);
}

.category-info {
    padding: 2.5rem 2rem;
    position: relative;
    background: white;
}

.category-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.category-count {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 700;
    opacity: 0.6;
}

.category-arrow {
    position: absolute;
    right: 2rem;
    top: -30px;
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
    border: 4px solid white;
    font-size: 1.25rem;
}

.category-card:hover .category-arrow {
    background: var(--color-primary);
    transform: rotate(-45deg);
}

/* ── Why Choose Us ───────────────────────────────────────── */
.bg-primary-dark {
    background-color: var(--color-dark);
}

.section-eyebrow.light {
    color: var(--color-accent);
}

.section-header.light .section-title {
    color: white;
}

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .feature-card {
        text-align: center;
        padding: 3rem 2rem;
    }

    .feature-icon {
        margin: 0 auto 1.5rem;
    }
}

.feature-card h3 {
    color: white;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::after {
    content: '”';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    line-height: 1;
    color: var(--color-light);
    font-family: serif;
    z-index: 0;
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-photo,
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-gray);
    font-weight: 600;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 1.5rem 2rem;
    color: var(--color-gray);
}

.faq-item.open .faq-answer {
    max-height: 500px;
    border-top: 1px solid var(--color-border);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

/* ── CTA Banner ──────────────────────────────────────────── */
.bg-accent-gradient {
    background: linear-gradient(135deg, var(--color-accent) 0%, #EA580C 100%);
}

.cta-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

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

.cta-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-cta-primary {
    background: white;
    color: var(--color-accent);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 800;
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 800;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ── Products Listing Page ────────────────────────────────── */
.products-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
}

.products-sidebar {
    position: sticky;
    top: 110px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.search-input-wrap {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
}

.search-btn {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-gray);
    cursor: pointer;
    font-size: 1.1rem;
}

.category-filter-list li {
    margin-bottom: 0.5rem;
}

.cat-filter-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-gray);
    transition: var(--transition);
}

.cat-filter-link:hover,
.cat-filter-link.active {
    background: var(--color-light);
    color: var(--color-primary);
}

.cat-filter-link.active {
    color: var(--color-primary);
    font-weight: 800;
}

.cat-count {
    font-size: 0.75rem;
    background: var(--color-border);
    color: var(--color-dark);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 700;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.results-info {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.results-info strong {
    color: var(--color-dark);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition);
}

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

/* List View Override */
.product-grid.list-view {
    grid-template-columns: 1fr;
}

/* Products Page Specific Grid Adjustment */
.products-main .product-grid:not(.list-view) {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .products-main .product-grid:not(.list-view) {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .products-main .product-grid:not(.list-view) {
        grid-template-columns: 1fr;
    }
}

.product-grid.list-view .product-card {
    display: flex;
    align-items: center;
    height: 200px;
}

.product-grid.list-view .product-img {
    width: 300px;
    height: 100%;
    aspect-ratio: auto;
}

.product-grid.list-view .product-info {
    padding: 2rem;
    flex: 1;
}

@media (max-width: 991px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }
}

/* ── Product Detail Page ─────────────────────────────────── */
.product-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.product-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.product-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.product-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
}

.widget-title-primary {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-primary);
}

.spec-widget {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th {
    text-align: left;
    padding: 1rem 0;
    font-weight: 700;
    color: var(--color-gray);
    border-bottom: 1px solid var(--color-border);
    width: 40%;
    font-size: 0.9rem;
}

.spec-table td {
    text-align: right;
    padding: 1rem 0;
    font-weight: 700;
    color: var(--color-dark);
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.enquiry-widget {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.enquiry-alt {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.enquiry-alt p {
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.enquiry-phone,
.enquiry-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.enquiry-whatsapp {
    color: #25D366;
}

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

.share-widget h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 1rem;
}

.share-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--color-light);
    transition: var(--transition);
}

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

.product-description {
    margin-bottom: 4rem;
}

.product-description h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-desc-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.product-desc-content p {
    margin-bottom: 1.5rem;
}

.product-features-block {
    margin-bottom: 4rem;
}

.product-features-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
    background: var(--color-light);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
}

/* Technical Specs Table */
.specs-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pd-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    min-width: 600px;
}

.pd-specs-table th {
    background: #f8fafc;
    color: var(--color-primary);
    text-align: left;
    padding: 1.5rem 2rem;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #edf2f7;
}

.pd-specs-table td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #edf2f7;
    font-size: 1.05rem;
    color: var(--color-dark);
    line-height: 1.6;
}

.pd-specs-table tr:last-child td {
    border-bottom: none;
}

.pd-specs-table td:first-child {
    font-weight: 800;
    color: var(--color-gray);
    width: 35%;
    background: #fcfdfe;
    border-right: 1px solid #f1f5f9;
}

.pd-specs-table tr:hover td {
    background: #fdfdfd;
}

.product-features-list li i {
    color: var(--color-accent);
    font-size: 1.5rem;
}

.product-gallery h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    aspect-ratio: 1;
}

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

.gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-light);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gray);
    margin: 0 0.5rem 0.5rem 0;
}

@media (max-width: 991px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-detail-sidebar {
        order: 2;
    }

    .product-detail-main {
        order: 1;
    }

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

/* ── Contact Page ────────────────────────────────────────── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info-panel {
    background: var(--color-primary);
    color: white;
    padding: 4rem 3.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(var(--color-primary-rgb), 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-panel {
    background: white;
    padding: 2rem 0;
    height: 100%;
}

/* ── Forms & Floating Labels ────────────────────────────── */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-white);
    outline: none;
    color: var(--color-dark);
    font-weight: 500;
}

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

.form-group.floating label {
    position: absolute;
    left: 1.5rem;
    top: 1.25rem;
    color: var(--color-gray);
    pointer-events: none;
    transition: var(--transition);
    font-weight: 600;
    background: white;
    padding: 0 0.5rem;
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb), 0.1);
}

.form-input:focus+label,
.form-input:not(:placeholder-shown)+label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.8rem;
    color: var(--color-primary);
    opacity: 1;
}

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.field-error {
    font-size: 0.8rem;
    color: #EF4444;
    margin-top: 0.5rem;
    display: block;
    font-weight: 700;
}

.form-input.input-validation-error {
    border-color: #EF4444;
}

/* Direct Contacts Section (New Position) */
.direct-contacts-section {
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--color-border);
}

.direct-contacts-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.direct-contacts-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.direct-contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.direct-contact-card {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.direct-contact-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border-color: var(--color-primary);
}

.dc-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.dc-info {
    display: flex;
    flex-direction: column;
}

.dc-name {
    font-weight: 800;
    color: var(--color-dark);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.dc-role {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.dc-link {
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dc-link i {
    font-size: 0.8rem;
}

@media (max-width: 1200px) {
    .direct-contacts-grid {
        grid-template-columns: 1fr;
    }
}

.maps-section {
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    margin-bottom: 0;
}

.maps-container iframe {
    width: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
    margin-bottom: -10px;
}

.maps-placeholder {
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 450px;
    margin-top: 2rem;
}

.maps-placeholder-inner {
    color: var(--color-gray);
}

.maps-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info-panel {
        padding: 3rem 2rem;
    }

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

/* ── About Page Elements ─────────────────────────────────── */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mv-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2.5rem;
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
}

.mv-card h3 {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.mv-card p {
    color: var(--color-gray);
    line-height: 1.8;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.strength-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.strength-item:hover {
    background: var(--color-light);
    transform: scale(1.02);
}

.strength-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(var(--color-primary-rgb), 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.strength-item:hover .strength-icon {
    background: var(--color-accent);
    color: white;
}

.strength-item h4 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.strength-item p {
    color: var(--color-gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── Animations ──────────────────────────────────────────── */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

[data-animate].active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

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

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

@media (max-width: 991px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        transition: var(--transition);
        z-index: 1050;
        display: flex !important;
        gap: 1.5rem;
        align-items: flex-start;
        overflow-y: auto;
    }

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

    .nav-item {
        width: 100%;
    }

    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
    }

    .nav-container {
        height: 70px;
    }

    .logo-name {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }

    .site-logo-img {
        height: 40px;
    }

    .nav-logo {
        gap: 0.75rem;
    }
}

    .hero-content {
        padding: 0 1.5rem;
    }

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

    .section-pad {
        padding: 60px 0;
    }

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

    .about-badge-float {
        display: none;
    }

    .cta-actions {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

/* ── Mobile Responsive Refinements ──────────────────────── */
@media (max-width: 768px) {
    .section-pad {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-container {
        height: 70px;
    }

    .nav-logo-img {
        height: 35px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
        margin-top: -30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 1rem;
        margin-top: -20px;
    }

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


/* -- Product Detail Refinements --------------------------- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 5rem;
}

.spec-widget {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    margin-bottom: 2.5rem;
}

.spec-table {
    width: 100%;
}

.spec-table th {
    text-align: left;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-weight: 600;
    width: 45%;
}

.spec-table td {
    text-align: right;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.enquiry-widget {
    background: var(--color-primary);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.enquiry-widget::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.enquiry-widget .widget-title-primary {
    color: white;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.enquiry-widget .form-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

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

.enquiry-widget .form-input:focus {
    background: white;
    color: var(--color-dark);
}

.enquiry-widget .btn-primary {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    justify-content: center;
}

.enquiry-widget .btn-primary:hover {
    background: var(--color-accent);
    color: white;
}

.enquiry-alt {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.enquiry-alt p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.enquiry-phone,
.enquiry-whatsapp {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    transition: var(--transition);
}

.enquiry-whatsapp {
    color: #25D366;
}

.enquiry-phone:hover {
    transform: translateX(5px);
}

.product-gallery h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.product-gallery h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    aspect-ratio: 1;
    transition: var(--transition);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    background: rgba(var(--color-primary-rgb), 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}


/* -- Testimonial Carousel ---------------------------------- */
.testimonial-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 1rem;
    overflow: hidden;
}

.testimonial-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: grab;
}

.testimonial-carousel:active {
    cursor: grabbing;
}

.testimonial-slide {
    min-width: 33.333%;
    padding: 1rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: #FBBF24;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark);
    font-style: italic;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-photo,
.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    background: white;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

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

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 1024px) {
    .testimonial-slide {
        min-width: 50%;
    }
}

@media (max-width: 640px) {
    .testimonial-slide {
        min-width: 100%;
        padding: 0.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}


/* -- Contact Info Panel Refinements ----------------------- */
.contact-info-panel {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a365d 100%);
    padding: 5rem 4rem;
}

.contact-panel-title {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-panel-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.contact-info-list.sm {
    gap: 1.5rem;
    margin-bottom: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-info-item.sm {
    gap: 1rem;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.contact-info-icon.sm {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.1rem;
    border-radius: 10px;
}

.contact-panel-title-sm {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    opacity: 0.9;
}

.contact-info-item:hover .contact-info-icon {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
}

.info-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-value {
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.info-value:hover {
    color: var(--color-accent);
}

.contact-social {
    display: flex;
    gap: 1.25rem;
    margin-top: auto;
}

.contact-social .social-link {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social .social-link:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* -- Success Message -------------------------------------- */
.form-success-box {
    background: #ecfdf5;
    border: 1px solid #10b981;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #065f46;
}

.form-success-box i {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.form-success-box strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* -- Hero Controls & Enhancements ------------------------- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(var(--color-primary-rgb), 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-controls {
    position: absolute;
    bottom: 3rem;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.hero-prev,
.hero-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 0.75rem;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.hero-dot.active {
    background: var(--color-accent);
    width: 35px;
    border-radius: 10px;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


/* -- FAQ Premium Refinements ----------------------------- */
.faq-list {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(var(--color-primary-rgb), 0.2);
}

.faq-item.open {
    border-color: var(--color-primary);
    box-shadow: 0 20px 50px rgba(var(--color-primary-rgb), 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--color-dark);
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-item.open .faq-question {
    color: var(--color-primary);
    background: rgba(var(--color-primary-rgb), 0.02);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.2rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border-top: 1px solid transparent;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    padding: 2.5rem;
    color: var(--color-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 500;
}

/* -- About Page Premium Enhancements --------------------- */
.mv-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--color-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2.5rem;
    transition: var(--transition);
}

.mv-card:hover .mv-icon {
    background: var(--color-primary);
    color: white;
    transform: rotateY(180deg);
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.strength-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: #fff;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.strength-item:hover {
    background: var(--color-light);
    transform: scale(1.02);
}

.strength-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(var(--color-primary-rgb), 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.strength-item:hover .strength-icon {
    background: var(--color-accent);
    color: white;
}

/* -- Manufacturing Showcase ------------------------------ */
.manufacturing-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.manufacturing-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.manufacturing-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--color-primary-rgb), 0.3), transparent);
}

.manufacturing-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.m-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.m-stat-val {
    font-size: 2rem;
    font-weight: 900;
    color: var(--color-primary);
}

.m-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    font-weight: 700;
}


/* -- Premium Breadcrumb Header -------------------------- */
.breadcrumb-header {
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-dark);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: calc(var(--nav-height) * -1);
}

.breadcrumb-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.9) 0%, rgba(var(--color-dark-rgb), 0.8) 100%);
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding-top: var(--nav-height);
}

.breadcrumb-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    opacity: 0.7;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.breadcrumb-sep {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
}


.faq-section {
    background: rgba(var(--color-primary-rgb), 0.01);
}

/* -- Hero Pinned Scroll ----------------------------------- */
.hero-pinned-wrapper {
    overflow: hidden;
}

.hero-event {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.hero-pin-wrapper {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 11;
}

.hero-event::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image-box {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 500px;
    height: 500px;
    transform: translateY(-50%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 20;
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

.hero-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease;
}

.hero-event:hover .hero-image-inner {
    transform: scale(1.1);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 25;
    color: white;
}

.hero-desc {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 30;
    color: white;
}

.hero-scroll-btn span {
    width: 20px;
    height: 20px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    animation: hero-arrow-down 2s infinite;
}

@keyframes hero-arrow-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* ScrollMagic Specific styles */
.scrollmagic-pin-spacer {
    position: absolute !important;
}


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

    .hero-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-controls {
        bottom: 30px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ── Product Detail (Premium Design) ────────────────────── */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
}

.product-gallery-side {
    position: sticky;
    top: 120px;
}

.main-img-wrap {
    background: #f8fafc;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 1/1;
    border: 1px solid var(--color-border);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-img-wrap img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.main-img-wrap:hover img {
    transform: scale(1.05);
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.thumb-item {
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: #f1f5f9;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-item.active {
    border-color: var(--color-accent);
    background: white;
}

.thumb-item img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.pd-category {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
}

.pd-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pd-short-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
}

.pd-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pd-spec-item {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid #edf2f7;
}

.pd-spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.pd-spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.pd-cta-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-pd-enquiry {
    flex: 1;
    background: var(--color-primary);
    color: white;
    padding: 1.25rem;
    border-radius: 15px;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-pd-enquiry:hover {
    background: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.2);
}

.btn-pd-wa {
    width: 65px;
    background: #25d366;
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.btn-pd-wa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.pd-details-area {
    margin-top: 5rem;
}

.pd-tabs-nav {
    display: flex;
    gap: 4rem;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 3rem;
}

.pd-tab-link {
    font-size: 1.2rem;
    font-weight: 800;
    padding-bottom: 1.25rem;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

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

.pd-tab-link.active {
    color: var(--color-primary);
}

.pd-tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
    border-radius: 10px;
}

.pd-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.pd-tab-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.pd-tab-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.pd-feature-card {
    display: flex;
    gap: 1.25rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    transition: all 0.3s ease;
}

.pd-feature-card:hover {
    border-color: var(--color-accent);
    background: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.pd-feature-card i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.pd-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.pd-feature-card p {
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .product-gallery-side {
        position: static;
    }

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