/* =========================================================================
   CLUBWELL — LUXURY DESIGN SYSTEM
   ========================================================================= */

:root {
    --clr-bg-primary:   #f7f8fa;
    --clr-bg-dark:      #121316; /* Obsidian Charcoal instead of burgundy #5c1515 */
    --clr-bg-darker:    #09090b; /* Matte Off-Black instead of burgundy #3d0d0d */
    --clr-accent-red:   #d4b06f; /* Aligned Brushed Gold instead of accent red */

    --clr-text-primary:   #1a1b1f;
    --clr-text-secondary: #5a5c64;
    --clr-text-light:     #f0f2f5;
    --clr-text-faded:     #888b96;

    --clr-accent:      #2c3e50;
    --clr-accent-gold: #d4b06f; /* Aligned Brushed Gold instead of #c8a97e */
    --clr-gold-glow:   rgba(212,176,111,0.35); /* Aligned Brushed Gold glow */
    --clr-border:      #e0e2e8;
    --clr-border-dark: #222429;

    --glass-light:  rgba(255,255,255,0.55);
    --glass-dark:   rgba(14,15,18,0.55);
    --glass-border-light: rgba(255,255,255,0.25);
    --glass-border-dark:  rgba(255,255,255,0.08);

    --font-body:    'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    --sp-xs: 0.5rem;
    --sp-sm: 0.75rem;
    --sp-md: 1.5rem;
    --sp-lg: 2.5rem;
    --sp-xl: 4rem;

    --radius:    6px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-inout:  cubic-bezier(0.65, 0, 0.35, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

    --dur-fast:   0.25s;
    --dur-med:    0.5s;
    --dur-slow:   0.9s;
}

/* ─── Custom Cursor ──────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--clr-text-primary);
    background: var(--clr-bg-primary);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
}

#cursor-dot, #cursor-ring {
    display: none !important;
}

#cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: var(--clr-accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s linear, opacity 0.2s;
    mix-blend-mode: difference;
}

#cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 38px; height: 38px;
    border: 1.5px solid rgba(200,169,126,0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width var(--dur-fast) var(--ease-out),
                height var(--dur-fast) var(--ease-out),
                border-color var(--dur-fast),
                transform 0.12s linear;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring,
body:has(li:hover) #cursor-ring {
    width: 55px; height: 55px;
    border-color: var(--clr-accent-gold);
}

/* ─── Base Typography ────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 300;
    color: var(--clr-text-primary);
}

p { color: var(--clr-text-secondary); margin-bottom: var(--sp-sm); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utilities ──────────────────────────────────────────────────────────── */
.container   { width: 90%; max-width: 1300px; margin: 0 auto; }
.section-padding { padding: var(--sp-xl) 0; }
.text-center { text-align: center; }
.text-light  { color: var(--clr-text-light); }
.text-light h1,.text-light h2,.text-light h3,.text-light h4 { color: var(--clr-text-light); }
.bg-dark .text-faded,
.catalogue-box .text-faded,
.footer .text-faded { color: #fff; }
.text-accent { color: var(--clr-accent-gold); }
.bg-dark   { background: var(--clr-bg-dark); }
.bg-darker { background: var(--clr-bg-darker); }
.d-flex     { display: flex; }
.flex-col   { flex-direction: column; }
.j-center   { justify-content: center; }
.j-between  { justify-content: space-between; }
.a-center   { align-items: center; }
.gap-sm     { gap: var(--sp-sm); }
.w-100      { width: 100%; }
.mt-sm  { margin-top: var(--sp-sm); }
.mt-md  { margin-top: var(--sp-md); }
.mb-sm  { margin-bottom: var(--sp-sm); }
.mb-md  { margin-bottom: var(--sp-md); }
.mb-lg  { margin-bottom: var(--sp-lg); }
.mx-auto{ margin: 0 auto; }
.p-lg   { padding: var(--sp-lg); }
.f-sm   { font-size: 0.875rem; }

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: var(--sp-md);
}
.section-badge {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--clr-accent-gold);
    margin-bottom: var(--sp-sm);
    font-weight: 500;
    font-family: var(--font-body);
}

/* ─── Glass Panel ────────────────────────────────────────────────────────── */
.glass {
    background: var(--glass-light);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border-light);
    border-radius: var(--radius-lg);
}
.glass-dark {
    background: var(--glass-dark);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border-dark);
    border-radius: var(--radius-lg);
}

/* ─── Product Categories ───────────────────────────────────────────────── */
#product-categories { 
    background: var(--clr-bg-darker); 
    position: relative;
    overflow: hidden;
}

.category-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.category-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.45);
    z-index: 1;
}

@media (max-width: 768px) {
    .category-video-overlay {
        background: rgba(10, 10, 12, 0.6);
    }
}

#product-categories .container {
    position: relative;
    z-index: 2;
}

.category-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.category-card img,
.category-card-video {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.category-card:hover img,
.category-card:hover .category-card-video {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.category-card-content {
    padding: 1rem;
}

.category-card-content h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.3rem;
}

.category-card-content p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.category-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.view-details-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(200,169,126,0.6);
    color: var(--clr-accent-gold);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: all var(--dur-fast);
    cursor: pointer;
}

.view-details-btn:hover {
    background: var(--clr-accent-gold);
    color: var(--clr-bg-darker);
    border-color: var(--clr-accent-gold);
}

/* Product card view button override */
.product-card-info .view-details-btn {
    flex: 0 0 auto;
    padding: 0.45rem 0.9rem;
    font-size: 0.7rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, #25D366, #1EBE5D);
    border: none;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    text-decoration: none;
    transition: all var(--dur-fast);
    flex-shrink: 0;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline-small svg {
    fill: #25D366;
}

.btn-outline-small:hover {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.5);
    transform: translateY(-2px) scale(1.02);
}

