/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
    --color-bg: #060a14;
    --color-bg-2: #0a1020;
    --color-bg-3: #0d1526;
    --color-surface: #111827;
    --color-surface-2: #1a2235;
    --color-border: rgba(255, 255, 255, 0.07);
    --color-border-light: rgba(255, 255, 255, 0.12);

    --color-accent: #00d4ff;
    --color-accent-2: #0066ff;
    --color-accent-3: #7c3aed;
    --color-gold: #f59e0b;

    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    --color-text-dim: #64748b;

    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0066ff 100%);
    --gradient-dark: linear-gradient(135deg, #060a14 0%, #0d1526 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.2);

    --nav-height: 72px;
    --font-main: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================
   RESET & BASE
   =========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-accent-2);
    border-radius: 3px;
}

/* ===========================
   UTILITIES
   =========================== */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label-wrap {
    margin-bottom: 12px;
}

.section-label-wrap--center {
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    font-family: var(--font-main);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.35);
}

.section-label--light {
    color: var(--color-accent);
    background: transparent;
}

.section-title {
    font-family: var(--font-main);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.section-title--light {
    color: #fff;
}

.section-title--center {
    text-align: center;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 15px;
    border-radius: 100px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition);
}

.btn-primary:hover::before {
    background: rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 15px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar .brand-logo {
    height: 58px;
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .brand-logo {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.footer-brand .brand-logo {
    height: 68px;
}

/* Why Choose Us Section Logo */
.why-us-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.why-us-logo {
    height: 420px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-cta-btn {
    padding: 10px 22px;
    background: var(--gradient-primary);
    color: #fff;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    border-radius: 100px;
    margin-left: 8px;
    transition: var(--transition);
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45) saturate(1.3);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(6, 10, 20, 0.95) 0%,
            rgba(6, 10, 20, 0.75) 40%,
            rgba(6, 10, 20, 0.3) 70%,
            rgba(6, 10, 20, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
    margin-top: -80px;
    padding: 0 24px;
    padding-top: var(--nav-height);
    width: 100%;
}

.hero-logo-wrap {
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}

.hero-logo {
    height: 200px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-logo {
        height: 130px;
    }
    .hero-logo-wrap {
        margin-bottom: 24px;
    }
}

.hero-contact-info {
    display: flex;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.hero-contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

.hero-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.hero-contact-text {
    display: flex;
    flex-direction: column;
}

.hero-contact-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
}

.hero-contact-value {
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: var(--color-accent);
    padding: 0;
    border-radius: 0;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease both;
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.badge-dot {
    display: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    animation: fadeInUp 0.6s 0.4s ease both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.stat-num {
    font-family: var(--font-main);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 1s 0.8s ease both;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(0.7);
    }
}

/* ===========================
   SERVICES OVERVIEW
   =========================== */
.services-overview {
    padding: 100px 0;
    background: var(--color-bg-2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.service-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card), 0 0 30px rgba(0, 212, 255, 0.08);
}

.service-card--featured {
    background: linear-gradient(145deg, #0d1e40 0%, #0a1628 100%);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.1), var(--shadow-glow);
}

.service-card--featured:hover {
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 0 1px rgba(0, 212, 255, 0.3), 0 20px 60px rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
}

.card-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.card-icon {
    width: 58px;
    height: 58px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 8px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.3);
}

.card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-gold);
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.35);
}

.card-title {
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.card-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
}

.card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 8px;
    transition: var(--transition);
}

.service-card:hover .card-arrow {
    gap: 12px;
}

/* ===========================
   EPOXY SECTION
   =========================== */
.epoxy-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #04080f 100%);
    position: relative;
    overflow: hidden;
}

.epoxy-bg-deco {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(0, 102, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.epoxy-header {
    text-align: center;
    margin-bottom: 72px;
}

.epoxy-header .section-title {
    margin: 0 auto 20px;
}

.epoxy-lead {
    max-width: 580px;
    margin: 0 auto;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.epoxy-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}

.epoxy-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}

.epoxy-showcase-img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 212, 255, 0.08);
}

