/*
Theme Name: Aero-Sculpt Theme
Theme URI: https://maksonsoles.com
Author: Antigravity AI & Makson Soles
Author URI: https://maksonsoles.com
Description: Custom premium WordPress theme for Makson Soles — cinematic dark showroom aesthetic with glassmorphism, GSAP animations, and Elementor compatibility.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
License URI: https://maksonsoles.com
Text Domain: aero-sculpt-theme
Tags: dark, premium, elementor, responsive, custom
*/

/* ══════════════════════════════════════════════════════
   0. DESIGN TOKENS
══════════════════════════════════════════════════════ */
:root {
    /* Brand Palette */
    --brand-red:      #e7352c;
    --brand-red-light:#ff5247;
    --brand-red-glow: rgba(231, 53, 44, 0.08);
    --brand-red-glow-strong: rgba(231, 53, 44, 0.25);

    --gold:           var(--brand-red);
    --gold-light:     var(--brand-red-light);
    --gold-dark:      #b51f18;
    --gold-glow:      var(--brand-red-glow-strong);
    --gold-glow-sm:   var(--brand-red-glow);

    --black:          #F5F0E8; /* Makson Cream */
    --black-deep:     #FAF7F2; /* Makson Off-White */
    --surface-1:      #FAF7F2;
    --surface-2:      #EFEAE0; /* Contrast Cream */
    --surface-3:      #FAF7F2;
    --surface-4:      #EAE3D7;

    --text-primary:   #0D0D0D; /* Makson Black */
    --text-secondary: #4A453C; /* Dark Warm Gray */
    --text-muted:     #8C8273; /* Muted Warm Gray */

    --border:         rgba(231, 53, 44, 0.15);
    --border-subtle:  rgba(13, 13, 13, 0.08);

    /* Glass */
    --glass-bg:        rgba(255, 255, 255, 0.5);
    --glass-bg-hover:  rgba(255, 255, 255, 0.75);
    --glass-border:    rgba(231, 53, 44, 0.22);
    --glass-blur:      20px;

    /* Typography */
    --font-display:   'Montserrat', sans-serif;
    --font-body:      'Montserrat', sans-serif;
    --font-editorial: 'Playfair Display', serif;

    /* Spacing */
    --space-xs:   0.5rem;
    --space-sm:   1rem;
    --space-md:   2rem;
    --space-lg:   4rem;
    --space-xl:   8rem;
    --space-xxl:  12rem;

    /* Layout */
    --container-width:  1500px;
    --header-height:    80px;
    --section-padding:  7rem;
    --section-padding-sm: 4rem;

    /* Border Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-pill: 100px;

    /* Transitions */
    --transition-fast:   0.2s ease;
    --transition-med:    0.4s ease;
    --transition-slow:   0.7s ease;
}

/* ══════════════════════════════════════════════════════
   1. RESET & BASE
══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-color: var(--gold-dark) var(--black);
    scrollbar-width: thin;
    overflow-x: hidden;
    width: 100%;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

body {
    background-color: var(--black);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.site {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ══════════════════════════════════════════════════════
   2. TYPOGRAPHY SYSTEM
══════════════════════════════════════════════════════ */
.label-caps {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.05;
    color: var(--text-primary);
    margin: 0.5rem 0 1rem;
}

.brand-display-sub {
    font-family: var(--font-display);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

.brand-body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.75;
}

.aero-editorial-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-weight: 400;
}

.text-gold { color: var(--gold); }
.section-subtitle { color: var(--text-secondary); margin-top: 0.5rem; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
══════════════════════════════════════════════════════ */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ══════════════════════════════════════════════════════
   4. BUTTON SYSTEM
══════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-med);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-light) 50%, var(--brand-red) 100%);
    background-size: 200% 200%;
    color: #FFFFFF;
    border-color: transparent;
}
.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(231, 53, 44, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-subtle);
}
.btn-ghost:hover {
    background: var(--glass-bg-hover);
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.72rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════
   5. GLASS PANEL
══════════════════════════════════════════════════════ */
.aero-glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-lg);
}

