/* ==========================================================================
   B88 WRAP XTREME - PREMIUM STYLING SYSTEM
   ========================================================================== */

/* 1. DESIGN SYSTEM TOKENS */
:root {
    --bg-dark: #050508;
    --bg-card: rgba(13, 13, 18, 0.65);
    --bg-card-hover: rgba(22, 22, 30, 0.85);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(0, 255, 136, 0.15);
    
    /* Luxury Cyber Colors */
    --accent-neon: #00ff88;         /* Toxic green */
    --accent-neon-rgb: 0, 255, 136;
    --accent-cyan: #00e5ff;         /* Cyber cyan */
    --accent-cyan-rgb: 0, 229, 255;
    --accent-pink: #ff007f;         /* Cyber pink */
    
    /* Typography */
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Text states */
    --text-primary: #f0f2f5;
    --text-muted: #8c96a3;
    --text-dark: #07070a;
    
    /* Shadows */
    --shadow-glow: 0 0 30px rgba(0, 255, 136, 0.25);
    --shadow-glow-cyan: 0 0 30px rgba(0, 229, 255, 0.25);
    --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
    
    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --section-padding: 140px;
}

/* 2. BASE RESETS & GLOBAL STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-neon);
    box-shadow: var(--shadow-glow);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
}

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

ul {
    list-style: none;
}

input, select, textarea, button {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}



/* PRELOADER STYLES */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-primary);
}

.preloader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-cyan));
    box-shadow: var(--shadow-glow);
}

.preloader-status {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    font-weight: 600;
}

/* 4. UTILITIES & REUSABLE ELEMENTS */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

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

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

.w-100 {
    width: 100%;
}

.accent-text {
    color: var(--accent-neon);
}

.neon-gradient {
    background: linear-gradient(90deg, var(--accent-neon), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-glow {
    text-shadow: 0 0 15px rgba(var(--accent-neon-rgb), 0.4);
}

/* SECTION HEADERS */
.section-header {
    margin-bottom: 70px;
    max-width: 700px;
}

.section-header.align-center {
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--accent-neon);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* PREMIUM BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 1;
}

.btn-lg {
    padding: 20px 48px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-neon);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #00d973;
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    background: rgba(var(--accent-neon-rgb), 0.02);
    transform: translateY(-2px);
}

.btn-glow {
    background: transparent;
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-neon);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
    z-index: -1;
}

.btn-glow:hover {
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-glow:hover::before {
    width: 300%;
    height: 300%;
}

/* 5. STICKY TRANSPARENT NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: rgba(5, 5, 8, 0.4);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: height 0.4s var(--ease-out-expo), background 0.4s;
    will-change: height, background;
}

.navbar.scrolled {
    height: 75px;
    background: rgba(5, 5, 8, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-neon);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-btn-phone {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
}

.nav-btn-phone:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(var(--accent-neon-rgb), 0.2);
}

.phone-icon {
    width: 18px;
    height: 18px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s ease;
}

/* Hamburger active transformation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 6. HERO SECTION */
.hero-section {
    width: 100vw;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,8,0.5) 0%, rgba(5,5,8,0.85) 70%, rgba(5,5,8,1) 100%),
                linear-gradient(to right, rgba(5,5,8,0.9) 0%, rgba(5,5,8,0.4) 50%, rgba(5,5,8,0.85) 100%);
    z-index: 2;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-grid {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    margin-top: 50px;
}

.hero-content {
    max-width: 850px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-neon);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-neon);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 15px var(--accent-neon); }
    100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b8c4;
    max-width: 620px;
    margin-bottom: 45px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

/* Floating Stats Card (Mansory layout) */
.hero-floating-card {
    justify-self: end;
}

.floating-card-glass {
    background: rgba(13, 13, 18, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: var(--shadow-card);
    width: 280px;
}

.floating-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.floating-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
}

.floating-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.floating-divider {
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.05);
}

.hero-scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--text-muted);
}

.hero-scroll-down:hover {
    color: var(--accent-neon);
}

.mouse-icon {
    width: 22px;
    height: 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-neon);
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
    0% { top: 6px; opacity: 1; }
    50% { top: 14px; opacity: 0.3; }
    100% { top: 6px; opacity: 1; }
}

/* 7. TRUST / BRAND SECTION */
.trust-section {
    padding: 60px 0;
    background: #050508;
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 10;
}

.trust-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 10px 24px;
    border-radius: 50px;
}