.btn-outline-small:active {
    background: linear-gradient(135deg, #25D366, #1EBE5D) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(0) scale(1);
}

.btn-outline-small svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
}
.btn::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--clr-accent);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform var(--dur-med) var(--ease-out);
}
.btn:hover::after  { transform: scaleY(1); }
.btn:active        { transform: scale(0.97); }

.btn-solid {
    background: var(--clr-bg-dark);
    color: var(--clr-text-light);
}
.btn-outline {
    border: 1.5px solid var(--clr-text-primary);
    color: var(--clr-text-primary);
    background: transparent;
}
.btn-outline-light {
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--clr-text-light);
    background: transparent;
}
.btn-outline-light:hover { color: var(--clr-text-primary); }

.btn-gold {
    background: var(--clr-accent-gold) !important;
    color: var(--clr-bg-darker) !important;
    font-weight: 600 !important;
}
.btn-gold::after {
    background: #dfbc8c !important;
}
.btn-gold:hover {
    color: var(--clr-bg-darker) !important;
    box-shadow: 0 4px 15px var(--clr-gold-glow) !important;
}

.btn-outline-gold {
    border: 1.5px solid var(--clr-accent-gold) !important;
    color: var(--clr-accent-gold) !important;
    background: transparent !important;
}
.btn-outline-gold::after {
    background: var(--clr-accent-gold) !important;
}
.btn-outline-gold:hover {
    color: var(--clr-bg-darker) !important;
    box-shadow: 0 4px 15px var(--clr-gold-glow) !important;
}

.btn .arrow { transition: transform var(--dur-fast) var(--ease-bounce); }
.btn:hover .arrow { transform: translateX(5px); }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 1.25rem; left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1300px;
    padding: 0.75rem 2rem;
    z-index: 1000;
    background: rgba(14, 15, 18, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    transition: all var(--dur-med) var(--ease-out);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.navbar.scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    background: rgba(14, 15, 18, 0.88);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(212,176,111,0.18);
    border-top: none;
    border-left: none;
    border-right: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
    padding: 0.65rem 5%;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
}
.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: height var(--dur-med) ease;
}
.navbar.scrolled .brand-logo img {
    height: 40px;
}
.text-logo {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 500;
    color: #fff; letter-spacing: 3px;
}
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem; letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative; padding-bottom: 4px;
    transition: color var(--dur-fast);
}
.nav-link::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--clr-accent-gold);
    transition: width var(--dur-med) var(--ease-out);
}
.nav-link:hover { color: var(--clr-accent-gold); }
.nav-link:hover::after { width: 100%; }
.nav-link.active {
    color: var(--clr-accent-gold);
    font-weight: 500;
}
.nav-link.active::after {
    width: 100%;
}

.btn-nav-cta {
    padding: 0.55rem 1.4rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--clr-accent-gold);
    border: 1px solid rgba(212,176,111,0.6);
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--dur-fast) ease;
}
.btn-nav-cta:hover {
    background: var(--clr-accent-gold);
    color: var(--clr-bg-darker);
    border-color: var(--clr-accent-gold);
    box-shadow: 0 4px 15px var(--clr-gold-glow);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
}
.mobile-menu-toggle span {
    width: 100%;
    height: 1.5px;
    background: #fff;
    transition: all 0.3s var(--ease-out);
}
.mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Navigation Drawer --- */
.nav-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
    overflow: hidden;
}
.nav-drawer.open {
    visibility: visible;
    opacity: 1;
}
.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.drawer-content {
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 100%;
    background: rgba(14, 15, 18, 0.95);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-left: 1px solid rgba(212,176,111,0.15);
    padding: 4rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer.open .drawer-content {
    transform: translateX(0);
}
.drawer-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}
.drawer-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}
.drawer-logo {
    margin-bottom: 2rem;
    text-align: center;
}
.drawer-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.text-logo-drawer {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 500;
    color: #fff; letter-spacing: 3px;
}
.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    margin-top: 1rem;
}
.drawer-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem; font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: block;
}
.drawer-link:hover,
.drawer-link.active {
    color: var(--clr-accent-gold);
    padding-left: 6px;
}
.drawer-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}
.video-container {
    position: absolute; inset: 0;
    z-index: 0;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero { min-height: 100vh; }
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 100vh;
    }
    .hero-center {
        padding: 0 1rem;
        width: 100%;
    }
    .hero-logo {
        max-width: 200px;
    }
    .hero-tagline-center {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero { min-height: 100vh; }
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 100vh;
    }
    .hero-center {
        padding: 0 0.75rem;
        width: 100%;
    }
    .hero-logo {
        max-width: 160px;
    }
    .hero-tagline-center {
        font-size: 0.75rem;
    }
}
.video-overlay {
    display: none;
}
/* Hero — centered logo layout */
.hero-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    z-index: 2;
}

.hero-logo {
    height: clamp(80px, 14vw, 160px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(0,0,0,0.55));
    animation: logoFadeIn 1.4s ease forwards;
    opacity: 0;
}

.hero-logo-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 200;
    color: #fff;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: logoFadeIn 1.4s ease forwards;
    opacity: 0;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-tagline-center {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.2vw, 0.95rem);
    color: rgba(255,255,255,0.65);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    animation: logoFadeIn 1.8s ease 0.5s forwards;
    opacity: 0;
}