.epoxy-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
    animation: rotateBadge 10s linear infinite;
}

@keyframes rotateBadge {
    from {
        box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
    }

    50% {
        box-shadow: 0 8px 40px rgba(0, 212, 255, 0.7);
    }

    to {
        box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
    }
}

.img-badge-inner {
    text-align: center;
}

.img-badge-num {
    display: block;
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 0.85;
    margin-bottom: -3px;
}

.img-badge-text {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.epoxy-feature-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.epoxy-feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.epoxy-feature h4 {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.epoxy-feature p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.btn-epoxy {
    font-size: 16px;
    padding: 16px 32px;
}

/* Process Steps */
.process-section {
    border-top: 1px solid var(--color-border);
    padding-top: 72px;
}

.process-title {
    font-family: var(--font-main);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    justify-content: center;
}

.process-step {
    flex: 1;
    text-align: center;
    max-width: 200px;
}

.step-number {
    font-family: var(--font-main);
    font-size: 42px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h4 {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.process-step p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.step-connector {
    flex-shrink: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--color-accent), var(--color-accent-2));
    margin-top: 22px;
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 7px;
    height: 7px;
    background: var(--color-accent-2);
    border-radius: 50%;
}

/* ===========================
   BEFORE & AFTER GALLERY
   =========================== */
.ba-gallery-section {
    padding: 120px 0;
    background: var(--color-bg-2);
}

.ba-gallery-lead {
    text-align: center;
    max-width: 560px;
    margin: -0.5rem auto 56px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Gallery Tabs */
.ba-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.ba-tabs {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    justify-content: center;
}

.ba-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: var(--transition);
}

.ba-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.ba-tab-btn.active {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.ba-tab-content {
    position: relative;
    width: 100%;
}

.ba-tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.ba-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .ba-tabs {
        border-radius: 20px;
    }
    .ba-tab-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

.ba-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ba-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.ba-card:hover {
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--shadow-card), 0 0 30px rgba(0, 212, 255, 0.06);
}

.ba-slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
}

.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.ba-img-clip {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-img-clip .ba-img--before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

/* Slider handle */
.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translateX(-50%);
}

.ba-handle-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 212, 255, 0.3);
    border-radius: 2px;
}

.ba-handle-knob {
    position: relative;
    z-index: 4;
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    cursor: ew-resize;
    transition: box-shadow 0.2s ease;
}