.google-icon {
    width: 18px;
    height: 18px;
}

.stars {
    display: flex;
    gap: 3px;
}

.star-icon {
    width: 14px;
    height: 14px;
    fill: none;
    color: var(--text-muted);
}

.star-icon.active {
    fill: #ffb300;
    color: #ffb300;
}

.rating-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* HORIZONTAL BRAND MARQUEE */
.brand-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee-fade-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, #050508, transparent);
    z-index: 2;
}

.marquee-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to left, #050508, transparent);
    z-index: 2;
}

.brand-marquee {
    display: flex;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marqueeAnimation 25s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.06);
    transition: color 0.3s;
    cursor: default;
}

.marquee-track span:hover {
    color: rgba(var(--accent-neon-rgb), 0.6);
    text-shadow: 0 0 15px rgba(var(--accent-neon-rgb), 0.2);
}

@keyframes marqueeAnimation {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 8. BEFORE/AFTER SLIDER SECTION */
.slider-section {
    padding: var(--section-padding) 0;
    background: #08080c;
    border-bottom: 1px solid var(--border-subtle);
}

.before-after-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto 0 auto;
}

.before-after-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Robust cross-browser 1:1 aspect-ratio, immune to flex collapsing */
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    user-select: none;
    -webkit-user-drag: none;
}

.image-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 1000px; /* Force lock alignment width */
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-panel {
    z-index: 1;
}

.after-panel {
    z-index: 2;
    width: 50%; /* JS dynamic width */
}

/* Re-anchoring the slider image to make sure it aligns on resize */
.after-panel .slider-img {
    width: 1000px;
    max-width: none;
}

.badge-label {
    position: absolute;
    bottom: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 3;
}

.before-badge {
    right: 30px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

.after-badge {
    left: 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

/* Slider Drag Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* JS dynamic */
    width: 4px;
    height: 100%;
    background-color: var(--accent-neon);
    box-shadow: var(--shadow-glow);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    flex-grow: 1;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.handle-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--accent-neon);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    margin: 15px 0;
    transition: transform 0.2s;
}

.before-after-container:hover .handle-button {
    transform: scale(1.1);
}

.handle-icon {
    width: 20px;
    height: 20px;
}

/* Centered single column slider block */
.slider-wrapper-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.after-panel .slider-img {
    transition: filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: filter;
}

/* Compact Horizontal Controls Bar */
.showcase-controls-horizontal {
    width: 100%;
    max-width: 1000px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 15px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-card);
}

.horizontal-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.color-scale-horizontal {
    display: flex;
    gap: 10px;
}

.scale-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color);
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.scale-btn:hover {
    transform: scale(1.15);
}

.scale-btn.active {
    border-color: var(--text-primary);
    box-shadow: 0 0 12px var(--color);
    transform: scale(1.2);
}

.finish-scale-horizontal {
    display: flex;
    gap: 8px;
}

.finish-btn-compact {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.finish-btn-compact:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.finish-btn-compact.active {
    background: rgba(0, 255, 136, 0.03);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.1);
}

.horizontal-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.05);
}

.specs-compact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
}

.specs-compact span {
    color: var(--text-muted);
    font-weight: 800;
    letter-spacing: 0.1em;
}

.specs-compact strong {
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .showcase-controls-horizontal {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
    }
    
    .horizontal-divider {
        display: none;
    }
    
    .specs-compact {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 10px;
    }
}

/* 9. SERVICES GRID SECTION */
.services-section {
    padding: var(--section-padding) 0;
    background: #050508;
    border-bottom: 1px solid var(--border-subtle);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, background-color 0.4s;
    will-change: transform, border-color;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-neon);
    background: var(--bg-card-hover);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: rgba(0, 255, 136, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    margin-bottom: 30px;
    transition: transform 0.3s var(--ease-out-expo);
}

.service-card:hover .service-icon-box {
    transform: scale(1.08) rotate(5deg);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
}

.service-details li i {
    width: 16px;
    height: 16px;
    color: var(--accent-neon);
}

.service-hover-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.service-card:hover .service-hover-indicator {
    transform: scaleX(1);
}

/* 10. LIVE CAR WRAP CUSTOMIZER SECTION */
.customizer-section {
    padding: var(--section-padding) 0;
    background: #08080c;
    border-bottom: 1px solid var(--border-subtle);
}

.customizer-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