@keyframes logoFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center;
    gap: 0.4rem;
    opacity: 0.6;
    animation: scrollBounce 2.2s infinite;
}
.scroll-indicator .mouse-icon {
    width: 22px; height: 34px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 11px;
    position: relative;
}
.scroll-indicator .mouse-icon::before {
    content: '';
    position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    width: 2px; height: 6px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollDot 2.2s infinite;
}
.scroll-indicator span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: #fff; }
@keyframes scrollBounce {
    0%,100% { transform: translateY(0) translateX(-50%); }
    50%      { transform: translateY(-8px) translateX(-50%); }
}
@keyframes scrollDot {
    0%,100% { opacity: 1; top: 6px; }
    50%      { opacity: 0; top: 14px; }
}

/* ─── Dual Layout ────────────────────────────────────────────────────────── */
.dual-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.dual-video-side {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
}

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

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.about-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.about-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--clr-accent-gold);
}

.about-commitment {
    background: rgba(212, 176, 111, 0.05) !important;
    border: 1px solid rgba(212, 176, 111, 0.25) !important;
    border-radius: var(--radius-lg);
    padding: 1.5rem !important;
    margin-top: 1.75rem !important;
}

.about-commitment h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--clr-accent-gold) !important;
    margin-bottom: 0.85rem !important;
    letter-spacing: 0.5px;
}

.about-commitment .about-features li {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    padding-left: 1.75rem !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

.about-commitment .about-features li:last-child {
    border-bottom: none !important;
}

.about-commitment .about-features li::before {
    color: var(--clr-accent-gold) !important;
    font-size: 1.1rem !important;
}
.dual-layout.reverse { flex-direction: row-reverse; }
.dual-content { flex: 1; }
.dual-image {
    flex: 1;
    height: 580px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.dual-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.dual-image:hover img { transform: scale(1.04); }
.text-block { max-width: 520px; }
.text-block p { font-size: 1.05rem; line-height: 1.8; color: var(--clr-text-secondary); margin-bottom: 1.2rem; }

/* ─── About Section — Premium Video Card Layout ─────────────────────────── */
.about-section {
    background: linear-gradient(160deg, #121316 0%, #09090b 100%) !important;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-section .section-title {
    color: var(--clr-text-light) !important;
}
.about-section p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3.5rem;
    border-radius: 22px;
    overflow: hidden;
    /* gold gradient border via outline trick */
    background: linear-gradient(135deg, #c8a97e, #8a6640, #c8a97e);
    padding: 3px;
    box-shadow:
        0 30px 80px rgba(200, 169, 126, 0.22),
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(200, 169, 126, 0.35);
}

/* inner clip keeps corners sharp on the video */
.about-video-inner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
}

.about-full-video {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* fills card, NO black bars */
    display: block;
}

/* floating label top-left */
.about-video-wrapper::before {
    content: "▶  About Clubwell";
    position: absolute;
    top: -1px; left: -1px;
    background: linear-gradient(90deg, #c8a97e, #a07850);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 22px 0 12px 0;
    z-index: 5;
    pointer-events: none;
}

.about-text-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text-block .section-badge {
    display: inline-block;
}

.about-text-block .section-title {
    margin-bottom: 0.5rem;
}

/* Custom Video Play Overlay */
.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    z-index: 10;
    cursor: pointer !important;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-play-overlay.playing {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-btn-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid var(--clr-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--clr-gold-glow), inset 0 0 15px rgba(212, 176, 111, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn-icon {
    font-size: 1.6rem;
    color: var(--clr-accent-gold);
    margin-left: 6px; /* center the play triangle visually */
    transition: color 0.3s ease;
}

.play-btn-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-text-light);
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: letter-spacing 0.3s ease;
}

.video-play-overlay:hover .play-btn-circle {
    transform: scale(1.15);
    background: rgba(212, 176, 111, 0.12);
    box-shadow: 0 0 45px var(--clr-accent-gold), inset 0 0 20px rgba(212, 176, 111, 0.3);
}

.video-play-overlay:hover .play-btn-label {
    letter-spacing: 4px;
    color: var(--clr-accent-gold);
}

/* About Section Pillars Grid styling */
.about-intro-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 800px;
    margin: 1.5rem auto 3.5rem;
    text-align: center;
    font-weight: 300;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
    margin-top: 2rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 176, 111, 0.12);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pillar-card:hover {
    transform: translateY(-6px);
    border-color: var(--clr-accent-gold);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 25px 50px rgba(212, 176, 111, 0.06);
}

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

.pillar-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--clr-accent-gold);
    opacity: 0.8;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--clr-text-light);
    letter-spacing: 0.5px;
}

.pillar-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 0;
}

@media (max-width: 768px) {
    .about-video-wrapper {
        border-radius: 16px;
    }
    .about-video-inner {
        border-radius: 14px;
    }
    .about-text-block .text-block {
        padding: 1.25rem 1rem;
    }
}