/* ══════════════════════════════════════════════════════
   6. HEADER
══════════════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(245, 240, 232, 0.92); /* Translucent brand cream */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid rgba(13, 13, 13, 0.06);
    transition: background var(--transition-med), border-color var(--transition-med), height var(--transition-med), backdrop-filter var(--transition-med);
}

.site-header.header--scrolled {
    background: rgba(245, 240, 232, 0.97);
    border-bottom: 1px solid rgba(13, 13, 13, 0.12);
    height: 68px;
}

/* ══════════════════════════════════════════════════════
   MOBILE NAV DRAWER
   Lives OUTSIDE <header> in the global stacking context.
   z-index: 1002 = above backdrop (1001) and header (1000).
══════════════════════════════════════════════════════ */

/* Mobile Drawer - only active on mobile/tablet viewports */
@media (max-width: 1024px) {
    .mobile-nav-drawer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 85vw;
        background: var(--black);
        border-right: 1px solid var(--border-subtle);
        z-index: 1002;
        padding: 1.5rem;
        overflow-y: auto;
        overflow-x: hidden;
        /* Hidden by default: off-screen to the left + invisible */
        transform: translateX(-300px);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0s linear 0.38s;
    }

    .mobile-nav-drawer.drawer--open {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
        transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                    visibility 0s linear 0s;
    }
}

/* On desktop, hide drawer completely */
@media (min-width: 1025px) {
    .mobile-nav-drawer {
        display: none !important;
    }
}

/* Close button inside drawer */
.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(231, 53, 44, 0.1) !important;
    border: 1px solid rgba(231, 53, 44, 0.3) !important;
    border-radius: 50%;
    color: #e7352c;
    cursor: pointer;
    flex-shrink: 0;
    align-self: flex-end;
    transition: background var(--transition-fast), transform var(--transition-fast);
    outline: none !important;
    box-shadow: none !important;
}
.mobile-nav-close:hover {
    background: rgba(231, 53, 44, 0.2) !important;
    transform: rotate(90deg);
}

/* Logo inside drawer */
.mobile-nav-brand {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(13, 13, 13, 0.08);
}
.mobile-nav-logo {
    height: 36px;
    width: auto;
    display: block;
    filter: none;
    opacity: 0.9;
}

/* Nav list inside drawer */
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.mobile-nav-link {
    display: block;
    padding: 14px 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(13, 13, 13, 0.06);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}
.mobile-nav-link:hover {
    color: #e7352c;
    padding-left: 16px;
}

/* Sub-menu */
.mobile-nav-item--has-sub .mobile-nav-link--parent {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding-bottom: 6px;
    border-bottom: none;
    cursor: default;
}
.mobile-nav-sub {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-left: 12px;
    border-bottom: 1px solid rgba(13, 13, 13, 0.06);
    padding-bottom: 8px;
    margin-bottom: 0;
}
.mobile-nav-sub-link {
    display: block;
    padding: 9px 8px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    text-decoration: none;
}
.mobile-nav-sub-link:hover {
    color: #e7352c;
    padding-left: 14px;
}

/* CTA at bottom of drawer */
.mobile-nav-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 13, 13, 0.08);
}

.site-header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

/* Logo */
.logo-link, .footer-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.header-logo-img {
    height: 46px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height var(--transition-med);
}
.site-header.header--scrolled .header-logo-img {
    height: 40px;
}

/* Nav */
.main-navigation { flex: 1; display: flex; justify-content: center; }

.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0D0D0D;
    border-radius: var(--radius-pill);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-link:hover,
.nav-link--active {
    color: var(--brand-red);
    background: var(--brand-red-glow);
}

.nav-chevron { transition: transform var(--transition-fast); }