/* Visual Panel */
.customizer-preview {
    background: rgba(13, 13, 18, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1.6 / 1;
}

.customizer-glow-bg {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    transition: background 0.6s ease;
}

.car-svg-container {
    width: 100%;
    z-index: 2;
}

.car-body {
    transition: fill 0.6s ease;
}

.customizer-info-badge {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.info-title {
    color: var(--text-muted);
    font-weight: 500;
}

.info-value {
    color: var(--accent-neon);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

/* Controls Panel */
.customizer-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.controls-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
}

.controls-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.swatch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.swatch-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s var(--ease-out-expo);
}

.swatch-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.swatch-btn.active {
    border-color: var(--accent-neon);
    background: rgba(0, 255, 136, 0.03);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.05);
}

.swatch-preview {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.swatch-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.customizer-actions {
    margin-top: 20px;
}

/* 11. EXPERIENCE / CRAFTSMANSHIP SECTION */
.experience-section {
    padding: var(--section-padding) 0;
    background: #050508;
    border-bottom: 1px solid var(--border-subtle);
}

.experience-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.experience-content {
    display: flex;
    flex-direction: column;
}

.story-stepper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
    position: relative;
}

.story-stepper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 24px;
    width: 1px;
    height: calc(100% - 30px);
    background: rgba(255, 255, 255, 0.08);
}

.story-step {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.step-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.story-step:hover .step-icon-box {
    border-color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-muted);
}

.story-step:hover .step-number {
    color: var(--accent-neon);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 10px;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Right side Image exhibition stack */
.experience-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
}

.gallery-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.card-main {
    transform: translateY(-20px);
}

.card-sub {
    transform: translateY(20px);
}

.gallery-img {
    width: 100%;
    aspect-ratio: 0.9 / 1;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

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

.gallery-card-content {
    padding: 24px;
}

.gallery-badge {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--accent-neon);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.gallery-title {
    font-size: 1rem;
    font-weight: 700;
}

/* 12. PORTFOLIO SHOWCASE SECTION */
.portfolio-section {
    padding: var(--section-padding) 0;
    background: #08080c;
    border-bottom: 1px solid var(--border-subtle);
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 12px 28px;
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    color: var(--text-muted);
    cursor: pointer;
    background: rgba(255,255,255,0.01);
    transition: all 0.3s var(--ease-out-expo);
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.15);
}

.tab-btn.active {
    color: var(--text-dark);
    background: var(--accent-neon);
    border-color: var(--accent-neon);
    box-shadow: var(--shadow-glow);
}

/* Portfolio grid layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Squares look gorgeous */
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    cursor: pointer;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,5,8,0.95) 0%, rgba(5,5,8,0.4) 60%, transparent 100%);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
    z-index: 2;
}

.portfolio-cat {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-neon);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.portfolio-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.portfolio-spec {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.portfolio-link-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transform: scale(0.8) translateY(-10px);
    transition: transform 0.4s var(--ease-out-expo), background-color 0.3s;
}

/* Hover States */
.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-link-icon {
    transform: scale(1) translateY(0);
    background-color: var(--accent-neon);
    border-color: var(--accent-neon);
    color: var(--text-dark);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 5, 8, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2100;
    transition: 0.3s;
}

.lightbox-close:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-img {
    max-height: 70vh;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.05);
}

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

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.lightbox-desc {
    color: var(--accent-neon);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 13. MATERIAL BRANDS SECTION */
.brands-section {
    padding: 100px 0;
    background: #050508;
    border-bottom: 1px solid var(--border-subtle);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 35px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.3s, background-color 0.3s;
}

.brand-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.brand-sub {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
}

/* 14. CUSTOMER TESTIMONIALS */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: #08080c;
    border-bottom: 1px solid var(--border-subtle);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #b0b8c4;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent-neon);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.client-car {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* 15. CONTACT / BOOKING SECTION */
.booking-section {
    padding: var(--section-padding) 0;
    background: #050508;
    border-bottom: 1px solid var(--border-subtle);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

/* Left side Intake Form */
.booking-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
}

.form-badge {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--accent-neon);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.form-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--accent-neon);
    background: rgba(0, 255, 136, 0.02);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.05);
}

/* Custom Select styling hook */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238c96a3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.btn-glow-submit {
    margin-top: 10px;
    border: 1px solid var(--accent-neon);
    background: transparent;
    color: var(--accent-neon);
}

.btn-glow-submit:hover {
    background: var(--accent-neon);
    color: var(--text-dark);
    box-shadow: var(--shadow-glow);
}