/* ─── Mission/Vision ─────────────────────────────────────────────────────── */
.mission-vision { padding: var(--sp-xl) 0; background: var(--clr-bg-primary); }
.mv-grid { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.mv-card { flex: 1; max-width: 460px; }
.mv-number {
    font-family: var(--font-display);
    font-size: 0.8rem; letter-spacing: 3px; color: var(--clr-accent-gold);
    margin-bottom: 1rem; text-transform: uppercase;
    padding-bottom: 0.5rem; border-bottom: 1px solid var(--clr-border);
    display: inline-block;
}
.mv-card h3 { font-size: 2rem; margin-bottom: 1rem; }
.mv-divider {
    width: 1px; height: 140px;
    background: linear-gradient(to bottom, transparent, var(--clr-border), transparent);
}

/* ─── Why-Us Video Background ────────────────────────────────────────────── */
.why-us-video-section {
    position: relative;
    overflow: hidden;
}
.why-us-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.why-us-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}
.why-us-video-section .container {
    position: relative;
    z-index: 2;
}
.why-us-video-section .section-title,
.why-us-video-section .feature-card {
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* ─── Feature Cards — Glassmorphism ─────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: var(--sp-md);
}
.feature-card {
    padding: 2rem 2.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform var(--dur-med) var(--ease-out),
                border-color var(--dur-med),
                box-shadow var(--dur-med),
                background var(--dur-med);
}
.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(200, 169, 126, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(200,169,126,0.2),
                inset 0 1px 0 rgba(255,255,255,0.1);
}
.feature-card .f-num {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--clr-accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.feature-card .f-title {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.feature-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ─── Quality ────────────────────────────────────────────────────────────── */
.tech-specs {
    margin-top: 2rem; padding-top: 2rem;
    border-top: 1px solid var(--clr-border);
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.tech-specs li { font-size: 0.9rem; color: var(--clr-text-secondary); }
.spec-badge {
    position: absolute; bottom: 2rem; left: 2rem;
    padding: 1rem 1.5rem;
}
.spec-badge .num {
    font-family: var(--font-display);
    font-size: 2.2rem; color: var(--clr-accent-gold); line-height: 1; display: block;
}
.spec-badge .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; }

/* ─── PRODUCT CATALOG ────────────────────────────────────────────────────── */
.products-gallery { 
    background: var(--clr-bg-darker); 
    position: relative;
    overflow: hidden;
}

.products-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.products-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.4);
    z-index: 1;
}

.products-gallery .container {
    position: relative;
    z-index: 2;
}

/* Text visibility improvements */
.products-gallery .section-title,
.products-gallery .text-faded,
.products-gallery .section-badge,
.products-gallery .sidebar-title,
.products-gallery .cat-title,
.products-gallery .cat-count,
.products-gallery .category-list li {
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
    color: #fff;
}

.catalog-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Sidebar — sticky, glass, no hover auto-switch */
.catalog-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 110px;
    padding: 1.8rem;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

/* Custom Scrollbar for Catalog Sidebar */
.catalog-sidebar::-webkit-scrollbar {
    width: 4px;
}
.catalog-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
    background: rgba(212, 176, 111, 0.25);
    border-radius: 10px;
}
.catalog-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 176, 111, 0.45);
}

.sidebar-title {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-accent-gold);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.category-list li {
    padding: 0.75rem 1rem;
    margin-bottom: 0.3rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
    user-select: none;
}
.category-list li:hover {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.85);
    transform: translateX(4px);
}
.category-list li.active {
    background: rgba(200,169,126,0.12);
    color: var(--clr-accent-gold);
    font-weight: 500;
    border-left: 2px solid var(--clr-accent-gold);
    padding-left: calc(1rem - 2px);
}

/* Main grid area */
.catalog-main { flex: 1; min-height: 90vh; }

.cat-header {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2.5rem;
}
.cat-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 200;
    color: var(--clr-text-light);
    letter-spacing: -0.5px;
    margin: 0;
}
.cat-count {
    font-size: 0.8rem;
    color: var(--clr-accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

/* Grid — auto-fill, clear images */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    transition: opacity 0.3s ease;
}

/* Product Card — 3D glass, image shown clearly */
.product-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    transition: box-shadow var(--dur-med), border-color var(--dur-med);
    will-change: transform;
}
.product-card:hover {
    border-color: rgba(200,169,126,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(200,169,126,0.15);
}

/* Image area — fills entire card, edge to edge */
.product-card-img {
    aspect-ratio: 4 / 3;
    width: 100%;
    overflow: hidden;
    display: block;
    background: #1a1a1a;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s var(--ease-out), opacity 0.35s ease;
    opacity: 0;
}
.product-card-img img.img-loaded,
.product-card-img img[src]:not([src=""]) {
    opacity: 1;
}
.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

/* Info bar — absolute so it floats over the image bottom */
.product-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.9rem 1.1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 60%, transparent);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    transition: opacity 0.3s ease;
}
.product-card-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* WhatsApp inquiry button in modal */
.inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.25);
    color: #4ade80;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: background var(--dur-fast), box-shadow var(--dur-fast), transform var(--dur-fast) var(--ease-bounce);
}
.inquiry-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
    transform: scale(1.04);
}

/* ─── Application Tags ───────────────────────────────────────────────────── */
.tag-cloud { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.app-tag {
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--clr-border);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all var(--dur-fast);
}
.app-tag:hover {
    background: var(--clr-bg-dark);
    color: var(--clr-text-light);
    border-color: var(--clr-bg-dark);
}

/* ─── Dealer + Catalogue ─────────────────────────────────────────────────── */
.check-list  { padding-left: 0; }
.check-list li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    display: flex; gap: 0.5rem;
}
.check-list li::before { content: '→'; color: var(--clr-accent-gold); }

.dealer-box, .catalogue-box { flex: 1; }
.catalogue-box h2 { color: var(--clr-text-light); }