.ba-handle-knob:hover {
    box-shadow: 0 4px 24px rgba(0, 212, 255, 0.7), 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Before / After labels */
.ba-label {
    position: absolute;
    bottom: 14px;
    z-index: 5;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 100px;
    pointer-events: none;
}

.ba-label--before {
    left: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ba-label--after {
    right: 14px;
    background: rgba(0, 212, 255, 0.2);
    color: var(--color-accent);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.ba-card-caption {
    padding: 16px 20px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    border-top: 1px solid var(--color-border);
}

/* ===========================
   SPLIT SECTIONS (Plumbing / Courts)
   =========================== */
.plumbing-section {
    padding: 120px 0;
    background: var(--color-bg-2);
    overflow: hidden;
}

.plumbing-header {
    margin-bottom: 64px;
}

.plumbing-lead {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

.plumbing-interactive-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 64px;
    align-items: flex-start;
}

/* Left Column: Viewport */
.plumbing-viewport {
    position: sticky;
    top: 100px;
    height: 560px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.plumbing-img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.plumbing-viewport-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.plumbing-viewport-img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.plumbing-viewport-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 10, 20, 0.6) 0%, rgba(6, 10, 20, 0) 60%),
                linear-gradient(to right, rgba(6, 10, 20, 0.2) 0%, rgba(6, 10, 20, 0) 100%);
    pointer-events: none;
}


/* Right Column: Interactive Cards */
.plumbing-cards-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plumbing-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.plumbing-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.plumbing-card.active {
    background: rgba(30, 144, 255, 0.04);
    border-color: rgba(30, 144, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(30, 144, 255, 0.02);
}

.plumbing-card-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.plumbing-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.plumbing-card.active .plumbing-card-icon {
    background: rgba(30, 144, 255, 0.15);
    color: var(--color-primary);
}

.plumbing-card-title-wrap {
    flex-grow: 1;
}

.plumbing-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.plumbing-card.active .plumbing-card-title {
    color: var(--color-primary);
}

.plumbing-card-intro {
    font-size: 13.5px;
    color: var(--color-text-muted);
    max-height: 40px;
    opacity: 1;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, margin 0.4s;
}

.plumbing-card.active .plumbing-card-intro {
    opacity: 0;
    max-height: 0;
    margin: 0;
    overflow: hidden;
}

.plumbing-card-chevron {
    color: var(--color-text-muted);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
}

.plumbing-card.active .plumbing-card-chevron {
    transform: rotate(180deg);
    color: var(--color-primary);
}

/* Accordion body */
.plumbing-card-body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0 24px;
}

.plumbing-card.active .plumbing-card-body {
    max-height: 210px;
    opacity: 1;
    padding-bottom: 24px;
}

.plumbing-card-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.plumbing-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plumbing-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.plumbing-checklist svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.plumbing-cta-container {
    margin-top: 24px;
}

.courts-section {
    padding: 120px 0;
    background: var(--color-bg);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.split-section--reverse {
    direction: rtl;
}

.split-section--reverse>* {
    direction: ltr;
}

.split-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.split-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
    transition: transform 0.6s ease;
}


.split-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 10, 20, 0) 50%, rgba(6, 10, 20, 0.4) 100%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.split-img-overlay--right {
    background: linear-gradient(to left, rgba(6, 10, 20, 0) 50%, rgba(6, 10, 20, 0.4) 100%);
}

.split-content .section-title {
    margin-top: 16px;
}

.split-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
}

.service-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.service-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.service-checklist li svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Courts Lead Paragraph */
.courts-lead {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* Courts Mosaic Layout */
.courts-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 300px;
    gap: 14px;
    margin-bottom: 56px;
}

/* Row of 3 equal tiles */
.courts-mosaic > .court-tile:nth-child(3),
.courts-mosaic > .court-tile:nth-child(4),
.courts-mosaic > .court-tile:nth-child(5) {
    grid-column: span 1;
}
.courts-mosaic > .court-tile:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}
.courts-mosaic > .court-tile:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

/* Re-flow rows 2 and 3 into a 3-column sub-grid */
.courts-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 320px 240px 280px;
}

.court-tile--wide:first-child {
    grid-column: span 2;
}

.courts-mosaic > .court-tile:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}
.courts-mosaic > .court-tile:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}
.courts-mosaic > .court-tile:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}
.courts-mosaic > .court-tile:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
}
.courts-mosaic > .court-tile:nth-child(6) {
    grid-column: 1;
    grid-row: 3;
}
.courts-mosaic > .court-tile--wide:last-child {
    grid-column: 2 / span 2;
    grid-row: 3;
}

.court-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.court-tile-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.court-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 8, 20, 0.85) 0%,
        rgba(4, 8, 20, 0.3) 45%,
        rgba(4, 8, 20, 0.05) 100%
    );
    z-index: 1;
}

.court-tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 28px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.court-tile-name {
    font-family: var(--font-main);
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    flex: 1;
    transition: letter-spacing 0.3s ease;
}

.court-tile:hover .court-tile-name {
    letter-spacing: 0em;
}