/* Right side Chat & Map */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.border-glow {
    border-color: rgba(0, 255, 136, 0.2);
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.info-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.5;
}

.chat-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    border-radius: 6px;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.chat-btn:hover {
    transform: translateY(-2px);
}

.line-btn {
    background: #00b900;
    color: #fff;
}
.line-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 185, 0, 0.3);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}
.whatsapp-btn:hover {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.chat-icon {
    width: 32px;
    height: 32px;
}

.chat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.chat-handle {
    font-size: 1rem;
    font-weight: 700;
}

/* Map Card */
.location-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-title {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.location-item i {
    width: 20px;
    height: 20px;
    color: var(--accent-neon);
    flex-shrink: 0;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

/* 16. FINAL CTA SECTION */
.final-cta-section {
    padding: 160px 0;
    background: #08080c;
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.05;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* 17. FOOTER SECTION */
.footer {
    background: #050508;
    border-top: 1px solid var(--border-subtle);
    padding: 100px 0 40px 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.01);
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--accent-neon);
    padding-left: 5px;
}

.footer-newsletter-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-newsletter {
    display: flex;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,0.01);
}

.footer-newsletter input {
    padding: 16px 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
    flex-grow: 1;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.25);
}

.footer-newsletter button {
    background: var(--accent-neon);
    color: var(--text-dark);
    padding: 0 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-newsletter button:hover {
    background: #00d973;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* 18. ANIMATION EFFECTS SETUP */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

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

/* ==========================================================================
   19. RESPONSIVE MEDIA QUERIES (MOBILE FIRST)
   ========================================================================== */

/* High-DPI screens / Desktops */
@media (max-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Standard Desktops / Laptops */
@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        justify-items: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 4rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-floating-card {
        justify-self: center;
    }
    .floating-card-glass {
        flex-direction: row;
        width: 100%;
        max-width: 700px;
        justify-content: space-around;
        padding: 30px;
    }
    .floating-divider {
        height: auto;
        width: 1px;
    }
    .customizer-layout, .experience-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .experience-gallery {
        max-width: 700px;
        margin: 0 auto;
        width: 100%;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(5, 5, 8, 0.98);
        border-top: 1px solid var(--border-subtle);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: 0.5s var(--ease-out-expo);
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-actions .btn {
        display: none; /* Hide primary CTA on mobile nav header to prevent crowd */
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets / Mobiles */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Auto height Hero block flow to prevent vertical centering truncation */
    .hero-section {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding-top: 130px;
        padding-bottom: 60px;
        overflow: visible;
    }
    
    .hero-grid {
        margin-top: 0;
        padding: 0 20px;
    }
    
    .hero-content {
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.15;
        margin-top: 0;
    }
    
    /* Clean, non-overlapping mobile hero scroll */
    .hero-scroll-down {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2.0rem;
    }
    
    .floating-card-glass {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
        align-items: center;
    }
    .floating-divider {
        width: 100%;
        height: 1px;
    }

    /* Showcase Slider and Labels Fix (Correct selector classnames) */
    .slider-img {
        width: 768px; /* Set mobile alignment fallback width */
    }
    .after-panel .slider-img {
        width: 768px;
    }
    
    .before-badge, .after-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        bottom: 12px;
        letter-spacing: 0.05em;
    }
    .before-badge {
        right: 12px;
        left: auto;
    }
    .after-badge {
        left: 12px;
        right: auto;
    }
    
    /* Bespoke Customizer Lab Fix */
    .customizer-preview {
        aspect-ratio: auto;
        padding: 30px 20px;
        height: auto;
        max-height: 280px;
    }
    .customizer-preview svg {
        max-height: 180px;
        width: 100%;
        height: auto;
    }
    
    .swatch-grid {
        grid-template-columns: 1fr;
    }
    
    /* Credentials and Partners Fix */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Testimonials Fix */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .testimonial-card {
        padding: 30px;
        height: auto;
        min-height: auto;
    }
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
        max-height: none;
        overflow: visible;
    }
    
    /* Pre-footer CTA fix */
    .cta-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .chat-actions {
        flex-direction: column;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }
}

/* Tiny screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .customizer-preview {
        max-height: 220px;
        padding: 20px 10px;
    }
    .brands-grid {
        grid-template-columns: 1fr;
    }
    .cta-title {
        font-size: 1.7rem;
    }
}