/* ─── Contact & Forms ────────────────────────────────────────────────────── */
.contact-info { flex: 1; }
.c-detail { margin-bottom: 2rem; }
.c-label {
    display: block; font-size: 0.72rem;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--clr-accent-gold); margin-bottom: 0.3rem;
}
.contact-form-wrapper { flex: 1; padding: 2.5rem; }
.form-row { display: flex; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; flex: 1; }
input, select, textarea {
    width: 100%; padding: 0.9rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--clr-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--dur-fast), background var(--dur-fast);
}
input:focus, select:focus, textarea:focus {
    border-color: var(--clr-accent-gold);
    background: rgba(255,255,255,0.07);
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
select option { background: #111; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer { padding-top: var(--sp-xl); background: var(--clr-bg-darker); }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem; margin-bottom: var(--sp-lg);
}
.footer-logo { height: 32px; filter: invert(1) brightness(0.8); }
.footer-col h4 { color: rgba(255,255,255,0.9); font-size: 1rem; margin-bottom: 1.5rem; font-weight: 400; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul a { color: rgba(255,255,255,0.38); font-size: 0.9rem; transition: color var(--dur-fast); }
.footer-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
    display: flex; justify-content: space-between;
    font-size: 0.8rem; color: rgba(255,255,255,0.25);
}

/* ─── Scroll Animations ──────────────────────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--dur-slow) var(--ease-out),
                transform var(--dur-slow) var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.img-reveal {
    opacity: 0; transform: scale(0.96);
    transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.img-reveal.visible { opacity: 1; transform: scale(1); }

.line-anim {
    transform: scaleX(0); transform-origin: left;
    transition: transform 1.5s var(--ease-out);
}
.line-anim.visible { transform: scaleX(1); }

/* ──────────────────────────────────────────────────────────────── */
/* LIGHTBOX                                                          */
/* ──────────────────────────────────────────────────────────────── */
#lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: background 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
#lightbox.open {
    background: rgba(0,0,0,0.92);
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}
#lightbox-img-wrap {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.88);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
#lightbox.open #lightbox-img-wrap {
    transform: scale(1);
    opacity: 1;
}
#lightbox-img {
    max-width: 90vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    display: block;
    background: #fff;
}
#lightbox-close {
    position: fixed;
    top: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    transition: background 0.2s, transform 0.2s, opacity var(--dur-med) ease, visibility var(--dur-med) ease;
    z-index: 9001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#lightbox.open #lightbox-close {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
#lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1) rotate(90deg);
}
#lightbox-caption {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    pointer-events: none;
}