.court-tile-etc {
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(0, 212, 255, 0.9);
    margin-left: 8px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.court-tile:hover .court-tile-etc {
    opacity: 1;
    transform: translateX(0);
}

.court-tile-arrow {
    color: rgba(255, 255, 255, 0);
    flex-shrink: 0;
    transform: translateX(-10px);
    transition: color 0.3s ease, transform 0.3s ease;
}

.court-tile:hover .court-tile-arrow {
    color: var(--color-accent);
    transform: translateX(0);
}

.courts-cta-wrap {
    text-align: center;
}

@media (max-width: 1024px) {
    .courts-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 220px 220px 220px;
    }

    .court-tile--wide:first-child {
        grid-column: 1 / span 2;
        grid-row: 1;
    }

    .courts-mosaic > .court-tile:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    .courts-mosaic > .court-tile:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    .courts-mosaic > .court-tile:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }
    .courts-mosaic > .court-tile:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }
    .courts-mosaic > .court-tile:nth-child(6) {
        grid-column: 1;
        grid-row: 4;
    }
    .courts-mosaic > .court-tile--wide:last-child {
        grid-column: 2;
        grid-row: 4;
    }
}

@media (max-width: 640px) {
    .courts-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(7, 220px);
    }

    .court-tile--wide:first-child,
    .courts-mosaic > .court-tile:nth-child(n),
    .courts-mosaic > .court-tile--wide:last-child {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

/* ===========================
   WHY US
   =========================== */
.why-us {
    padding: 120px 0;
    background: var(--color-bg-3);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.why-us .section-title {
    margin-top: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.why-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
}

.why-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.why-card h4 {
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #04080f 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.contact-glow-left {
    position: absolute;
    top: 20%;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-glow-right {
    position: absolute;
    bottom: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col .section-title {
    margin-top: 16px;
    margin-bottom: 20px;
}

.contact-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

/* Contact Form */
.contact-form-col {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' 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: 44px;
}

.form-group select option {
    background: #111827;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 16px;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: #030609;
    border-top: 1px solid var(--color-border);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
}

.footer-brand .nav-brand {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-dim);
    line-height: 1.7;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group h5 {
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.footer-links-group a,
.footer-links-group span {
    font-size: 14px;
    color: var(--color-text-dim);
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-dim);
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.back-to-top:hover {
    color: var(--color-accent);
}

/* ===========================
   TOAST
   =========================== */
.toast {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: linear-gradient(135deg, #1a2235, #0d1526);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast svg {
    color: var(--color-accent);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===========================
   STEEL WORKS SECTION
   =========================== */
.steel-section {
    padding: 120px 0;
    background: var(--color-bg-1);
}

.steel-header {
    margin-bottom: 64px;
}

.steel-lead {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

.steel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.steel-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.steel-card-img-wrap {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
}

.steel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.steel-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 180, 216, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steel-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.steel-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-primary);
    margin-bottom: 20px;
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.steel-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}

.steel-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.steel-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
}

.steel-card-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 10px;
}

.steel-card-list li:last-child {
    margin-bottom: 0;
}

.steel-card-list li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.steel-cta-wrap {
    text-align: center;
    margin-top: 56px;
}


/* ===========================
   SPORTS COURT DETAILS MODAL
   =========================== */
.court-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.court-modal-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

.court-modal {
    background: rgba(13, 21, 41, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 960px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 180, 216, 0.05);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.court-modal-backdrop.open .court-modal {
    transform: scale(1) translateY(0);
}

.court-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.court-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: rotate(90deg);
}

.court-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 520px;
}

.court-modal-visual {
    position: relative;
    background: var(--color-bg-2);
    overflow: hidden;
}

.court-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.court-modal-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(13, 21, 41, 0.95) 100%);
    pointer-events: none;
}

.court-modal-info {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.court-modal-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 12px;
    display: inline-block;
}

.court-modal-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.1;
}

.court-specs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.court-spec-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.court-spec-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 180, 216, 0.15);
}