/* Dropdown */
.nav-item--has-dropdown { position: relative; }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: rgba(250, 247, 242, 0.98);
    border: 1px solid rgba(13, 13, 13, 0.08);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.nav-dropdown--open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown--open ~ .nav-link--dropdown-trigger .nav-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-link {
    display: block;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0D0D0D;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-dropdown-link:hover {
    color: var(--brand-red);
    background: var(--brand-red-glow);
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0;
    box-shadow: none !important;
    outline: none !important;
}
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
.menu-toggle--open,
.menu-toggle--open:hover,
.menu-toggle--open:focus,
.menu-toggle--open:active {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none !important;
}
.menu-toggle--open .hamburger-bar {
    background: var(--brand-red);
}
.hamburger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #0D0D0D;
    border-radius: 2px;
    transition: transform var(--transition-med), opacity var(--transition-fast), width var(--transition-med);
    transform-origin: center;
}
.menu-toggle--open .bar-1 { transform: translateY(7px) rotate(45deg); }
.menu-toggle--open .bar-2 { opacity: 0; width: 0; }
.menu-toggle--open .bar-3 { transform: translateY(-7px) rotate(-45deg); }

/* Mobile backdrop — must be ABOVE header (z-index 1000) */
.mobile-nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-med), visibility var(--transition-med);
}
.mobile-nav-backdrop.backdrop--visible {
    opacity: 1;
    visibility: visible;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
}
.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════════
   7. HERO SECTION
══════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Background grid */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(231, 53, 44, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(231, 53, 44, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.orb-1 {
    width: 600px; height: 600px;
    top: -15%; right: -10%;
    background: rgba(231, 53, 44, 0.07);
}
.orb-2 {
    width: 400px; height: 400px;
    bottom: 5%; left: -5%;
    background: rgba(231, 53, 44, 0.04);
}

/* Container */
.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: var(--space-lg) var(--space-md) var(--space-lg) clamp(2rem, 3.5vw, 4rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - var(--header-height));
}

/* Slideshow Background (1920x1080 Landscape) */
.hero-bg-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.hero-bg-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    display: block;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.82) 0%, rgba(8, 8, 8, 0.55) 35%, rgba(8, 8, 8, 0.15) 55%, rgba(8, 8, 8, 0.0) 70%);
    z-index: 3;
    pointer-events: none;
}


/* Hero content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 520px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    background: var(--gold-glow-sm);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.65rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4.8vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: #F5F0E8; /* Makson Creme */
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hero-title .text-gold { color: var(--gold); }

.hero-tagline {
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: #EAE3D7; /* Light warm cream-gray */
    max-width: 460px;
    line-height: 1.5;
}

.hero-description {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    color: rgba(245, 240, 232, 0.75); /* Translucent creme */
    max-width: 440px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}
.hero-content .btn-ghost {
    color: #F5F0E8 !important;
    border-color: rgba(245, 240, 232, 0.35) !important;
}
.hero-content .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--brand-red) !important;
    color: var(--brand-red) !important;
}

/* Trust bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 0.75rem;
    flex-wrap: wrap;
}
.trust-item {
    height: 24px;
    display: flex;
    align-items: center;
    opacity: 0.8;
    transition: opacity var(--transition-med), transform var(--transition-med);
}
.trust-item:hover { opacity: 1; transform: scale(1.05); }
.trust-logo { height: 20px; width: auto; object-fit: contain; }
.trust-divider { width: 1px; height: 18px; background: rgba(245, 240, 232, 0.15); }
.trust-text { font-size: 0.65rem; color: rgba(245, 240, 232, 0.6); }



/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    z-index: 5;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}
.scroll-indicator .label-caps { font-size: 0.58rem; color: rgba(245, 240, 232, 0.6); }

/* ══════════════════════════════════════════════════════
   8. STATS SECTION
══════════════════════════════════════════════════════ */
.stats-section {
    padding: 0 var(--space-md);
    position: relative;
    z-index: 5;
    margin-top: -2rem;
}
.stats-container {
    max-width: var(--container-width);
    margin: 0 auto;
}
.stats-glass-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(231, 53, 44, 0.08);
}