/* ─── PRODUCT DETAILS MODAL ─────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.open {
    pointer-events: all;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.modal.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: all var(--dur-fast);
}

.modal-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1) rotate(90deg);
}

.modal-body {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.product-modal-img {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.product-modal-img img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.product-modal-info {
    flex: 1;
    padding: 1rem 0;
}

.modal-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent-gold);
    margin-bottom: 0.5rem;
}

.product-modal-info h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.modal-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.modal-specs h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent-gold);
    margin-bottom: 1rem;
}

#modal-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#modal-specs-list li {
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

#modal-specs-list li:last-child {
    border-bottom: none;
}

#modal-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

/* Modal responsive bottoms-up mobile design */
@media (max-width: 768px) {
    .modal-content {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        width: 100% !important;
        max-width: 100% !important;
        max-height: 85vh;
        border-radius: 28px 28px 0 0;
        margin: 0;
        transform: translateY(100%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        border: 1px solid rgba(255,255,255,0.12);
        border-bottom: none;
        box-shadow: 0 -15px 40px rgba(0,0,0,0.6);
        background: rgba(14, 15, 18, 0.95);
        backdrop-filter: blur(28px);
        -webkit-backdrop-filter: blur(28px);
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .modal.open .modal-content {
        transform: translateY(0);
    }
    /* Native-like drag handle bar */
    .modal-content::before {
        content: '';
        position: absolute;
        top: 10px; left: 50%;
        transform: translateX(-50%);
        width: 40px; height: 4px;
        border-radius: 2px;
        background: rgba(255,255,255,0.15);
    }
    .modal-close {
        top: 1.25rem; right: 1.25rem;
        width: 32px; height: 32px;
        font-size: 1.2rem;
        background: rgba(255,255,255,0.06);
    }
    .modal-body {
        flex-direction: column;
        padding: 3rem 1.5rem calc(4.5rem + env(safe-area-inset-bottom));
        gap: 1.5rem;
    }
    .product-modal-img {
        max-width: 100%;
        min-width: auto;
        aspect-ratio: 4 / 3;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }
    .product-modal-info {
        padding: 0;
    }
    .product-modal-info h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .modal-specs {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }
}

/* ─── Responsive & Spacing System ─────────────────────────────────────────── */
@media (max-width: 1200px) {
    .section-padding { padding: 4rem 1.5rem; }
    .features-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
    .category-cards-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}

@media (max-width: 1024px) {
    #cursor-dot,
    #cursor-ring {
        display: none !important;
    }
    a, button, [role="button"], li {
        cursor: auto !important;
    }
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .navbar {
        width: 95%;
        padding: 0.65rem 1.5rem;
        top: 1rem;
    }
    .navbar.scrolled {
        padding: 0.6rem 5%;
    }
    .nav-links, .btn-nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .dual-layout { flex-direction: column; gap: 3rem; }
    .dual-layout.reverse { flex-direction: column; }
    .dual-image { height: 420px; width: 100%; }
    .contact-form-wrapper { width: 100%; }
    
    /* Catalog horizontal snapping mobile carousel */
    .catalog-layout { flex-direction: column; gap: 1.5rem; }
    .catalog-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        padding: 1.25rem;
        border-radius: var(--radius-lg);
        background: rgba(255,255,255,0.03);
        backdrop-filter: blur(18px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .sidebar-title {
        font-size: 0.65rem;
        margin-bottom: 0.85rem;
        padding-bottom: 0.4rem;
    }
    .category-list {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.65rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    }
    .category-list::-webkit-scrollbar {
        display: none;
    }
    .category-list li {
        flex: 0 0 auto;
        border-radius: 30px !important;
        padding: 0.55rem 1.1rem !important;
        margin: 0 !important;
        border-left: none !important;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        color: rgba(255, 255, 255, 0.65) !important;
        font-size: 0.8rem;
        scroll-snap-align: start;
        transition: all 0.3s ease;
    }
    .category-list li:hover {
        transform: none !important;
        color: rgba(255, 255, 255, 0.95) !important;
        background: rgba(255, 255, 255, 0.08);
    }
    .category-list li.active {
        background: rgba(200, 169, 126, 0.15) !important;
        border-color: var(--clr-accent-gold) !important;
        color: var(--clr-accent-gold) !important;
    }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-center { padding: 0 1rem; }
    .hero-logo { width: 80%; max-width: 280px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .category-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .category-card img { height: 180px; }
}

@media (max-width: 768px) {
    :root { --sp-sm: 0.75rem; --sp-md: 1.5rem; --sp-lg: 2.5rem; }
    .section-title { font-size: 2rem; }
    
    .mv-grid    { flex-direction: column; }
    .mv-divider { width: 80px; height: 1px; }
    .form-row   { flex-direction: column; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .footer-grid  { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    
    /* Product Categories */
    .category-cards-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .category-card img,
    .category-card-video { height: 200px; }
    .category-card-content { padding: 1rem; }
    .category-card-content h3 { font-size: 1.1rem; }
    .category-card-content p { font-size: 0.8rem; }
    .view-details-btn { padding: 0.5rem 1rem; font-size: 0.65rem; }
    
    /* Hero */
    .hero-center { padding: 0 1rem; }
    .hero-logo { width: 75%; max-width: 220px; }
    .hero-tagline-center { font-size: 0.9rem; }
    .scroll-indicator { bottom: 1.5rem; }
    
    /* Features */
    .features-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .about-pillars-grid { grid-template-columns: 1fr !important; gap: 1.25rem; }
    .feature-card { padding: 1.5rem; }
    .feature-card .f-title { font-size: 1rem; }
    .feature-card p { font-size: 0.85rem; }
    
    /* Catalog */
    .catalog-layout { gap: 1.5rem; }
    .product-card { min-height: 180px; }
    
    /* Contact */
    .contact-form-wrapper { padding: 1.5rem; }
    .form-group { margin-bottom: 1rem; }
    .form-group input, .form-group select, .form-group textarea { padding: 0.75rem; font-size: 0.9rem; }
    
    /* Dealer */
    .dealer-box, .catalogue-box { padding: 1.5rem; }
    .d-flex { flex-direction: column; }
    .d-flex.gap-sm { gap: 1rem; }
}

@media (max-width: 480px) {
    .section-padding { padding: 2.5rem 1rem; }
    .section-title { font-size: 1.75rem; line-height: 1.3; font-weight: 600; }
    .section-badge { font-size: 0.7rem; letter-spacing: 2px; }
    .text-block p { font-size: 0.95rem; line-height: 1.7; color: rgba(255,255,255,0.9); }
    
    .hero-center { padding: 0 0.75rem; }
    .hero-logo { width: 65%; max-width: 180px; }
    .hero-tagline-center { font-size: 0.85rem; font-weight: 500; }
    
    .category-cards-grid { grid-template-columns: 1fr; }
    .category-card img,
    .category-card-video { height: 180px; }
    .category-card-content h3 { font-size: 1.1rem; font-weight: 600; }
    .category-card-content p { font-size: 0.85rem; }
    .view-details-btn { padding: 0.5rem 1rem; font-size: 0.65rem; }
    
    .product-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .product-card { min-height: 140px; }
    .product-card-name { font-size: 0.75rem; font-weight: 500; }
    
    .features-grid { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .about-pillars-grid { grid-template-columns: 1fr !important; gap: 1rem; }
    .feature-card { padding: 1.25rem; }
    .feature-card .f-title { font-size: 1rem; font-weight: 500; }
    .feature-card p { font-size: 0.85rem; }
    
    .catalog-sidebar { padding: 1rem; }
    .sidebar-title { font-size: 0.65rem; }
    .category-list li { font-size: 0.8rem; padding: 0.5rem 0.8rem; }
    .cat-title { font-size: 1.1rem; font-weight: 600; }
    
    .tag-cloud { flex-wrap: wrap; gap: 0.5rem; }
    .app-tag { padding: 0.5rem 0.8rem; font-size: 0.75rem; }
    
    .footer { padding: 2rem 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-col h4 { margin-bottom: 0.75rem; font-size: 1rem; }
    .footer-col ul li { font-size: 0.85rem; }
}

/* =========================================================================
   CLUBWELL — ADDITIONAL KICH-INSPIRED SECTIONS
   ========================================================================= */

/* --- Section 1: Prestigious Projects Showcase --- */
.project-showcase {
    background: linear-gradient(to bottom, var(--clr-bg-dark), var(--clr-bg-darker));
    color: var(--clr-text-light);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--clr-accent-gold);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.65), 
        0 0 25px rgba(200, 169, 126, 0.25);
}

.project-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 176, 111, 0.12), rgba(18, 19, 22, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}

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

.project-placeholder-symbol {
    font-size: 4rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    opacity: 0.8;
}

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

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

.project-info {
    position: absolute;
    inset: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(14, 15, 18, 0.98) 15%, rgba(14, 15, 18, 0.4) 65%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.project-meta {
    font-size: 0.7rem;
    color: var(--clr-accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-family: var(--font-body);
}

.project-title {
    font-size: 1.5rem;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 300;
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.project-details {
    font-size: 0.85rem;
    color: var(--clr-text-faded);
    line-height: 1.6;
}

.project-details strong {
    color: #fff;
    font-weight: 500;
}

/* --- Section 2: Industries We Serve --- */
.industries-section {
    background: linear-gradient(to bottom, #f7f8fa 0%, #fdf6ee 100%);
}

.ind-tabs {
    display: none;
}

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

.sector-card {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.sector-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 176, 111, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    border-color: var(--clr-accent-gold);
}

.sector-icon-box {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 176, 111, 0.1), rgba(212, 176, 111, 0.02));
    border-radius: 12px;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 176, 111, 0.15);
    transition: transform 0.4s ease;
}

.sector-card:hover .sector-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(212, 176, 111, 0.2), rgba(212, 176, 111, 0.05));
}

.sector-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--clr-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sector-card-desc {
    color: var(--clr-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.sectors-outro {
    margin-top: 4rem;
    position: relative;
}

.outro-divider {
    width: 80px;
    height: 3px;
    background: var(--clr-accent-gold);
    margin: 0 auto var(--sp-md);
    border-radius: 2px;
}

.outro-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--clr-text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.outro-subheading {
    font-size: 1.1rem;
    color: var(--clr-accent-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .sectors-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    .sector-card {
        padding: 1.75rem 1.5rem;
    }
    .outro-heading {
        font-size: 1.4rem;
    }
    .outro-subheading {
        font-size: 0.9rem;
    }
}

/* --- Section 3: Engineering & Certifications Lab --- */
.testing-lab-section {
    background: linear-gradient(160deg, #0d0e11 0%, #050505 100%);
    color: var(--clr-text-light);
    position: relative;
    overflow: hidden;
}

.testing-lab-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
}

.lab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.lab-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 3rem 2.2rem;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.lab-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(200, 169, 126, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(200, 169, 126, 0.1);
}

.lab-icon {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 10px rgba(200, 169, 126, 0.2));
}

.lab-card h4 {
    color: #fff;
    font-size: 1.25rem;
    font-family: var(--font-display);
    margin-bottom: 0.85rem;
    font-weight: 400;
}

.lab-card p {
    font-size: 0.88rem;
    color: var(--clr-text-faded);
    line-height: 1.65;
    margin: 0;
}

.lab-metric {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--clr-accent-gold);
    margin-top: 1.2rem;
    letter-spacing: -0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.85rem;
}

/* --- Media Queries Responsive adjustments for new sections --- */
@media (max-width: 992px) {
    .ind-content-box {
        padding: 2.5rem;
    }
    .ind-pane {
        flex-direction: column-reverse;
        gap: 2.5rem;
    }
    .ind-info-side, .ind-visual-side {
        width: 100%;
        flex: none;
    }
    .ind-visual-side {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .lab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .ind-content-box {
        padding: 1.5rem;
    }
    .ind-title {
        font-size: 1.65rem;
    }
    .ind-tab-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.72rem;
    }
    .ind-specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* =========================================================================
   CLUBWELL — LUXURY CONTACT & FOOTER ENHANCEMENTS
   ========================================================================= */

/* --- Elevated Contact Section --- */
.contact-luxury-section {
    background: linear-gradient(to bottom, var(--clr-bg-dark), var(--clr-bg-darker)) !important;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2rem;
}
.c-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: transform var(--dur-fast);
}
.c-detail-item:hover {
    transform: translateX(6px);
}
.c-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 176, 111, 0.08);
    border: 1px solid rgba(212, 176, 111, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--clr-accent-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.c-detail-item:hover .c-icon-wrap {
    background: var(--clr-accent-gold);
    color: var(--clr-bg-darker);
    border-color: var(--clr-accent-gold);
    box-shadow: 0 0 15px var(--va-glow-gold);
}
.c-info-wrap {
    flex: 1;
}
.c-hover-gold {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    transition: color var(--dur-fast);
    margin: 0;
}
.c-detail-item:hover .c-hover-gold {
    color: var(--clr-accent-gold);
}
/* WhatsApp Specific Styling */
.c-detail-item.whatsapp-item:hover .c-icon-wrap {
    background: #25d366 !important;
    color: #fff !important;
    border-color: #25d366 !important;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4) !important;
}
.whatsapp-connect-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm, 4px);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.4rem;
}
.whatsapp-connect-btn:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.3);
}