.court-spec-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.court-spec-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.court-modal-actions {
    display: flex;
    gap: 16px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 56px auto 0;
    }

    .steel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .epoxy-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-section--reverse {
        direction: ltr;
    }

    .split-img {
        height: 320px;
    }

    .epoxy-showcase-img {
        height: 320px;
    }

    .ba-gallery-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .why-us-logo {
        height: 280px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .step-connector {
        width: 1px;
        height: 30px;
        margin: 0;
    }

    .step-connector::after {
        bottom: -4px;
        right: -3px;
        top: auto;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    /* Court Modal Responsive */
    .court-modal-grid {
        grid-template-columns: 1fr;
    }

    .court-modal-visual {
        height: 240px;
    }

    .court-modal-visual::after {
        background: linear-gradient(to bottom, transparent 50%, rgba(13, 21, 41, 0.95) 100%);
    }

    .court-modal-info {
        padding: 32px 24px;
    }

    .court-modal-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .court-specs-list {
        margin-bottom: 28px;
    }

    .steel-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .steel-section {
        padding: 80px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(6, 10, 20, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px 24px 32px;
        border-bottom: 1px solid var(--color-border);
        gap: 4px;
        z-index: 999;
    }

    .nav-links.open .nav-cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat {
        padding: 0 16px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-col {
        padding: 24px;
    }

    .epoxy-img-badge {
        width: 85px;
        height: 85px;
        bottom: -15px;
        right: -15px;
    }

    .img-badge-num {
        font-size: 32px;
        line-height: 0.85;
    }

    .why-us-logo {
        height: 200px;
    }

    .section-title {
        font-size: clamp(1.7rem, 5vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   TRANSITION BANNERS
   =========================== */
.transition-banner {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(90deg, rgba(6, 10, 20, 0) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(6, 10, 20, 0) 100%);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.transition-banner::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.transition-text {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-text);
    font-family: var(--font-main);
    letter-spacing: -0.02em;
    margin: 0;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

@media (max-width: 768px) {
    .transition-text {
        font-size: 1.3rem;
        padding: 0 1rem;
    }
}

/* ===========================
   VISION & MISSION SECTION
   =========================== */
.vision-mission-section {
    position: relative;
    padding: 120px 0;
    background: var(--color-bg-2);
    overflow: hidden;
}

.vm-bg-deco {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.vm-lead {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.vm-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    overflow: hidden;
}

.vm-card--vision {
    border-top: 3px solid var(--color-accent);
}

.vm-card--mission {
    border-top: 3px solid var(--color-accent-3);
}

.vm-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-card--vision .vm-card-icon {
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-accent);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.vm-card--mission .vm-card-icon {
    background: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.vm-card-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vm-card--vision .vm-card-label {
    color: var(--color-accent);
}

.vm-card--mission .vm-card-label {
    color: #a78bfa;
}

.vm-card-title {
    font-family: var(--font-main);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.vm-card-desc {
    font-size: 0.97rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 0;
}

.vm-mission-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vm-mission-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
    color: var(--color-text-muted);
}

.vm-mission-list li svg {
    color: #a78bfa;
    flex-shrink: 0;
}

.vm-card-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    pointer-events: none;
}

.vm-card--vision .vm-card-accent {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
}

.vm-card--mission .vm-card-accent {
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

@media (max-width: 900px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-section {
        padding: 80px 0;
    }

    .vm-card {
        padding: 36px 28px;
    }

    .vm-card-title {
        font-size: 1.3rem;
    }

    /* Plumbing Responsive */
    .plumbing-interactive-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .plumbing-viewport {
        position: relative;
        top: 0;
        height: 360px;
        order: -1; /* Keep visual on top */
    }

    .plumbing-section {
        padding: 80px 0;
    }

    .plumbing-card-header {
        padding: 20px;
        gap: 16px;
    }

    .plumbing-card-title {
        font-size: 16px;
    }

    .plumbing-card-body {
        padding: 0 20px;
    }

    .plumbing-card.active .plumbing-card-body {
        padding-bottom: 20px;
    }
}