.stat-item {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    position: relative;
    transition: background var(--transition-med);
}
.stat-item:hover { background: var(--glass-bg); }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}
.stat-label { font-size: 0.68rem; letter-spacing: 0.14em; color: var(--text-muted); margin-top: 2px; }

.stat-divider {
    position: absolute;
    right: 0; top: 25%; bottom: 25%;
    width: 1px;
    background: var(--border);
}

/* ══════════════════════════════════════════════════════
   9. PRODUCTS SECTION
══════════════════════════════════════════════════════ */
.products-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}
.products-section .section-container {
    max-width: 1650px;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}
.section-header-text { display: flex; flex-direction: column; gap: 4px; }

/* Products track — responsive centered grid layout */
.products-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    padding: 0 var(--space-md);
    max-width: 100%;
    margin: 0 auto;
    perspective: 1200px;
}

.scroll-hint {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.65rem;
    display: none;
}

/* Product Card */
.product-card {
    position: relative;
    flex: 1 1 260px;
    max-width: 320px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: border-color var(--transition-med);
}
.product-card:hover { border-color: var(--gold); }

.card-rim-light {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 30%, rgba(231, 53, 44, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transition: background var(--transition-med);
}

.product-img-wrapper {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: var(--surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-img {
    width: 88%; height: 88%;
    object-fit: contain;
    transition: transform var(--transition-slow);
}
.product-card:hover .product-img { transform: scale(1.04); }

.product-img-overlay {
    display: none;
}

.product-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}
.product-material-label { font-size: 0.85rem; }
.product-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }

.spec-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-glow-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
}

.card-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    transition: gap var(--transition-fast);
}
.card-cta-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════════════
   10. ABOUT SECTION
══════════════════════════════════════════════════════ */
.about-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--surface-1) 50%, var(--black) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

/* Left */
.about-left { position: relative; }

.about-story-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}
.about-story-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    line-height: 1.1;
    color: var(--text-primary);
}

.about-quote {
    font-family: var(--font-editorial);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
    margin: 0;
}

.about-story-body { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.75; }
.about-story-body strong { color: var(--text-primary); }

.about-gold-bar {
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
    border-radius: 2px;
    width: 80px;
}

.about-bg-deco {
    position: absolute;
    top: -40px; left: -40px;
    width: 200px; height: 200px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transform: rotate(-6deg);
    z-index: 0;
}

/* Right */
.about-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-lead { color: var(--text-secondary); line-height: 1.75; font-size: 0.95rem; }
.about-lead strong { color: var(--text-primary); font-weight: 600; }

/* Leadership */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.leader-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-med), border-color var(--transition-med);
}
.leader-card:hover { transform: translateY(-4px); border-color: var(--gold); }

.leader-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--surface-2);
}
.leader-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--transition-slow); }
.leader-card:hover .leader-img { transform: scale(1.04); }
.leader-img--vinod {
    transform: scale(1.9) translateY(25px);
    transform-origin: 50% 18%;
}
.leader-card:hover .leader-img--vinod {
    transform: scale(1.95) translateY(25px);
}

.leader-info { padding: 1rem 1.25rem; }
.leader-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-primary); }
.leader-role { font-size: 0.65rem; }

/* Value pillars */
.value-pillars { display: flex; gap: 12px; flex-wrap: wrap; }
.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    font-size: 0.66rem;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.value-icon { color: var(--gold); font-size: 0.5rem; }

/* ══════════════════════════════════════════════════════
   11. COLOUR CAPABILITY
══════════════════════════════════════════════════════ */
.colour-section {
    padding: var(--section-padding) 0;
    background: var(--surface-1);
}

.colour-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: 3rem;
}