.contact-form-wrapper {
    flex: 1;
    padding: 3rem;
    background: rgba(14, 15, 18, 0.55) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 176, 111, 0.18) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35),
                0 0 30px rgba(212, 176, 111, 0.05);
    transition: border-color var(--dur-med), box-shadow var(--dur-med);
}
.contact-form-wrapper:hover {
    border-color: rgba(212, 176, 111, 0.4) !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45),
                0 0 40px rgba(212, 176, 111, 0.12);
}

/* Form Input refinement */
input, select, textarea {
    width: 100%;
    padding: 1.1rem 1.4rem !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--clr-text-light) !important;
    font-family: var(--font-body);
    font-size: 0.9rem !important;
    border-radius: 12px !important;
    outline: none;
    transition: all 0.3s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--clr-accent-gold) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 0 15px rgba(212, 176, 111, 0.15) !important;
    transform: translateY(-1px);
}

/* --- Elevated Footer Section --- */
.footer {
    background: #060608 !important;
    border-top: 1px solid rgba(212, 176, 111, 0.12) !important;
    padding-top: var(--sp-xl);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--clr-accent-gold), transparent);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--sp-lg);
}
.footer-logo {
    height: 65px !important;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
    margin-bottom: 1rem;
}
.footer-col h4 {
    color: #fff !important;
    font-family: var(--font-display);
    font-size: 1rem !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
    position: relative;
    display: inline-block;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 25px;
    height: 1px;
    background: var(--clr-accent-gold);
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-col ul a {
    color: var(--clr-text-faded) !important;
    font-size: 0.88rem !important;
    transition: all var(--dur-fast) ease;
    display: inline-block;
}
.footer-col ul a:hover {
    color: var(--clr-accent-gold) !important;
    transform: translateX(4px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 2rem 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--clr-text-faded) !important;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links span {
    cursor: pointer;
    transition: color var(--dur-fast);
}
.footer-bottom-links span:hover {
    color: var(--clr-accent-gold);
}
.developer-link {
    color: var(--clr-accent-gold) !important;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--dur-fast) ease, text-decoration var(--dur-fast) ease;
}
.developer-link:hover {
    color: #fff !important;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .footer-grid > div:first-child {
        grid-column: span 2;
    }
    .footer-col h4 {
        margin-bottom: 0.8rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0 !important;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* --- Regional Office Network Section --- */
.regional-network-section {
    margin-top: 5rem;
    position: relative;
    z-index: 2;
}

.network-title-wrapper {
    text-align: center;
    margin-bottom: 3.5rem;
}

.network-title-badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    color: var(--clr-accent-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.network-main-title {
    font-size: 2.2rem;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    margin: 0;
}

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

.network-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem 1.25rem;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.network-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 176, 111, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 176, 111, 0.1);
}

.network-card-badge {
    display: inline-block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.network-card h4 {
    color: #fff;
    font-size: 1.2rem;
    font-family: var(--font-display);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.network-address {
    font-size: 0.8rem;
    color: var(--clr-text-faded);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.network-contact {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1rem;
}

.network-link {
    font-size: 0.8rem;
    color: var(--clr-text-light);
    text-decoration: none;
    transition: color var(--dur-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.network-link:hover {
    color: var(--clr-accent-gold);
}

@media (max-width: 1400px) {
    .network-grid {
        gap: 1rem;
    }
    .network-card {
        padding: 1.75rem 1rem;
    }
}

@media (max-width: 1200px) {
    .network-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 900px) {
    .network-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .network-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .regional-network-section {
        margin-top: 4rem;
    }
    .network-main-title {
        font-size: 1.75rem;
    }
}

.network-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--clr-accent-gold);
    border-radius: 8px;
    color: var(--clr-accent-gold) !important;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.network-btn:hover {
    background: var(--clr-accent-gold);
    color: var(--clr-bg-darker) !important;
    box-shadow: 0 4px 15px rgba(212, 176, 111, 0.25);
    transform: translateY(-2px);
}

/* --- Voice Assistant FAB --- */
.voice-assistant-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-accent-gold);
    color: var(--clr-bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 176, 111, 0.3);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.voice-assistant-fab:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 176, 111, 0.5);
}

.voice-assistant-fab .fab-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.voice-assistant-fab .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--clr-accent-gold);
    opacity: 0.8;
    animation: fabPulse 2s infinite;
    z-index: 1;
}

