/* ===================================
   ROOT VARIABLES & CORE DESING
   =================================== */

:root {
    /* Premium Color Palette */
    --primary-color: #9f2424;
    --primary-dark: #7b1919;
    --primary-light: #fbf5f5;
    --secondary-color: #efc421;
    --accent-gold: #ffcc00;
    --accent-green: #2a9d8f;

    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0e1cf;
    --medium-gray: #6c757d;
    --dark-gray: #4d4d4d;
    --black: #1a1a1a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #9f2424 0%, #7b1919 100%);
    --gradient-secondary: linear-gradient(135deg, #efc421 0%, rgb(200, 160, 10) 100%);
    --gradient-tertiary: linear-gradient(135deg, #9f2424 0%, #efc421 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4a261 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Manrope', sans-serif;
    --font-secondary: 'Cormorant Garamond', serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

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

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

section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--medium-gray);
}

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

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

/* TOP BAR */
.top-bar {
    width: 100%;
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1100;
    border-bottom: 1px solid rgba(127, 183, 46, 0.18);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.top-bar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.top-bar-item i {
    color: var(--secondary-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.top-bar-item:hover {
    color: var(--secondary-color);
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(127, 183, 46, 0.25);
    flex-shrink: 0;
}

.top-bar-presence {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    cursor: default;
}

.top-bar-presence i {
    color: var(--secondary-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.navbar {
    position: fixed;
    top: 38px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(210, 23, 8, 0.03);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(210, 23, 8, 0.3);
}

.navbar.scrolled {
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(210, 23, 8, 0.06);
    border-bottom: 1px solid rgba(210, 23, 8, 0.5);
}

.nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    object-fit: contain;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-text-img {
    height: 45px;
    object-fit: contain;
}

.logo:hover i {
    transform: rotate(15deg) scale(1.1);
    transition: var(--transition-normal);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-mobile-contact {
    display: none;
}

.nav-link {
    color: var(--black);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Elegant luxury animated underline hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Special Pill-Shaped Contact Button */
.nav-btn-contact {
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 6px 6px 6px 20px !important;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease;
}

.nav-btn-contact::after {
    display: none !important;
}

.nav-btn-contact .phone-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.nav-btn-contact .phone-icon-circle i {
    font-size: 0.85rem;
    transform: rotate(0deg);
}

.nav-btn-contact:hover {
    background-color: transparent !important;
    color: #111111 !important;
    border-color: #111111;
}

.nav-btn-contact:hover .phone-icon-circle {
    background-color: transparent;
    color: #111111;
    border-color: #111111;
}

/* Mobile responsive styles for the contact button */
@media (max-width: 768px) {
    .nav-btn-contact {
        width: fit-content !important;
        margin: 0 auto;
        padding: 5px 5px 5px 18px !important;
        font-size: 0.95rem !important;
        letter-spacing: 0.5px !important;
        display: inline-flex !important;
        justify-content: center;
    }

    .nav-btn-contact .phone-icon-circle {
        width: 28px;
        height: 28px;
    }

    .nav-btn-contact .phone-icon-circle i {
        font-size: 0.75rem;
    }
}

/* Special Pill-Shaped Discover More Button */
.hero-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 8px 8px 8px 24px !important;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.2;
}

.hero-btn-more .more-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.hero-btn-more .more-icon-circle i {
    font-size: 0.85rem;
}

.hero-btn-more:hover {
    background-color: transparent !important;
    color: #111111 !important;
    border-color: #111111;
}

.hero-btn-more:hover .more-icon-circle {
    background-color: transparent;
    color: #111111;
    border-color: #111111;
}

@media (max-width: 768px) {
    .hero-btn-more {
        padding: 6px 6px 6px 20px !important;
        font-size: 0.9rem !important;
    }

    .hero-btn-more .more-icon-circle {
        width: 28px;
        height: 28px;
    }

    .hero-btn-more .more-icon-circle i {
        font-size: 0.75rem;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(210, 23, 8, 0.05);
    border: none;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

.menu-toggle:hover {
    background: rgba(210, 23, 8, 0.1);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
    width: 16px;
    transform: translateX(-3px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle:hover span:nth-child(2) {
    width: 22px;
    transform: translateX(0);
}

/* ===================================
   HERO SLIDER SECTION
   =================================== */

/* ===================================
   HERO ENTERPRISE SECTION 
   =================================== */
.hero-enterprise {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #fdfbf7;
    overflow: hidden;
    padding: 80px 0 80px 0;
}

.hero-enterprise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(210, 23, 8, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(210, 23, 8, 0.04) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

.hero-enterprise-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-enterprise-content {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    text-align: left;
}

.hero-enterprise-subtitle {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    background: rgba(210, 23, 8, 0.05);
    border: 1px solid rgba(210, 23, 8, 0.12);
    padding: 6px 16px;
    border-radius: 30px;
    width: fit-content;
}

.hero-enterprise-subtitle::before {
    content: '✦';
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.hero-enterprise-title {
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-family: var(--font-secondary);
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-enterprise-title em {
    font-style: normal;
    color: var(--primary-color);
    position: relative;
}

.hero-enterprise-desc {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 95%;
}

.hero-enterprise-brands {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 2.5rem;
}

.brands-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--medium-gray);
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.brands-logos-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-logo-badge {
    height: 48px;
    width: auto;
    object-fit: contain;
    background-color: transparent;
    padding: 8px 16px;
    border: 1.5px solid rgba(210, 23, 8, 0.35);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.brand-logo-badge:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    background-color: rgba(210, 23, 8, 0.02);
}

.hero-enterprise-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-btn-solid {
    position: relative;
    padding: 16px 38px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(210, 23, 8, 0.25);
}

.hero-btn-solid:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 23, 8, 0.4);
}

.hero-btn-outline {
    padding: 16px 38px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 4px;
}

.hero-btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-number {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Visual Side */
.hero-enterprise-visual {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.hero-enterprise-visual {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-image-layers {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 520px;
    margin: 0 auto;
}

.hero-img-bg-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 85%;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-bg-frame:hover .hero-img-bg {
    transform: scale(1.03);
}

.hero-img-fg-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: 20px;
    border: 8px solid var(--white);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: transform 0.4s ease;
}

.hero-img-fg-frame:hover {
    transform: translateY(-5px);
}

.hero-img-fg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-deco-box {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 100px;
    height: 100px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* Pigment Color Swatch Layout and Elements */
.pigment-blend-ring {
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    opacity: 0.16;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
}

.ring-cyan {
    top: 5%;
    left: -10%;
    width: 200px;
    height: 200px;
    background-color: #009FDE;
}

.ring-yellow {
    bottom: 10%;
    right: -10%;
    width: 220px;
    height: 220px;
    background-color: #FFF100;
}

.ring-magenta {
    top: 35%;
    left: 35%;
    width: 160px;
    height: 160px;
    background-color: #E4007F;
}

.lab-grid-marker {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 80px;
    height: 80px;
    border-top: 2.5px dashed rgba(210, 23, 8, 0.45);
    border-left: 2.5px dashed rgba(210, 23, 8, 0.45);
    z-index: 0;
    pointer-events: none;
}

.lab-grid-marker::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.color-swatch-strip {
    position: absolute;
    background-color: var(--white);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 60px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.strip-header {
    text-align: center;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 4px;
    margin-bottom: 2px;
}

.strip-label {
    font-size: 0.55rem;
    font-weight: 800;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
    display: block;
}

.strip-blocks {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.color-block {
    width: 100%;
    height: 18px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease;
    cursor: pointer;
}

.color-block:hover {
    transform: scale(1.15);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.strip-left {
    top: 25%;
    left: -12%;
    transform: rotate(-6deg);
}

.strip-left:hover {
    transform: translateY(-5px) scale(1.05) rotate(0deg);
    border-color: rgba(210, 23, 8, 0.25);
    box-shadow: 0 15px 30px rgba(210, 23, 8, 0.1);
}

.strip-right {
    bottom: 20%;
    right: -10%;
    transform: rotate(8deg);
}

.strip-right:hover {
    transform: translateY(-5px) scale(1.05) rotate(0deg);
    border-color: rgba(210, 23, 8, 0.25);
    box-shadow: 0 15px 30px rgba(210, 23, 8, 0.1);
}

@media (max-width: 991px) {
    .strip-left {
        left: -5%;
    }

    .strip-right {
        right: -5%;
    }
}

@media (max-width: 576px) {
    .strip-left {
        left: 2%;
        top: 15%;
        transform: rotate(0deg);
    }

    .strip-right {
        right: 2%;
        bottom: 12%;
        transform: rotate(0deg);
    }

    .pigment-blend-ring {
        filter: blur(15px);
        opacity: 0.12;
    }

    .ring-cyan {
        width: 140px;
        height: 140px;
    }

    .ring-yellow {
        width: 160px;
        height: 160px;
    }

    .ring-magenta {
        width: 120px;
        height: 120px;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SECTIONS & CONTAINER */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow-x: hidden;
}

.section-alt {
    background-color: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    padding: 12px 35px !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 80' preserveAspectRatio='none'><defs><linearGradient id='bg' x1='0%25' y1='0%25' x2='100%25' y2='0%25'><stop offset='0%25' stop-color='%23D21708' /><stop offset='25%25' stop-color='%23E4007F' /><stop offset='50%25' stop-color='%23E5A823' /><stop offset='75%25' stop-color='%23005C8A' /><stop offset='100%25' stop-color='%232E7D32' /></linearGradient></defs><path d='M5,15 C45,8 95,18 145,12 C195,6 245,15 285,10 C295,15 295,30 295,45 C295,60 290,72 280,75 C240,80 190,72 140,77 C90,82 40,75 10,72 C5,65 5,30 5,15 Z' fill='url(%23bg)' opacity='0.95' /></svg>");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 46px;
    width: fit-content;
    font-family: var(--font-primary);
}

.section-subtitle::after {
    display: none !important;
}

.section-subtitle.justify-center,
.section-subtitle.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 800px;
}

/* ABOUT SECTION */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-content .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}



.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 1rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--primary-color);
    transition: all 0.4s ease;
    border-radius: 0;
}

.about-btn:hover {
    background: transparent;
    color: var(--primary-color);
}

.about-btn span.arrow {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.4s ease;
}

.about-btn:hover span.arrow {
    transform: translateX(5px);
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}



/* Trust Points Strip */
.trust-strip-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 2rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.trust-text h4 {
    font-size: 1.15rem;
    margin: 0 0 5px;
    font-family: var(--font-primary);
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
}

.trust-text p {
    font-size: 0.95rem;
    margin: 0;
    color: var(--medium-gray);
    font-family: var(--font-primary);
    line-height: 1.2;
}

/* Mission & Vision Section */
.mission-vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.mv-box {
    background-color: var(--white);
    border-top: 3px solid var(--primary-color);
    border-radius: 4px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.mv-title {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.mv-desc {
    font-size: 1rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Objectives & Values */
.objectives-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.objectives-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.objective-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

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

.objective-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.objective-card-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.objective-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
}

.objective-card-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

.objectives-content-block {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.objectives-block-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-se);
    background: var(--gradient-tertiary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.objectives-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.objectives-points-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark-gray);
}

.objectives-points-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* How it Works Section (Dark) */
.section-dark {
    background-color: var(--black);
    color: var(--white);
}

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

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.7);
}

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

.process-item {
    position: relative;
    padding: 3rem 2rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.process-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(210, 23, 8, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--white) !important;
    font-family: var(--font-primary);
}

.process-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Achievements & Certifications Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card-new {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

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

.achievement-image-wrapper {
    height: 380px;
    background: #f8f9fa;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.achievement-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.achievement-card-new:hover .achievement-img {
    transform: scale(1.05);
}

.achievement-card-new.gallery-item img {
    height: 100% !important;
    width: auto !important;
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

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

.achievement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

.achievement-desc {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

/* Plant Photo Gallery Section */
.plant-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.plant-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 280px;
}

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

.plant-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

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

/* Hover Zoom Overlay */
.plant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(210, 23, 8, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.plant-zoom-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.plant-card:hover .plant-zoom-icon {
    transform: scale(1);
}

/* B2B Clients Section */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.client-logo-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.25rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
}

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

.client-logo-wrapper {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.client-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.client-info {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.client-logo-card:hover .client-name {
    color: var(--primary-color);
}

/* ===================================
   PRODUCTS SHOWCASE SECTION
   =================================== */
.products-showcase {
    padding-top: 4rem;
}

/* .products-showcase .container {
    max-width: 100%;
} */

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 1rem;
}

/* === Product Swatch Cards — Premium Laboratory Specimen Style === */
.product-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(210, 23, 8, 0.25);
    box-shadow: 0 20px 40px rgba(210, 23, 8, 0.08);
}

.product-swatch-header {
    padding: 12px 18px;
    background-color: #faf8f5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-ref-code {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--medium-gray);
    letter-spacing: 1px;
    font-family: var(--font-primary);
}

.product-swatch-palette {
    display: flex;
    gap: 5px;
}

.product-swatch-palette .palette-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #fafafa;
}

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

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

.product-card .product-info {
    padding: 18px 18px 22px 18px;
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: static;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.product-card .product-info h3 {
    color: var(--dark-bg);
    font-family: var(--font-primary);
    font-size: 1.18rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0px;
    transition: color 0.3s ease;
}

.product-card:hover .product-info h3 {
    color: var(--primary-color);
}

.product-use {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.4;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-explore-text {
    margin-top: 8px;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.product-explore-text i {
    width: auto;
    height: auto;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--primary-color);
    font-size: 0.75rem;
    margin: 0;
    transition: transform 0.3s ease;
}

.product-card:hover .product-explore-text i {
    transform: translateX(4px);
    border-color: transparent;
    background: transparent;
}

/* ===================================
   MOVING TEXT TICKER SECTION
   =================================== */
.moving-text-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.moving-text-container {
    width: 100%;
    background-color: var(--black);
    padding: 1.25rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
}

.moving-text-track {
    display: flex;
    white-space: nowrap;
    animation: moveText 30s linear infinite;
    gap: 3rem;
}

.moving-text-track span {
    font-size: 1.05rem;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}

.moving-text-track span::after {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
}

@keyframes moveText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}



/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

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

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.2rem;
    margin-top: 4rem;
}

.why-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3.5rem 2.8rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.why-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.03;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.why-card-glow.shade-teal {
    background: #008080;
}

.why-card-glow.shade-magenta {
    background: #e4007f;
}

.why-card-glow.shade-yellow {
    background: #e5a823;
}

.why-card:hover .why-card-glow {
    opacity: 0.12;
    transform: scale(1.2);
}

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

.why-card:hover.card-teal {
    border-color: rgba(0, 128, 128, 0.25);
}

.why-card:hover.card-magenta {
    border-color: rgba(228, 0, 127, 0.25);
}

.why-card:hover.card-yellow {
    border-color: rgba(229, 168, 35, 0.25);
}

/* Card Header Calibration Details */
.why-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.why-spec-code {
    font-size: 0.72rem;
    font-weight: 700;
    font-family: monospace;
    color: #888888;
    background: rgba(0, 0, 0, 0.03);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.color-calibration-strip {
    display: flex;
    gap: 4px;
}

.color-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
}

/* Color Dot Shades */
.card-teal .color-dot.block-100 {
    background: #008080;
}

.card-teal .color-dot.block-75 {
    background: rgba(0, 128, 128, 0.75);
}

.card-teal .color-dot.block-50 {
    background: rgba(0, 128, 128, 0.5);
}

.card-teal .color-dot.block-25 {
    background: rgba(0, 128, 128, 0.25);
}

.card-magenta .color-dot.block-100 {
    background: #e4007f;
}

.card-magenta .color-dot.block-75 {
    background: rgba(228, 0, 127, 0.75);
}

.card-magenta .color-dot.block-50 {
    background: rgba(228, 0, 127, 0.5);
}

.card-magenta .color-dot.block-25 {
    background: rgba(228, 0, 127, 0.25);
}

.card-yellow .color-dot.block-100 {
    background: #e5a823;
}

.card-yellow .color-dot.block-75 {
    background: rgba(229, 168, 35, 0.75);
}

.card-yellow .color-dot.block-50 {
    background: rgba(229, 168, 35, 0.5);
}

.card-yellow .color-dot.block-25 {
    background: rgba(229, 168, 35, 0.25);
}

/* Icon Wrapper */
.why-icon-wrapper {
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.card-teal .why-icon-wrapper {
    color: #008080;
}

.card-magenta .why-icon-wrapper {
    color: #e4007f;
}

.card-yellow .why-icon-wrapper {
    color: #e5a823;
}

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

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    line-height: 1.35;
}

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




/* ===================================
   MOVING TEXT SECTION
   =================================== */

.moving-text-section {
    padding: 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.moving-text-wrapper {
    padding: 0;
    margin: 0;
}

.tm-marquee-parent {
    overflow: hidden;
    width: 100%;
    padding: 25px 0;
}

.tm-marquee-repeater {
    position: relative;
    --tm-marquee-animation-duration: 40s;
    --gap: 0px;
    display: flex;
    user-select: none;
    gap: var(--gap);
}

.tm-marquee-repeater .tm-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--tm-marquee-animation-duration) linear infinite;
}

.tm-marquee-repeater .text {
    position: relative;
    color: var(--white);
    font-size: 24px;
    line-height: 1.3;
    padding: 0 30px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 600;
    font-family: var(--font-primary);
    gap: 15px;
}

.tm-marquee-repeater .text i {
    font-size: 20px;
    color: var(--white);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-wrapper {
    position: relative;
}

.testimonials-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 0;
    align-items: stretch;
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04), 0 0 2px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.testimonial-visual-col {
    position: relative;
    padding: 3.5rem 2.5rem 3.5rem 4rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Color Specimen Sidebar Strip */
.swatch-spectral-strip {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 14px;
    height: 100%;
}

.swatch-spectral-strip.shade-teal {
    background: linear-gradient(180deg, #008080 0%, #20b2aa 100%);
}

.swatch-spectral-strip.shade-orange {
    background: linear-gradient(180deg, #ff8c00 0%, #ffa500 100%);
}

.swatch-spectral-strip.shade-green {
    background: linear-gradient(180deg, #2e8b57 0%, #3cb371 100%);
}

.quote-icon-box {
    margin-bottom: 2rem;
    font-size: 3.5rem;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.85;
}

/* Star Rating */
.star-rating-box {
    position: relative;
    z-index: 1;
}

.star-rating-box .star-rating {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 0.5rem;
    display: flex;
}

.star-rating-box .star-rating i {
    font-size: 16px;
    color: var(--primary-color);
}

.rating-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Right Content Col */
.testimonial-content-col {
    padding: 3.5rem 4rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-text {
    font-family: var(--font-secondary);
    font-size: clamp(1.15rem, 1.9vw, 1.45rem);
    line-height: 1.6;
    color: #333333;
    font-style: italic;
    margin-bottom: 2.2rem;
    position: relative;
}

/* Author Details Grid */
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    border-top: none;
    padding-top: 0;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
    font-family: var(--font-primary);
}

.author-position {
    font-size: 0.88rem;
    color: #666666;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    margin: 0;
}

.company-name {
    color: var(--primary-color);
    font-weight: 700;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--black);
    width: 16px;
    height: 16px;
}

.slider-dots .dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}



.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: 2px solid var(--primary-color);
}

.cta-btn:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-btn span.arrow {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.cta-btn:hover span.arrow {
    transform: translateX(5px);
}

.cta-btn.cta-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.cta-btn-outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* === Modern Minimalist Footer Styling === */
.modern-footer {
    background-color: #000000;
    color: var(--white);
    padding: 80px 0 30px;
    font-family: var(--font-primary);
    overflow: hidden;
}

.modern-footer a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Top Segment */
.footer-top-segment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-pill {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-pill:hover {
    background-color: var(--white);
    color: #000000 !important;
    border-color: var(--white);
}

/* Middle Segment */
.footer-middle-segment {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-statement-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-large-statement {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1.5px;
    color: var(--white);
    max-width: 500px;
}

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

.footer-social-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social-row a:hover {
    background-color: var(--white);
    color: #000000;
    border-color: var(--white);
}

/* Info Grid */
.footer-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.info-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666666;
    font-weight: 700;
}

.info-text {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.info-text a {
    color: rgba(255, 255, 255, 0.8);
}

/* Giant Watermark */
.footer-watermark-row {
    margin: 3rem 0 1.5rem;
    user-select: none;
    pointer-events: none;
}

.footer-giant-watermark {
    font-size: clamp(3rem, 14vw, 12.5rem);
    font-weight: 900;
    text-align: center;
    color: #121212;
    letter-spacing: 0.05em;
    line-height: 0.8;
    margin: 0;
    font-family: var(--font-primary);
}

/* Bottom Segment */
.footer-bottom-segment {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.82rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
}

.link-bullet {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.footer-credit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credit a {
    color: var(--primary-color) !important;
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--white) !important;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .footer-top-segment {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-middle-segment {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .modern-footer {
        padding: 50px 0 20px;
    }

    .footer-top-segment {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 2rem;
    }

    .footer-pill-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        width: 100%;
    }

    .footer-pill {
        text-align: center;
        padding: 6px 12px;
        font-size: 0.78rem;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .footer-bottom-segment {
        flex-direction: column-reverse;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .link-bullet {
        display: none;
    }
}

/* Footer Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* REVEAL ON SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* --- CONTACT PAGE CSS --- */
.page-hero {
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-image: url('new-assets/banner/banner3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 200px 0 120px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(17, 17, 17, 0.80) 50%, rgba(10, 10, 10, 0.9) 100%),
        radial-gradient(circle at 20% 30%, rgba(255, 167, 38, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 167, 38, 0.15) 0%, transparent 50%);
    z-index: 0;
}

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

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
}

.contact-wrapper {
    margin-top: 3rem;
}

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

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3.5rem 2.25rem 2.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

div.contact-info-card {
    cursor: default;
}

.cic-stripe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 7px;
}

.swatch-red {
    background: #d21708;
}

.swatch-teal {
    background: #2a9d8f;
}

.swatch-gold {
    background: #e5a823;
}

.swatch-green {
    background: #2e7d32;
}

/* Presence card (Green) colors & hovers */
.contact-info-card[data-color="green"] .cic-icon-wrap {
    color: #2e7d32;
    border-color: rgba(46, 125, 50, 0.2);
    background: rgba(46, 125, 50, 0.04);
}

.contact-info-card[data-color="green"]:hover {
    transform: translateY(-8px);
    border-color: #2e7d32;
    box-shadow: 0 20px 40px rgba(46, 125, 50, 0.12);
}

.contact-info-card[data-color="green"]:hover .cic-icon-wrap {
    background: #2e7d32;
    color: var(--white);
    border-color: #2e7d32;
}

/* Location card colors & hovers */
.contact-info-card[data-color="red"] .cic-icon-wrap {
    color: #d21708;
    border-color: rgba(210, 23, 8, 0.2);
    background: rgba(210, 23, 8, 0.04);
}

.contact-info-card[data-color="red"]:hover {
    transform: translateY(-8px);
    border-color: #d21708;
    box-shadow: 0 20px 40px rgba(210, 23, 8, 0.12);
}

.contact-info-card[data-color="red"]:hover .cic-icon-wrap {
    background: #d21708;
    color: var(--white);
    border-color: #d21708;
}

.contact-info-card[data-color="red"]:hover .cic-action {
    color: #d21708;
}

/* Phone card colors & hovers */
.contact-info-card[data-color="teal"] .cic-icon-wrap {
    color: #2a9d8f;
    border-color: rgba(42, 157, 143, 0.2);
    background: rgba(42, 157, 143, 0.04);
}

.contact-info-card[data-color="teal"]:hover {
    transform: translateY(-8px);
    border-color: #2a9d8f;
    box-shadow: 0 20px 40px rgba(42, 157, 143, 0.12);
}

.contact-info-card[data-color="teal"]:hover .cic-icon-wrap {
    background: #2a9d8f;
    color: var(--white);
    border-color: #2a9d8f;
}

.contact-info-card[data-color="teal"]:hover .cic-action {
    color: #2a9d8f;
}

/* Email card colors & hovers */
.contact-info-card[data-color="gold"] .cic-icon-wrap {
    color: #e5a823;
    border-color: rgba(229, 168, 35, 0.2);
    background: rgba(229, 168, 35, 0.04);
}

.contact-info-card[data-color="gold"]:hover {
    transform: translateY(-8px);
    border-color: #e5a823;
    box-shadow: 0 20px 40px rgba(229, 168, 35, 0.12);
}

.contact-info-card[data-color="gold"]:hover .cic-icon-wrap {
    background: #e5a823;
    color: var(--white);
    border-color: #e5a823;
}

.contact-info-card[data-color="gold"]:hover .cic-action {
    color: #e5a823;
}

.cic-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    flex-shrink: 0;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.cic-label {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
    z-index: 2;
}

.cic-value {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
    z-index: 2;
}

.cic-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 1.2rem;
    color: var(--medium-gray);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transition: gap 0.25s ease, color 0.25s ease;
    z-index: 2;
    width: 100%;
}

.contact-info-card:hover .cic-action {
    gap: 12px;
}


.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.contact-form-header h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.contact-form-header p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: #fafafa;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(210, 23, 8, 0.1);
    background: var(--white);
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group.error .error-message {
    display: block;
}

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

.form-actions {
    margin-top: 1rem;
}

.btn-submit {
    /* width: 100%; */
    padding: 1.25rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(210, 23, 8, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(210, 23, 8, 0.4);
    /* background: var(--black); */
    color: var(--white);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-loader {
    display: none;
}

.btn-submit.loading .btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    display: none;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.form-message.show {
    display: flex;
}

.form-message i {
    font-size: 2rem;
    flex-shrink: 0;
}

.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.error-message-box {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.form-message-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
}

.form-message-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --- UTILITY & CUSTOM CLASSES --- */
.mt-15 {
    margin-top: 15px;
}

.align-start {
    align-self: flex-start;
}

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

.mx-auto {
    margin: 0 auto;
}

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

.mb-3rem {
    margin-bottom: 3rem;
}

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

.rounded-15 {
    border-radius: 15px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.no-border {
    border: 0;
}

.contact-desc-text {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--medium-gray);
}

.contact-map-desc {
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--dark-gray);
}

.bg-banner-1 {
    background-image: url('new-assets/banner/banner1.webp');
}

.bg-banner-2 {
    background-image: url('new-assets/banner/banner2.avif');
}

.bg-banner-3 {
    background-image: url('new-assets/banner/banner3.webp');
}

.bg-banner-4 {
    background-image: url('new-assets/banner/banner4.webp');
}



.feature-list-ul {
    margin-top: 1rem;
    list-style: none;
    padding-left: 0;
}

.feature-list-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 2.5rem;
    gap: 1.2rem;
    list-style: none;
    padding: 0px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 500;
    gap: 0.75rem;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

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

.shadow-md {
    box-shadow: var(--shadow-md);
}

.product-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.product-chip {
    padding: 14px 14px;
    background-color: #f4fde6;
    /* slight tint of primary */
    color: var(--dark-gray);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.mt-15 {
    margin-top: 15px;
}

/* PREMIUM PRODUCT IMAGE SHOWCASE */
.product-image-showcase {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.product-image-showcase img.product-showcase-img {
    width: 100%;
    /* height: 600px; */
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-image-showcase:hover img.product-showcase-img {
    transform: scale(1.05);
}

.product-thumbs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
}

.product-thumb-img {
    width: 100%;
    height: 75px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-thumb-img:hover {
    border-color: rgba(210, 23, 8, 0.4);
    transform: translateY(-2px);
}

.product-thumb-img.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.about-intro-highlight {
    margin-top: 15px;
    margin-bottom: -5px;
    font-weight: 600;
    color: var(--black);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    display: block;
    border: none;
}

.map-actions {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===================================
   FEATURE STRIP (TRUST BAR)
   =================================== */
.feature-strip {
    background-color: var(--primary-light);
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-strip-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.feature-item-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0.5rem;
}

.feature-strip-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--dark-gray);
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature-item-col:hover .feature-strip-icon {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.feature-strip-title {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--black);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    font-family: var(--font-primary);
}

.feature-strip-desc {
    font-size: 0.85rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
    max-width: 250px;
}


/* LIGHTBOX MODAL */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.lightbox.active {
    display: flex;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10002;
}

.lightbox-counter {
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
}

.lightbox-close {
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-body {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: calc(100% - 100px);
    padding-top: 60px;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    user-select: none;
    padding: 20px;
    z-index: 10001;
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-thumbnails-container {
    height: 100px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    max-width: 90%;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: #444 #111;
}

.lightbox-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.lightbox-thumbnails::-webkit-scrollbar-track {
    background: #111;
}

.lightbox-thumbnails::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

.lightbox-thumb {
    height: 60px;
    width: 80px;
    min-width: 80px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.3s;
    border: 2px solid transparent;
    border-radius: 4px;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.lightbox-thumb:hover {
    opacity: 1;
}



/* RESPONSIVE */
@media (max-width: 1024px) {

    .top-bar-presence,
    .top-bar-presence+.top-bar-divider {
        display: none;
    }


    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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



    .about-visual {
        order: -1;
    }



    .trust-strip-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
        border: none;
        padding: 2rem 1rem;
    }

    .trust-item {
        border-right: none;
        min-width: 240px;
        justify-content: flex-start;
        padding-left: 10%;
    }

    .mv-grid {
        gap: 2rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .objectives-wrapper {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3.5rem 2.5rem;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .plant-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }



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

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .moving-text-track span {
        font-size: 0.95rem;
    }



    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }



    .feature-strip-grid {
        flex-wrap: wrap;
        gap: 2.5rem 1rem;
    }

    .feature-item-col {
        flex: 1 1 40%;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .objectives-cards-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .plant-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .page-hero {
        min-height: 400px;
        padding: 160px 0px 90px;
        background-attachment: scroll;
    }

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

    .page-hero-title {
        font-size: 3rem;
        margin-bottom: 1.75rem;
    }



    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .hero-enterprise-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-enterprise-content {
        flex: none;
        width: 100%;
        padding-right: 0;
    }

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

    .hero-metrics {
        justify-content: center;
        width: 100%;
        margin-top: 2.5rem;
        gap: 30px;
    }

    .hero-enterprise-visual {
        flex: none;
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2rem;
        padding: 20px 0;
    }





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

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .why-card {
        padding: 2.5rem 2rem;
    }




    .tm-marquee-parent {
        padding: 15px 0;
    }

    .tm-marquee-repeater .text {
        font-size: 18px;
        padding: 0 20px;
    }

    .testimonial-grid-layout {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .testimonial-visual-col {
        padding: 2.8rem 2.2rem 1.8rem 2.8rem;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .swatch-spectral-strip {
        width: 100%;
        height: 10px;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
    }

    .testimonial-content-col {
        padding: 2.2rem 2.8rem 2.8rem 2.8rem;
    }



    .desktop-only {
        display: none !important;
    }

    .top-bar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .navbar.scrolled {
        top: 0;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem 2rem;
        box-shadow: 0 20px 80px rgba(210, 23, 8, 0.15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 30px;
        z-index: 999;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(210, 23, 8, 0.08);
        width: 100%;
        max-width: 320px;
    }

    .mobile-contact-item {
        display: flex;
        align-items: center;
        gap: 14px;
        color: var(--dark-gray);
        font-size: 0.9rem;
    }

    .mobile-contact-item a {
        color: var(--dark-gray);
        font-weight: 500;
        transition: var(--transition-fast);
    }

    .mobile-contact-item a:hover {
        color: var(--primary-color);
    }

    .mobile-contact-item i {
        color: var(--primary-color);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(147, 52, 37, 0.1);
        border-radius: 50%;
        font-size: 0.85rem;
    }

    .nav-item {
        width: 100%;
        max-width: 320px;
        text-align: center;
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 8px 0;
        font-size: 1.2rem;
        color: var(--primary-dark);
        letter-spacing: 3px;
        transition: all 0.3s ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .nav-link.active::after,
    .nav-link:hover::after {
        width: 50px;
    }

    .nav-link.active,
    .nav-link:hover {
        color: var(--primary-color);
        background: transparent;
        box-shadow: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        background: rgba(210, 23, 8, 0.1);
    }

    .menu-toggle.active span {
        background: var(--primary-color);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .logo-main {
        font-size: 1.7rem;
    }

    .logo-tagline {
        font-size: 0.95rem;
        letter-spacing: 4px;
    }

    .logo-img {
        height: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .dual-column {
        grid-template-columns: 1fr;
    }

    .product-slide img {
        height: 400px;
        min-height: 400px;
    }
}

@media (max-width: 480px) {

    .hero-image-layers {
        height: 380px;
        max-width: 320px;
    }

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

    .hero-enterprise {
        padding: 60px 0 40px;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 2rem;
        padding-top: 2rem;
    }

    .metric-item {
        align-items: center;
    }

    .hero-enterprise-visual {
        height: auto;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0;
    }

    .hero-enterprise-visual::before {
        display: block;
        content: '';
        position: absolute;
        top: 0%;
        left: calc(50% - 118px);
        width: 80%;
        max-width: 320px;
        aspect-ratio: 1 / 1;
        border-radius: 15px;
    }

    .hero-slider-container {
        width: 90%;
        max-width: 350px;
        aspect-ratio: 1 / 1;
        border-radius: 15px;
        background-color: #ffffff;
    }

    .hero-slide,
    .hero-slide img,
    .hero-slider-wrapper {
        border-radius: 15px;
        background-color: #ffffff;
    }

    .hero-enterprise-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        align-items: flex-start;
    }

    .hero-enterprise-actions a:not(.hero-btn-more) {
        width: 100%;
        text-align: left;
        padding: 15px 0;
    }

    .hero-enterprise-actions .hero-btn-more {
        width: fit-content !important;
        display: inline-flex !important;
        justify-content: center;
        padding: 6px 6px 6px 20px !important;
        margin: 0;
    }



    .client-logo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-thumbs-grid {
        gap: 0.5rem;
    }

    .product-thumb-img {
        height: 55px;
    }

}

/* ===================================
   404 ERROR PAGE
   =================================== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 120px;
}

.error-code {
    font-size: clamp(6rem, 15vw, 10rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0;
    opacity: 0.15;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    font-family: var(--font-primary);
}

.error-content {
    position: relative;
    z-index: 1;
}

.error-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}

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

.container-narrow {
    max-width: 800px;
}

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

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

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

.error-actions .cta-btn.cta-btn-outline {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   WHATSAPP FLOAT BUTTON
   =================================== */

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

.whatsapp-float:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
}

.whatsapp-float i {
    text-decoration: none;
    color: white;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */

.scroll-top {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(127, 183, 46, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    background: var(--gradient-primary);
    box-shadow: 0 6px 20px rgba(210, 23, 8, 0.4);
}

.scroll-top i {
    color: white;
}

/* ===================================
   FACILITIES SHOWCASE SECTION
   =================================== */
.facilities-showcase {
    position: relative;
    padding: 100px 0;
    background: #fafafa;
    overflow: hidden;
}

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

.facility-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 3.5rem 2.2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.facility-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.12);
}

.facility-color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.facility-color-bar.bar-teal {
    background: linear-gradient(90deg, #008080, #20b2aa);
}

.facility-color-bar.bar-magenta {
    background: linear-gradient(90deg, #e4007f, #ff69b4);
}

.facility-color-bar.bar-yellow {
    background: linear-gradient(90deg, #e5a823, #ffa500);
}

.facility-color-bar.bar-green {
    background: linear-gradient(90deg, #2e8b57, #3cb371);
}

.facility-icon-new {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.facility-card-new:hover .facility-icon-new {
    background: var(--black);
    color: var(--white);
    transform: scale(1.08);
}

.facility-card-new h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-primary);
}

.facility-card-new p {
    font-size: 0.92rem;
    color: var(--medium-gray);
    line-height: 1.65;
    margin: 0;
}

/* Responsive Overrides for Facilities */
@media (max-width: 1024px) {
    .facility-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .facility-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* DARK SEPARATOR */
.dark-separator {
    width: 100%;
    height: 5px;
    background-color: var(--primary-dark);
    /* border-bottom: 2px solid var(--secondary-color); */
}


/* ===================================
   PRODUCT DETAIL SECTIONS
   =================================== */

.product-detail-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.product-detail-alt {
    background: var(--off-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.product-detail-header {
    max-width: 1100px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
}

.product-detail-header .product-number {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(210, 23, 8, 0.08);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: var(--font-primary);
}

.product-detail-header .product-detail-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.product-detail-header .product-detail-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.product-detail-header .product-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.product-detail-header .product-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.product-detail-reverse {
    direction: rtl;
}

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

.product-detail-image {
    position: relative;
    padding: 15px;
}

.product-detail-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
    transition: transform 0.4s ease;
}

.product-detail-image:hover::before {
    transform: translate(5px, 5px);
}

.product-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(210, 23, 8, 0.25);
    transition: transform 0.4s ease;
    z-index: 1;
    aspect-ratio: 1 / 1;
}

.product-image-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(210, 23, 8, 0.2);
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-image-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(210, 23, 8, 0.95) 0%, rgba(127, 183, 46, 0.95) 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(210, 23, 8, 0.3);
    backdrop-filter: blur(10px);
    z-index: 2;
}

.product-image-badge i {
    font-size: 1rem;
}

.product-detail-content {
    position: relative;
}

.product-number {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(210, 23, 8, 0.08);
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 0;
    font-family: var(--font-secondary);
}

.product-detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.product-detail-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.product-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.spec-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    border: 2px solid rgba(210, 23, 8, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.spec-item:hover {
    border-color: rgba(210, 23, 8, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(210, 23, 8, 0.15);
}

.spec-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(210, 23, 8, 0.3);
}

.spec-content {
    text-align: left;
}

.spec-content h4 {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.spec-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.product-benefits {
    margin-bottom: 2.5rem;
}

.product-benefits h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

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

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 0.25rem 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.benefits-list li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.product-uses {
    margin-bottom: 2.5rem;
}

.product-uses h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.uses-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.use-tag {
    background: linear-gradient(135deg, rgba(210, 23, 8, 0.05) 0%, rgba(127, 183, 46, 0.05) 100%);
    color: var(--text-color);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid rgba(210, 23, 8, 0.15);
    transition: all 0.3s ease;
}

.use-tag:hover {
    transform: translateY(-2px);
}

.product-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 16px 38px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(210, 23, 8, 0.25);
}

.product-cta-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(210, 23, 8, 0.4);
    color: var(--white);
}

.product-cta-btn i {
    transition: transform 0.3s ease;
}

.product-cta-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .product-detail-wrapper {
        gap: 3rem;
    }

    .product-detail-header .product-detail-title {
        font-size: 2.5rem;
    }

    .product-detail-title {
        font-size: 2.5rem;
    }
}

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

    .product-detail-reverse {
        direction: ltr;
    }

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

    .product-detail-header .product-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-image-container img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 4rem 0;
    }

    .product-detail-header {
        margin-bottom: 3rem;
    }

    .product-detail-header .product-number {
        font-size: 5rem;
        top: -2.5rem;
    }

    .product-number {
        font-size: 6rem;
        top: -1.5rem;
    }

    .product-detail-header .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-header .product-detail-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .product-detail-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-detail-header .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===================================
   NEW MODERN ABOUT INTRO VISUAL
   =================================== */
.about-visual-new {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-grid-pattern {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
    z-index: 0;
}

.about-deco-element {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.deco-dot-1 {
    bottom: -30px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.3;
}

.deco-circle-1 {
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border: 20px solid var(--primary-light);
    opacity: 0.5;
}

.about-image-container-new {
    position: relative;
    width: 85%;
    height: 85%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
    background: var(--off-white);
    z-index: 2;
    transition: all 0.5s ease;
}

.about-image-container-new:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1.02);
}

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

.about-floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-floating-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(210, 23, 8, 0.15);
}

.about-floating-card .card-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.experience-card {
    top: 15%;
    left: -10%;
}

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

.stock-card {
    bottom: 15%;
    right: -10%;
}

.stock-card .card-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #689823 100%);
}

.about-floating-card .card-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
    line-height: 1.2;
}

.about-floating-card .card-info p {
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .about-visual-new {
        margin-top: 4rem;
    }

    .mission-vision-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-visual-new {
        height: 420px;
    }

    .experience-card {
        left: 0;
        top: 5%;
    }

    .stock-card {
        right: 0;
        bottom: 5%;
    }

    .about-image-container-new {
        width: 75%;
        height: 75%;
    }
}

/* ===================================
   PREMIUM TRUST SECTION (SHUBHLABH SAREES STYLE)
   =================================== */
.premium-trust-section {
    background-color: var(--primary-dark);
    padding: 60px 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.premium-trust-card {
    padding: 1.5rem;
    background: transparent;
    border: none;
    position: relative;
    transition: all 0.3s ease;
}

/* Partition line */
.premium-trust-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.2);
}

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

.trust-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.trust-title {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.trust-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .premium-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
    }

    .premium-trust-card:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .premium-trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem 0;
    }

    .premium-trust-card::after {
        display: none;
    }
}

/* ===================================
   PRODUCT RANGE GRID FOR ABOUT PAGE
   =================================== */
.product-range-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem 2rem !important;
}

.product-range-grid li {
    padding-left: 2rem !important;
}

.product-range-grid a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-range-grid a:hover {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .product-range-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
}

/* ===================================
   CREATIVE FULL-SCREEN SHOWCASE SLIDER
   =================================== */
.fullscreen-showcase-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #111111;
}

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

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.showcase-static-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 5;
}

.showcase-slide-content {
    max-width: 900px;
    width: 90%;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    pointer-events: auto;
}

.showcase-subtitle {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 20px;
}

.showcase-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 40px;
}

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

.showcase-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.showcase-btn-solid {
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: 8px 8px 8px 24px !important;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: none !important;
    font-size: 0.95rem;
    letter-spacing: 0.5px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.showcase-btn-solid .showcase-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.showcase-btn-solid .showcase-icon-circle i {
    font-size: 0.85rem;
}

.showcase-btn-solid:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff;
}

.showcase-btn-solid:hover .showcase-icon-circle {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.showcase-btn-outline {
    display: inline-flex !important;
    align-items: center;
    gap: 15px;
    background-color: transparent;
    color: #ffffff !important;
    padding: 8px 8px 8px 24px !important;
    border-radius: 50px;
    border: 2px solid #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: none !important;
    font-size: 0.95rem;
    letter-spacing: 0.5px !important;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.showcase-btn-outline .showcase-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: transparent;
    border-radius: 50%;
    color: var(--primary-color);
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.showcase-btn-outline .showcase-icon-circle i {
    font-size: 0.85rem;
    color: #ffffff;
}

.showcase-btn-outline:hover {
    background-color: #ffffff !important;
    color: #111111 !important;
    border-color: #ffffff;
}

.showcase-btn-outline:hover .showcase-icon-circle {
    background-color: transparent;
    color: #111111;
    border-color: #111111;
}

.showcase-btn-outline:hover .showcase-icon-circle i {
    color: #111111;
}

/* Controls */
.showcase-prev-btn,
.showcase-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.showcase-prev-btn:hover,
.showcase-next-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.showcase-prev-btn {
    left: 40px;
}

.showcase-next-btn {
    right: 40px;
}

@media (max-width: 768px) {

    .showcase-prev-btn,
    .showcase-next-btn {
        display: none !important;
    }

    .showcase-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .showcase-btn-solid,
    .showcase-btn-outline {
        display: inline-flex !important;
        justify-content: space-between;
        align-items: center !important;
        font-size: 0.9rem !important;
        box-sizing: border-box;
    }

    .showcase-btn-solid .showcase-icon-circle,
    .showcase-btn-outline .showcase-icon-circle {
        width: 28px;
        height: 28px;
    }
}

/* Dots */
.showcase-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

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

.showcase-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.3);
}

/* === Excellence Banner — Modern Minimalist Creative Section === */
.excellence-banner {
    background-color: #121212;
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow representing pigment dispersion */
.excellence-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(210, 23, 8, 0.08) 0%, rgba(228, 0, 127, 0.05) 50%, transparent 100%);
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.excellence-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.excellence-statement {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.excellence-title {
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--white);
}

.excellence-title .text-highlight {
    background: linear-gradient(90deg, #D21708 0%, #E4007F 30%, #E5A823 60%, #005C8A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.excellence-title .text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.excellence-lead {
    font-size: 1.15rem;
    color: #a0a0a0;
    line-height: 1.6;
    max-width: 600px;
}

.excellence-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 3rem;
}

.excellence-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.excellence-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--white) 30%, rgba(255, 255, 255, 0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.excellence-item:nth-child(1) .excellence-num {
    background: linear-gradient(135deg, #D21708, #E4007F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.excellence-item:nth-child(2) .excellence-num {
    background: linear-gradient(135deg, #E5A823, #005C8A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.excellence-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888888;
    font-weight: 600;
}

/* Responsive constraints */
@media (max-width: 991px) {
    .excellence-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .excellence-details {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 3rem;
        flex-direction: row;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .excellence-details {
        flex-direction: column;
        gap: 2rem;
    }

    .excellence-banner {
        padding: 70px 0;
    }
}


/* ===================================
   COLOUR PALETTE SECTION (ACCORDION SLIDER)
   =================================== */
.palette-section {
    padding: 100px 0 0 0;
    background: var(--white);
    overflow: hidden;
}

.palette-header-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.palette-header-row .palette-title-col h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.1;
    margin-top: 0.5rem;
}

.palette-desc-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

.palette-desc-col p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}



/* Accordion Slider Container */
.palette-accordion-container {
    width: 100%;
    height: 480px;
    display: flex;
    overflow: hidden;
}

.palette-block {
    flex: 1;
    height: 100%;
    position: relative;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem 2rem;
}

.palette-block:hover {
    flex: 2.2;
}

/* Color definitions */
.palette-block.p-red-210 {
    background-color: #a60c0c;
}

.palette-block.p-yellow-83 {
    background-color: #f29f05;
}

.palette-block.p-mustard {
    background-color: #e5a823;
}

.palette-block.p-violet-23 {
    background-color: #320066;
}

.palette-block.p-red-112 {
    background-color: #f93838;
}

.palette-block.p-orange-64 {
    background-color: #ff7300;
}

.palette-block.p-green-7 {
    background-color: #0c4e1a;
}

/* Overlay details for high readability on colored block */
.palette-block-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%); */
    z-index: 1;
    pointer-events: none;
}

.palette-block-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}



.palette-ci-code {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.75;
}

.palette-block-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    white-space: nowrap;
    color: inherit;
}

.palette-spec-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.palette-block:hover .palette-spec-list {
    max-height: 120px;
    opacity: 1;
}

.palette-spec-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 4px;
}



.spec-val {
    font-weight: 700;
}

@media (max-width: 991px) {
    .palette-header-row {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .palette-header-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3.5rem;
    }

    .palette-accordion-container {
        flex-direction: column;
        height: 650px;
    }

    .palette-block {
        width: 100%;
        height: auto;
        flex: 1;
        padding: 1.2rem 1.8rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        transition: flex 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .palette-block:hover {
        flex: 3.5;
        align-items: flex-end;
        padding: 2rem 1.8rem;
    }

    .palette-block-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .palette-block:hover .palette-block-content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .palette-block-content h3 {
        font-size: 1.25rem;
        margin: 0;
    }

    .palette-spec-list {
        display: none;
        width: 100%;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .palette-block:hover .palette-spec-list {
        display: flex;
        opacity: 1;
        margin-top: 15px;
    }
}


/* ===================================
   CALL TO ACTION (CTA) SECTION
   =================================== */
.section-cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    position: relative;
    background: #0f172a;
    /* Deep Slate Blue */
    border-radius: 24px;
    padding: 6rem 4rem;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Glowing blur blobs */
.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.cta-glow.shade-magenta {
    background: #e4007f;
    top: -150px;
    left: -100px;
}

.cta-glow.shade-teal {
    background: #008080;
    bottom: -150px;
    right: -100px;
}

.cta-card:hover .cta-glow.shade-magenta {
    transform: translate(20px, 20px);
}

.cta-card:hover .cta-glow.shade-teal {
    transform: translate(-20px, -20px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.cta-content .section-subtitle.text-white {
    color: var(--white);
    background-image: none;
    /* remove gradient brush backgrounds on cta */
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 0;
    font-family: var(--font-primary);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

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

    .cta-actions {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .cta-actions .showcase-btn-solid,
    .cta-actions .showcase-btn-outline {
        justify-content: center;
    }
}


/* ============================================================
   ABOUT US V2 — REDESIGNED SECTIONS
   ============================================================ */

/* ---- About Hero V2 ---- */
.about-hero-v2 {
    position: relative;
    background: #0d0d0d;
    /* min-height: 70vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 220px 0 80px;
}

.about-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(159, 36, 36, 0.22) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(42, 157, 143, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.about-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.about-hero-label span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--primary-color);
}

.about-hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.about-hero-title em {
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-sub {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    max-width: 560px;
    margin-bottom: 2.5rem;
}


/* Decorative breadcrumb in hero */
.about-hero-breadcrumb {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-primary);
    font-weight: 500;
    z-index: 2;
}

.about-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.about-hero-breadcrumb a:hover {
    color: var(--white);
}

.about-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.25);
}

/* ---- Who We Are Split Section ---- */
.about-story-section {
    padding: 80px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-story-content {}




.about-story-heading {
    font-family: var(--font-secondary);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-story-heading strong {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story-body {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.about-story-body b {
    color: var(--black);
    font-weight: 700;
}

.about-story-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin: 1.8rem 0 2.2rem;
}

.about-story-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--black);
}

.about-story-features li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Right visual */
.about-story-visual {
    position: relative;
}

.about-story-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 24px 64px rgba(0,0,0,0.15); */
}

.about-story-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.about-story-badge {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    min-width: 160px;
}

.about-story-badge.badge-left {
    bottom: 28px;
    left: -28px;
}

.about-story-badge.badge-right {
    top: 28px;
    right: -28px;
}

.about-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.about-badge-info h4 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
    margin-bottom: 2px;
}

.about-badge-info p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--medium-gray);
    margin: 0;
    text-transform: uppercase;
}

/* ---- Vision & Mission Accordion (Light Section) ---- */
.mv-accordion-section {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.mv-accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.mv-accordion-info {
    max-width: 480px;
}

.mv-accordion-info .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.mv-accordion-intro-text {
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-top: 1rem;
}

.mv-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mv-accordion-item {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.mv-accordion-item.active {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.mv-accordion-item[data-color="red"].active {
    border-color: var(--primary-color);
}

.mv-accordion-item[data-color="teal"].active {
    border-color: #2a9d8f;
}

.mv-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.header-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s;
}

.mv-accordion-item[data-color="red"].active .header-icon {
    background: rgba(159, 36, 36, 0.1);
    color: var(--primary-color);
}

.mv-accordion-item[data-color="teal"].active .header-icon {
    background: rgba(42, 157, 143, 0.1);
    color: #2a9d8f;
}

.header-title {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
    transition: color 0.3s;
}

.mv-accordion-item[data-color="red"].active .header-title {
    color: var(--primary-color);
}

.mv-accordion-item[data-color="teal"].active .header-title {
    color: #2a9d8f;
}

.header-chevron {
    font-size: 0.95rem;
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-accordion-item.active .header-chevron {
    transform: rotate(180deg);
}

.mv-accordion-item[data-color="red"].active .header-chevron {
    color: var(--primary-color);
}

.mv-accordion-item[data-color="teal"].active .header-chevron {
    color: #2a9d8f;
}

.mv-accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-accordion-body {
    padding: 0 1.5rem 1.5rem 4.25rem;
}

.mv-accordion-text {
    font-size: 0.98rem;
    color: var(--dark-gray);
    line-height: 1.7;
    margin: 0;
}


/* Pigment divider strip */
.pigment-divider {
    display: flex;
    gap: 0;
    width: 100%;
    height: 5px;
}

.pigment-divider span {
    flex: 1;
}

.pigment-divider span:nth-child(1) {
    background: #c0392b;
}

.pigment-divider span:nth-child(2) {
    background: #e07b24;
}

.pigment-divider span:nth-child(3) {
    background: #efc421;
}

.pigment-divider span:nth-child(4) {
    background: #2ecc71;
}

.pigment-divider span:nth-child(5) {
    background: #2a9d8f;
}

.pigment-divider span:nth-child(6) {
    background: #3498db;
}

.pigment-divider span:nth-child(7) {
    background: #8e44ad;
}

/* ---- Process Stepper (Pigment Card Flow) ---- */
.process-v2-section {
    padding: 80px 0;
    background: var(--white);
}

.process-v2-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-card-item {
    background: var(--white);
    border: 1px solid #d7dde2;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.process-card-item:hover {
    transform: translateY(-8px);
}

.process-card-item[data-color="red"]:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(159, 36, 36, 0.06);
}

.process-card-item[data-color="teal"]:hover {
    border-color: #2a9d8f;
    box-shadow: 0 20px 40px rgba(42, 157, 143, 0.06);
}

.process-card-item[data-color="gold"]:hover {
    border-color: #efc421;
    box-shadow: 0 20px 40px rgba(239, 196, 33, 0.06);
}

.process-card-item[data-color="blue"]:hover {
    border-color: #3498db;
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.06);
}

.process-card-swatch {
    height: 6px;
    width: 100%;
}

.process-card-swatch.swatch-red {
    background: var(--gradient-primary);
}

.process-card-swatch.swatch-teal {
    background: linear-gradient(90deg, #2a9d8f, #1abc9c);
}

.process-card-swatch.swatch-gold {
    background: linear-gradient(90deg, #efc421, #f4a261);
}

.process-card-swatch.swatch-blue {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.process-card-body {
    padding: 2.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.process-card-watermark {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    transition: color 0.3s;
    user-select: none;
    pointer-events: none;
}

.process-card-item[data-color="red"]:hover .process-card-watermark {
    color: rgba(159, 36, 36, 0.05);
}

.process-card-item[data-color="teal"]:hover .process-card-watermark {
    color: rgba(42, 157, 143, 0.05);
}

.process-card-item[data-color="gold"]:hover .process-card-watermark {
    color: rgba(239, 196, 33, 0.05);
}

.process-card-item[data-color="blue"]:hover .process-card-watermark {
    color: rgba(52, 152, 219, 0.05);
}

.process-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    color: #64748b;
    transition: all 0.3s;
}

.process-card-item[data-color="red"]:hover .process-card-icon {
    background: rgba(159, 36, 36, 0.08);
    color: var(--primary-color);
}

.process-card-item[data-color="teal"]:hover .process-card-icon {
    background: rgba(42, 157, 143, 0.08);
    color: #2a9d8f;
}

.process-card-item[data-color="gold"]:hover .process-card-icon {
    background: rgba(239, 196, 33, 0.08);
    color: #efc421;
}

.process-card-item[data-color="blue"]:hover .process-card-icon {
    background: rgba(52, 152, 219, 0.08);
    color: #3498db;
}

.process-card-title {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.process-card-desc {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}


/* ---- Core Values Grid V2 ---- */
.values-v2-section {
    padding: 80px 0;
    background: #f7f7f7;
}

.values-v2-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.value-v2-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #efefef;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.value-v2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(159, 36, 36, 0.15);
}

.value-card-swatch {
    height: 5px;
    width: 100%;
}

.value-card-swatch.sw-red {
    background: var(--gradient-primary);
}

.value-card-swatch.sw-teal {
    background: linear-gradient(90deg, #2a9d8f, #1abc9c);
}

.value-card-swatch.sw-gold {
    background: linear-gradient(90deg, #efc421, #f4a261);
}

.value-card-swatch.sw-blue {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.value-card-swatch.sw-green {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.value-card-swatch.sw-purple {
    background: linear-gradient(90deg, #8e44ad, #6c3483);
}

.value-card-body {
    padding: 1.8rem;
}

.value-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(159, 36, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

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

.value-card-title {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.6rem;
}

.value-card-desc {
    font-size: 0.88rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* ---- Product Range Infinite Marquee (Dark Theme) ---- */
.about-range-marquee-section {
    background: #0d0d0d;
    padding: 3.5rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.range-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.range-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marqueeInfinite 25s linear infinite;
}

.range-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeInfinite {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.marquee-chip i {
    font-size: 1rem;
    transition: transform 0.3s, color 0.3s;
}

/* Hover color customization based on data-color */
.marquee-chip[data-color="red"]:hover {
    border-color: var(--primary-color);
    color: var(--white);
    background: rgba(159, 36, 36, 0.15);
    box-shadow: 0 8px 24px rgba(159, 36, 36, 0.25);
}

.marquee-chip[data-color="red"] i {
    color: #e07b7b;
}

.marquee-chip[data-color="red"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="orange"]:hover {
    border-color: #e07b24;
    color: var(--white);
    background: rgba(224, 123, 36, 0.15);
    box-shadow: 0 8px 24px rgba(224, 123, 36, 0.25);
}

.marquee-chip[data-color="orange"] i {
    color: #f4a261;
}

.marquee-chip[data-color="orange"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="yellow"]:hover {
    border-color: #efc421;
    color: var(--white);
    background: rgba(239, 196, 33, 0.15);
    box-shadow: 0 8px 24px rgba(239, 196, 33, 0.25);
}

.marquee-chip[data-color="yellow"] i {
    color: #f4d03f;
}

.marquee-chip[data-color="yellow"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="blue"]:hover {
    border-color: #3498db;
    color: var(--white);
    background: rgba(52, 152, 219, 0.15);
    box-shadow: 0 8px 24px rgba(52, 152, 219, 0.25);
}

.marquee-chip[data-color="blue"] i {
    color: #85c1e9;
}

.marquee-chip[data-color="blue"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="purple"]:hover {
    border-color: #8e44ad;
    color: var(--white);
    background: rgba(142, 68, 173, 0.15);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.25);
}

.marquee-chip[data-color="purple"] i {
    color: #bb8fce;
}

.marquee-chip[data-color="purple"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="green"]:hover {
    border-color: #2ecc71;
    color: var(--white);
    background: rgba(46, 204, 113, 0.15);
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.25);
}

.marquee-chip[data-color="green"] i {
    color: #82e0aa;
}

.marquee-chip[data-color="green"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="teal"]:hover {
    border-color: #2a9d8f;
    color: var(--white);
    background: rgba(42, 157, 143, 0.15);
    box-shadow: 0 8px 24px rgba(42, 157, 143, 0.25);
}

.marquee-chip[data-color="teal"] i {
    color: #76d7c4;
}

.marquee-chip[data-color="teal"]:hover i {
    color: var(--white);
}

.marquee-chip[data-color="pink"]:hover {
    border-color: #e84393;
    color: var(--white);
    background: rgba(232, 67, 147, 0.15);
    box-shadow: 0 8px 24px rgba(232, 67, 147, 0.25);
}

.marquee-chip[data-color="pink"] i {
    color: #f1948a;
}

.marquee-chip[data-color="pink"]:hover i {
    color: var(--white);
}

.marquee-chip:hover {
    /* transform: translateY(-3px); */
}

.marquee-chip:hover i {
    transform: scale(1.15);
}





/* ============================================================
   PRODUCTS PAGE V2 — REDESIGNED SECTIONS
   ============================================================ */

/* ---- Products Hero V2 ---- */
.products-hero-v2 {
    position: relative;
    background: #0d0d0d;
    /* min-height: 65vh; */
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 160px 0 80px;
}

.products-hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 80% 40%, rgba(159, 36, 36, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(42, 157, 143, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

/* Animated color bands */
.products-color-bands {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    display: flex;
    overflow: hidden;
}

.products-color-bands span {
    flex: 1;
    animation: bandShift 4s ease-in-out infinite alternate;
}

.products-color-bands span:nth-child(1) {
    background: #c0392b;
    animation-delay: 0s;
}

.products-color-bands span:nth-child(2) {
    background: #e07b24;
    animation-delay: 0.15s;
}

.products-color-bands span:nth-child(3) {
    background: #efc421;
    animation-delay: 0.3s;
}

.products-color-bands span:nth-child(4) {
    background: #2ecc71;
    animation-delay: 0.45s;
}

.products-color-bands span:nth-child(5) {
    background: #2a9d8f;
    animation-delay: 0.6s;
}

.products-color-bands span:nth-child(6) {
    background: #3498db;
    animation-delay: 0.75s;
}

.products-color-bands span:nth-child(7) {
    background: #8e44ad;
    animation-delay: 0.9s;
}

.products-color-bands span:nth-child(8) {
    background: #e84393;
    animation-delay: 1.05s;
}

@keyframes bandShift {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.products-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 50px;
    width: 100%;
}

.products-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.2rem;
}

.products-hero-label span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
}

.products-hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.products-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* Jump Nav Pills */
.product-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.jump-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.jump-pill:hover {
    background: rgba(159, 36, 36, 0.25);
    border-color: var(--primary-color);
    color: var(--white);
}

.jump-pill i {
    font-size: 0.7rem;
}



/* ---- Product Section V2 ---- */
.product-v2-section {
    padding: 80px 0;
    position: relative;
}

.product-v2-section.pv2-light {
    background: var(--white);
}

.product-v2-section.pv2-dark {
    background: #f5f5f5;
}

/* Accent strip per product */
.product-accent-strip {
    height: 3px;
    width: 100%;
    margin-bottom: 60px;
}

/* Accent colors */
.accent-red {
    background: linear-gradient(90deg, #c0392b, #e07b7b, transparent);
}

.accent-orange {
    background: linear-gradient(90deg, #e07b24, #f4a261, transparent);
}

.accent-yellow {
    background: linear-gradient(90deg, #efc421, #f4d03f, transparent);
}

.accent-blue {
    background: linear-gradient(90deg, #3498db, #85c1e9, transparent);
}

.accent-purple {
    background: linear-gradient(90deg, #8e44ad, #bb8fce, transparent);
}

.accent-green {
    background: linear-gradient(90deg, #2ecc71, #82e0aa, transparent);
}

.accent-teal {
    background: linear-gradient(90deg, #2a9d8f, #76d7c4, transparent);
}

.accent-pink {
    background: linear-gradient(90deg, #e84393, #f1948a, transparent);
}

.product-v2-header {
    margin-bottom: 3rem;
    position: relative;
}

.product-v2-num {
    position: absolute;
    right: 0;
    top: -20px;
    font-family: var(--font-secondary);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.product-v2-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    color: white;
}

.pill-red {
    background: var(--gradient-primary);
}

.pill-orange {
    background: linear-gradient(135deg, #e07b24, #f4a261);
}

.pill-yellow {
    background: linear-gradient(135deg, #efc421, #c8a00a);
    color: #1a1a1a !important;
}

.pill-blue {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.pill-purple {
    background: linear-gradient(135deg, #8e44ad, #6c3483);
}

.pill-green {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #1a1a1a !important;
}

.pill-teal {
    background: linear-gradient(135deg, #2a9d8f, #1abc9c);
}

.pill-pink {
    background: linear-gradient(135deg, #e84393, #e91e8c);
}

.product-v2-title {
    font-family: var(--font-secondary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 0.7rem;
}

.product-v2-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-v2-desc {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    max-width: 640px;
    margin-bottom: 2rem;
}

/* Spec Badge Strip */
.spec-badge-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.spec-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid #ebebeb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.25s;
}

.product-v2-section.pv2-dark .spec-badge {
    background: var(--white);
}

.spec-badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(159, 36, 36, 0.1);
    transform: translateY(-2px);
}

.spec-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(159, 36, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.spec-badge-text h5 {
    font-family: var(--font-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin: 0 0 2px;
}

.spec-badge-text p {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

/* Product Content Grid */
.product-v2-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-v2-body.reverse {
    direction: rtl;
}

.product-v2-body.reverse>* {
    direction: ltr;
}

/* Image */
.product-v2-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.product-v2-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-v2-img-wrap:hover img {
    transform: scale(1.04);
}

.product-v2-img-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--black);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-v2-img-badge i {
    color: var(--primary-color);
}

/* Benefits + Uses */
.product-v2-content {}

.product-v2-benefits-title,
.product-v2-uses-title {
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.product-v2-benefits-list {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.product-v2-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--dark-gray);
    line-height: 1.5;
}

.product-v2-benefits-list li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.product-v2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.product-v2-tag {
    padding: 6px 14px;
    background: rgba(159, 36, 36, 0.07);
    border: 1px solid rgba(159, 36, 36, 0.15);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
}




/* ============================================================
   RESPONSIVE — ABOUT & PRODUCTS V2
   ============================================================ */

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

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

    .mv-accordion-info {
        max-width: none;
    }

    .about-story-badge.badge-left {
        left: 0;
    }

    .about-story-badge.badge-right {
        right: 0;
    }

    .mv-glass-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-v2-grid::before {
        display: none;
    }

    .product-v2-body {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-v2-body.reverse {
        direction: ltr;
    }


}

@media (max-width: 768px) {
    .about-hero-v2 {
        padding: 150px 0 60px;
        min-height: auto;
    }

    .about-hero-title {
        font-size: 2.8rem;
    }



    .about-story-section {
        padding: 60px 0;
    }

    .about-story-img-wrap img {
        height: 300px;
    }

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

    .mv-accordion-section {
        padding: 60px 0;
    }

    .process-v2-section {
        padding: 60px 0;
    }

    .process-v2-grid {
        grid-template-columns: 1fr 1fr;
    }

    .values-v2-grid {
        grid-template-columns: 1fr;
    }

    .values-v2-section {
        padding: 60px 0;
    }

    .products-hero-v2 {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .products-hero-title {
        font-size: 2.8rem;
    }

    .product-jump-nav {
        gap: 0.5rem;
    }

    .jump-pill {
        padding: 7px 12px;
        font-size: 0.75rem;
    }

    .spec-badge-strip {
        gap: 0.5rem;
    }

    .product-v2-section {
        padding: 55px 0;
    }

    .product-v2-num {
        font-size: 5rem;
        top: -10px;
    }

    .product-v2-img-wrap img {
        height: 260px;
    }

    .about-range-marquee-section {
        padding: 2.5rem 0;
    }




}

@media (max-width: 480px) {


    .process-v2-grid {
        grid-template-columns: 1fr;
    }

    .product-jump-nav {
        gap: 0.4rem;
    }

    .jump-pill {
        font-size: 0.7rem;
        padding: 6px 10px;
    }
}

/* ---- Trust Strip Section (Home) ---- */
.trust-strip-section {
    background: #f8fafc;
    padding: 2.25rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-strip-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.25s ease;
}

.trust-strip-item:hover {
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.trust-text {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ---- Features Moving Text Section ---- */
.features-marquee-section {
    background: linear-gradient(90deg, #9f2424 0%, #d21708 50%, #701919 100%);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 0;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.features-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    display: flex;
}

.features-marquee-track {
    display: flex;
    gap: 2.25rem;
    align-items: center;
    width: max-content;
    animation: featuresMarqueeScroll 40s linear infinite;
}

.features-marquee-track span {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 11px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
}

.features-marquee-track i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

@keyframes featuresMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .trust-strip-grid {
        justify-content: center;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .trust-strip-section {
        padding: 1.75rem 0;
    }

    .trust-strip-grid {
        gap: 1.75rem;
    }

    .features-marquee-section {
        padding: 1rem 0;
        margin: 0;
    }

    .features-marquee-track span {
        font-size: 0.95rem;
        padding: 8px 18px;
        border-radius: 8px;
    }
}