.colour-copy { display: flex; flex-direction: column; gap: 1.25rem; }
.colour-lead { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.65; }
.colour-body { font-size: 0.9rem; }

.colour-preview-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.colour-banner-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    transition: box-shadow var(--transition-med);
}
.colour-banner-img { width: 100%; height: 100%; object-fit: cover; }
.colour-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
}

.colour-dot-picker {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.colour-dot {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.colour-dot:hover { transform: scale(1.15); }
.colour-dot.active {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.1), 0 6px 20px rgba(0,0,0,0.5);
    transform: scale(1.12);
}
.colour-hint { font-size: 0.62rem; color: var(--text-muted); margin-top: -8px; }

/* ══════════════════════════════════════════════════════
   12. QUALITY SECTION
══════════════════════════════════════════════════════ */
.quality-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}

.quality-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}
.quality-rule { flex: 1; height: 1px; background: var(--border); }

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

.quality-statement { display: flex; flex-direction: column; gap: 1.25rem; }
.quality-lead { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }
.quality-body { font-size: 0.9rem; }
.quality-body strong { color: var(--text-primary); }

.quality-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quality-pillar {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform var(--transition-med), border-color var(--transition-med);
}
.quality-pillar:hover { transform: translateY(-4px); border-color: var(--gold); }

.pillar-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.pillar-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.pillar-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════════
   13. CLIENTS MARQUEE
══════════════════════════════════════════════════════ */
.clients-section {
    padding: var(--section-padding) 0;
    background: var(--surface-1);
    overflow: hidden;
}

.clients-header { text-align: center; margin-bottom: var(--space-lg); }

.clients-marquee-wrapper {
    position: relative;
    overflow: hidden;
}

.marquee-fade {
    position: absolute;
    top: 0; bottom: 0;
    width: 160px;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade-left { left: 0; background: linear-gradient(to right, var(--surface-1), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left, var(--surface-1), transparent); }

.clients-marquee {
    display: flex;
    gap: 0;
    animation: marqueeScroll 30s linear infinite;
    will-change: transform;
}
.clients-marquee:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 1.5rem 2rem;
    flex-shrink: 0;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68px;
    min-width: 170px;
    opacity: 0.95;
    transition: opacity var(--transition-med), transform var(--transition-med);
    cursor: default;
    flex-shrink: 0;
}
.client-logo-item:hover {
    opacity: 1;
    transform: scale(1.08);
}
.client-logo-img {
    max-height: 56px;
    max-width: 170px;
    object-fit: contain;
}

/* ══════════════════════════════════════════════════════
   14. SPECS / BLUEPRINT SECTION
══════════════════════════════════════════════════════ */
.specs-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--surface-1) 100%);
}

.specs-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
}

/* Blueprint viewport */
.blueprint-viewport {
    padding: 2rem;
    position: relative;
    min-height: 520px;
    overflow: hidden;
}
.blueprint-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(231, 53, 44, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(231, 53, 44, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    border-radius: var(--radius-lg);
}
.blueprint-badge {
    display: block;
    margin-bottom: 1.5rem;
    color: var(--gold);
    position: relative;
    z-index: 2;
}

.exploded-sole-diagram {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.exploded-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
    border: 1px solid transparent;
    margin-bottom: 0.4rem;
}

.exploded-layer:hover { background: var(--glass-bg-hover); border-color: var(--border); }
.exploded-layer--active { background: var(--gold-glow-sm); border-color: var(--gold); }

.layer-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 24px;
}

.layer-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 20px;
}
.layer-bar-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}
.layer-bar-marker {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}