@keyframes fabPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* --- Voice Assistant Panel --- */
.voice-assistant-panel {
    position: fixed;
    bottom: 7.5rem;
    right: 2rem;
    width: 350px;
    height: 440px;
    background: radial-gradient(circle at center, #0e1520 0%, #06090f 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.voice-assistant-panel.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.panel-header-new {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.live-voice-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #fff;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 8px #ef4444;
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
}

.panel-close-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.panel-close-new:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(1.05);
}

/* Body / Orb Area */
.panel-body-new {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
}

.orb-container {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-orb {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d72b8 0%, #104e8b 100%);
    box-shadow: 0 10px 30px rgba(16, 78, 139, 0.4), 0 0 20px rgba(29, 114, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.main-orb:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 78, 139, 0.5), 0 0 25px rgba(29, 114, 184, 0.5);
}

.voice-assistant-panel.listening .main-orb {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
}

.mic-icon-new {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Orbiting Dot around Main Orb */
.orbiting-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -5px;
    offset-path: path('M 0,0 m -50,0 a 50,50 0 1,0 100,0 a 50,50 0 1,0 -100,0');
    animation: orbit 3s linear infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes orbit {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}

/* Concentric Pulse Rings */
.pulse-ring-new {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(29, 114, 184, 0.15);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.voice-assistant-panel.listening .pulse-ring-new {
    animation: ringPulse 3s infinite linear;
}

.ring-1 {
    width: 110px;
    height: 110px;
    animation-delay: 0s;
}
.ring-2 {
    width: 140px;
    height: 140px;
    animation-delay: 1s;
}
.ring-3 {
    width: 170px;
    height: 170px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    30% {
        opacity: 0.6;
        border-color: rgba(29, 114, 184, 0.25);
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
        border-color: rgba(0, 255, 255, 0);
    }
}

/* Status Text */
.assistant-status-new {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin: 0.5rem 0 0.75rem 0;
    letter-spacing: -0.2px;
}

/* Caption / Subtitle overlay */
.caption-box {
    display: none;
    width: 100%;
    max-height: 55px;
    overflow-y: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-style: italic;
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
    box-sizing: border-box;
}

/* Neural Badge */
.neural-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.45rem 1rem;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.8px;
    box-sizing: border-box;
}

.green-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
    animation: greenPulse 1.5s infinite;
}

@keyframes greenPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* Fallback Text Input Footer */
.panel-footer-new {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.panel-footer-new input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 30px !important;
    padding: 0.65rem 1.25rem !important;
    color: #fff !important;
    font-size: 0.85rem !important;
    outline: none !important;
    margin-right: 0.75rem !important;
    font-family: 'Inter', sans-serif !important;
}

.panel-footer-new input:focus {
    border-color: rgba(29, 114, 184, 0.5) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.send-btn-new {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1d72b8;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.send-btn-new:hover {
    background: #104e8b;
    transform: scale(1.05);
}

/* Mobile Responsive Panel */
@media (max-width: 480px) {
    .voice-assistant-panel {
        bottom: 1rem;
        right: 1rem;
        left: auto;
        width: calc(100% - 2rem);
        max-width: 320px;
        height: 330px;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    }
    .orb-container {
        width: 140px;
        height: 140px;
    }
    .main-orb {
        width: 80px;
        height: 80px;
    }
    .assistant-status-new {
        font-size: 1.2rem;
        margin: 0.25rem 0 0.5rem 0;
    }
    .voice-assistant-fab {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