.layer-label-block { flex: 1; }
.layer-name { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.layer-desc { font-size: 0.78rem; color: var(--text-muted); }

/* Spec sheets */
.specs-data-panel {
    display: grid;
    grid-template-rows: 1fr;
    position: relative;
}

.spec-sheet {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
}
.spec-sheet.active { display: flex; }

.spec-sheet-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.spec-num { font-size: 1.4rem; }

.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}
.spec-table td { padding: 10px 14px; }
.spec-key {
    font-size: 0.68rem;
    color: var(--text-muted);
    white-space: nowrap;
    width: 40%;
    background: var(--glass-bg);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    border: 1px solid var(--border-subtle);
    border-right: none;
}
.spec-val {
    font-size: 0.88rem;
    color: var(--text-primary);
    background: var(--glass-bg);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    border: 1px solid var(--border-subtle);
    border-left: none;
}

/* ══════════════════════════════════════════════════════
   15. FAQ SECTION
══════════════════════════════════════════════════════ */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--black);
}
.faq-header { text-align: center; margin-bottom: var(--space-lg); }

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-lg);
    align-items: start;
}

.faq-accordion { display: flex; flex-direction: column; gap: 0; }

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 0;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition-fast);
}
.faq-trigger:hover .faq-q { color: var(--gold); }

.faq-q {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    flex: 1;
    transition: color var(--transition-fast);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold);
    transition: background var(--transition-fast), border-color var(--transition-fast);
    position: relative;
}
.faq-item.faq-open .faq-icon { background: var(--gold-glow-sm); border-color: var(--gold); }

.icon-plus, .icon-minus { position: absolute; transition: opacity var(--transition-fast); }
.icon-minus { opacity: 0; }
.faq-item.faq-open .icon-plus { opacity: 0; }
.faq-item.faq-open .icon-minus { opacity: 1; }

.faq-answer {
    overflow: hidden;
}
.faq-a {
    padding: 0 0 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* FAQ side card */
.faq-side-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    top: calc(var(--header-height) + 2rem);
    position: sticky;
}
.faq-side-card h3 { font-size: 1.5rem; line-height: 1.2; }
.faq-side-card .brand-body { font-size: 0.88rem; }

.faq-whatsapp-btn {
    background: #25D366;
    border-color: #25D366;
    color: white;
}
.faq-whatsapp-btn:hover {
    background: #1DAE56;
    border-color: #1DAE56;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    color: white;
}

.faq-phone-btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════
   16. CONTACT SECTION
══════════════════════════════════════════════════════ */
.contact-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--surface-1) 100%);
}
.contact-header { text-align: center; margin-bottom: var(--space-lg); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-lg);
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-detail-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-detail-icon {
    width: 40px; height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow-sm);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.contact-detail-label { font-size: 0.65rem; color: var(--text-muted); display: block; margin-bottom: 4px; }
.contact-detail-value {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}
a.contact-detail-value:hover { color: var(--gold); }

.contact-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: var(--radius-pill);
    color: #25D366;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--transition-med);
}
.contact-whatsapp-cta:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.25);
}

/* Form */
.contact-form-wrapper { padding: 2.5rem; }

.lead-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group .label-caps {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--surface-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow-sm);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}
.form-group select option { background: var(--surface-2); color: var(--text-primary); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-disclaimer { text-align: center; font-size: 0.6rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ══════════════════════════════════════════════════════
   17. MAP SECTION
══════════════════════════════════════════════════════ */
.map-section { background: var(--black); }

.map-header-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem var(--space-md);
    max-width: var(--container-width);
    margin: 0 auto;
    flex-wrap: wrap;
}
.map-address {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    flex: 1;
}

.map-embed-wrapper {
    position: relative;
    height: 480px;
    overflow: hidden;
}
.map-embed-wrapper iframe {
    display: block;
    filter: grayscale(0.8) invert(1) hue-rotate(180deg);
    opacity: 0.8;
}
.map-overlay-gradient {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--black), transparent);
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   18. FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
    background: var(--surface-1);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md) var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-md);
}

.footer-col { display: flex; flex-direction: column; gap: 1rem; }

.footer-wordmark {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.footer-brand-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; }

.footer-social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}
.social-link:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: var(--gold-glow-sm);
    transform: translateY(-2px);
}

.footer-col-title { font-size: 0.7rem; color: var(--gold); margin-bottom: 0.25rem; }

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}
.footer-links li a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer-contact-list li a { transition: color var(--transition-fast); }
.footer-contact-list li a:hover { color: var(--gold); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-tagline { font-size: 0.65rem; }

/* ══════════════════════════════════════════════════════
   19. FLOATING CTAs
══════════════════════════════════════════════════════ */
.floating-ctas {
    position: fixed;
    right: 1.5rem;
    bottom: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-cta {
    width: 52px; height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: transform var(--transition-med), box-shadow var(--transition-med);
}
.floating-cta:hover { transform: scale(1.1) translateY(-2px); }

.floating-cta--whatsapp { background: #25D366; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
.floating-cta--whatsapp:hover { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6); }

.floating-cta--phone { background: var(--gold); box-shadow: 0 8px 24px rgba(231, 53, 44, 0.4); }
.floating-cta--phone:hover { box-shadow: 0 12px 32px rgba(231, 53, 44, 0.6); }

/* ══════════════════════════════════════════════════════
   20. RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    :root {
        --section-padding: var(--section-padding-sm);
    }

    .hero-bg-slideshow {
        display: none !important;
    }

    .hero-container { text-align: center; min-height: auto; padding: calc(var(--header-height) + 3rem) var(--space-md) 4rem; align-items: center; }
    .hero-content { align-items: center; }
    .hero-tagline, .hero-description { max-width: 100%; }
    .hero-trust-bar { justify-content: center; }
    .hero-viewport { height: 340px; }
    .hero-sole-img { max-height: 260px; }
    .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); align-items: center; }
    .cad-label { display: none; }

    .stats-glass-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-divider:nth-child(2) { right: 0; }
    .stat-divider:nth-child(4) { display: none; }
    .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
    .stat-item:nth-child(5) { border-top: 1px solid var(--border); }

    /* products-track scrollable row on tablet */
    .products-track {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: none;
        width: 100%;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .products-track .product-card {
        flex: 0 0 260px;
        max-width: 280px;
    }
    .products-track::-webkit-scrollbar { display: none; }
    .scroll-hint { display: block !important; }

    .about-grid { grid-template-columns: 1fr; }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }

    .colour-inner { grid-template-columns: 1fr; }

    .quality-grid { grid-template-columns: 1fr; }
    .quality-pillars { grid-template-columns: repeat(2, 1fr); }

    .specs-grid { grid-template-columns: 1fr; }

    .faq-grid { grid-template-columns: 1fr; }
    .faq-side-card { position: static; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }

    /* On mobile: hide desktop nav, show hamburger button */
    .main-navigation { display: none !important; }
    .menu-toggle { display: flex; }

    /* The mobile-nav-drawer is handled globally above (outside this media query)
       because it lives outside the header's stacking context */
}

/* ══════════════════════════════════════════════════════
   21. RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    :root {
        --space-md:  1rem;
        --space-lg:  2.5rem;
        --section-padding-sm: 3rem;
    }

    .products-track {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: none;
        width: 100%;
        max-width: 100%;
    }
    .products-track .product-card {
        flex: 0 0 250px;
    }
    .products-track::-webkit-scrollbar { display: none; }
    .scroll-hint { display: block; }

    .stats-glass-bar { grid-template-columns: 1fr 1fr; }

    .quality-pillars { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }

    .section-header-row { flex-direction: column; align-items: flex-start; }

    .hero-title { font-size: clamp(2rem, 10vw, 3rem); }

    .colour-inner { padding: 1.75rem; }

    .contact-form-wrapper { padding: 1.75rem; }

    .specs-grid { grid-template-columns: 1fr; }

    .header-cta { display: none; }

    .map-embed-wrapper { height: 320px; }
    .map-header-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ══════════════════════════════════════════════════════
   22. ACCESSIBILITY & MISC
══════════════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--brand-red);
    outline-offset: 3px;
    border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .clients-marquee { animation: none; }
}

/* Footer Logo Badge */
.footer-logo-badge {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.footer-logo-badge:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(245, 240, 232, 0.15);
}
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* WordPress alignment classes */
.aligncenter { margin: 0 auto; display: block; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100%; width: 100%; }

/* Screen reader only */
.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
    height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* Header WhatsApp CTA brand color overrides */
#header-whatsapp-cta {
    background: linear-gradient(135deg, #25D366, #1ebd58) !important;
    border-color: #25D366 !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

#header-whatsapp-cta:hover,
#header-whatsapp-cta:focus {
    background: linear-gradient(135deg, #20ba5a, #1a9f4a) !important;
    border-color: #20ba5a !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.4) !important;
}

/* Catalogue Landing & Gated Download Styles */
.catalogue-page-main input::placeholder,
.catalogue-page-main textarea::placeholder {
    color: #666666 !important;
    opacity: 0.8;
}

.catalogue-page-main input:focus,
.catalogue-page-main textarea:focus {
    border-color: #25D366 !important;
    background: rgba(37, 211, 102, 0.02) !important;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.15) !important;
}

#download-submit-btn:hover {
    background: linear-gradient(135deg, #20ba5a, #1a9f4a) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
    transform: translateY(-1px);
}

#download-submit-btn:active {
    transform: translateY(1px);
}

.catalogue-visual {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

.catalogue-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(231, 53, 44, 0.15) !important;
}

/* Success Checkmark Animation */
.success-icon-wrapper svg {
    animation: success-check 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes success-check {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .catalogue-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    .catalogue-visual {
        max-width: 480px;
        margin: 0 auto;
    }
    .catalogue-page-main {
        padding-top: 100px !important;
    }
}

/* ══════════════════════════════════════════════════════
   BLOGS & ARTICLES PREMIUM STYLING
   ══════════════════════════════════════════════════════ */
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 53, 44, 0.35) !important;
    box-shadow: 0 20px 40px rgba(231, 53, 44, 0.05), 0 15px 30px rgba(0, 0, 0, 0.5) !important;
}

.blog-card:hover .blog-img-hover {
    transform: scale(1.06);
}

.blog-card-title a:hover {
    color: #e7352c !important;
}

.blog-read-more:hover {
    color: #ffffff !important;
}

.blog-read-more:hover svg {
    transform: translateX(5px);
}

/* Single Post Premium Styling */
.single-post-main {
    width: 100%;
    max-width: 100%;
    background: #080808;
    color: #F5F0E8;
    min-height: 100vh;
    padding: 140px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.single-post-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.single-post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: #e7352c;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.single-post-back:hover {
    color: var(--text-primary);
}

.single-post-back:hover svg {
    transform: translateX(-4px);
}

.single-post-header h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: #808080;
    font-family: var(--font-display);
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}

.single-post-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.single-post-banner {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 3.5rem;
}

.single-post-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 450px;
}

.single-post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #D0D0D0;
}

.single-post-content p {
    margin-bottom: 1.75rem;
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.single-post-content h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    border-left: 3px solid #e7352c;
    padding-left: 15px;
}

.single-post-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
}

.single-post-content ul,
.single-post-content ol {
    margin-bottom: 1.75rem;
    padding-left: 1.5rem;
}

.single-post-content li {
    margin-bottom: 0.5rem;
}

.single-post-content blockquote {
    background: rgba(231, 53, 44, 0.04);
    border-left: 4px solid var(--brand-red);
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.15rem;
}

.single-post-content blockquote p {
    margin: 0;
}

.single-post-content img {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 2rem auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }
    .blog-header {
        margin-bottom: 3rem !important;
    }
    .single-post-main {
        padding-top: 100px !important;
    }
    .single-post-banner {
        margin-bottom: 2rem !important;
    }
}

