@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    --bg-dark: #070708;
    --bg-card: rgba(18, 18, 20, 0.75);
    --border-color: rgba(255, 255, 255, 0.05);
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    
    /* Neon Colors */
    --neon-yellow: #f5c518;
    --neon-yellow-glow: rgba(245, 197, 24, 0.35);
    --neon-red: #ef4444;
    --neon-red-glow: rgba(239, 68, 68, 0.35);
    --neon-orange: #f97316;
    --neon-orange-glow: rgba(249, 115, 22, 0.35);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-industrial: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* --- BASE & UTILITY STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    /* High-octane carbon fiber texture background using CSS gradients */
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 197, 24, 0.06) 0%, transparent 40%),
        linear-gradient(45deg, #111 25%, transparent 25%), 
        linear-gradient(-45deg, #111 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #111 75%), 
        linear-gradient(-45deg, transparent 75%, #111 75%),
        linear-gradient(0deg, rgba(7, 7, 8, 0.95), rgba(7, 7, 8, 0.95));
    background-size: 100% 100%, 100% 100%, 8px 8px, 8px 8px, 8px 8px, 8px 8px, 100% 100%;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

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

ul {
    list-style: none;
}

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

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

/* --- PREMIUM NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 7, 8, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(7, 7, 8, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo span.brand-spa {
    color: var(--neon-yellow);
    text-shadow: 0 0 10px var(--neon-yellow-glow);
}

.logo span.brand-auto {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--neon-yellow);
    box-shadow: 0 0 8px var(--neon-yellow);
    transition: var(--transition-fast);
}

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

.nav-links a:hover {
    color: var(--neon-yellow);
}

.nav-cta {
    display: flex;
    align-items: center;
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Mobile navigation drawer */
.nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(12, 12, 14, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    z-index: 999;
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: cubic-bezier(0.77, 0.2, 0.05, 1) 0.4s;
}

.nav-drawer.open {
    right: 0;
}

.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-drawer-links a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.nav-drawer-links a:hover,
.nav-drawer-links a.active {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
}

/* --- BUTTONS & INTERACTIVE ELEMENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-industrial);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    min-height: 48px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--neon-yellow);
    color: #000000;
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow-glow);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--neon-yellow);
    box-shadow: 0 0 25px var(--neon-yellow);
    text-shadow: none;
}

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

.btn-secondary:hover {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 20px var(--neon-red-glow);
}

.btn-accent {
    background-color: var(--neon-red);
    color: var(--text-primary);
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red-glow);
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--neon-red);
    box-shadow: 0 0 25px var(--neon-red);
}

/* --- TYPOGRAPHY GLOWS --- */
.text-glow-yellow {
    color: var(--neon-yellow);
    text-shadow: 0 0 8px var(--neon-yellow-glow);
}

.text-glow-red {
    color: var(--neon-red);
    text-shadow: 0 0 8px var(--neon-red-glow);
}

/* --- 3D PERSPECTIVE CARD WRAPPERS --- */
.tilt-card-container {
    perspective: 1000px;
}

.tilt-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.tilt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%);
    pointer-events: none;
    z-index: 2;
}

.tilt-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: 0 15px 35px rgba(245, 197, 24, 0.15), 0 0 20px rgba(0, 0, 0, 0.6);
}

.tilt-card-content {
    transform: translateZ(30px); /* Pushes content forward in 3D space */
    padding: 32px;
}

/* --- FLOATING / BACKGROUND SPOTLIGHTS --- */
.spotlight {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}

.spotlight-yellow {
    background: radial-gradient(circle, var(--neon-yellow) 0%, transparent 70%);
}

.spotlight-red {
    background: radial-gradient(circle, var(--neon-red) 0%, transparent 70%);
}

/* --- GLOBAL SECTION STYLING --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 10;
}

.section-header .subtitle {
    font-family: var(--font-industrial);
    color: var(--neon-yellow);
    font-size: 1.1rem;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

.section-header .title {
    font-size: 2.75rem;
    font-weight: 900;
}

/* --- FOOTER STYLING --- */
.footer {
    background-color: #050506;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 24px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: var(--text-primary);
}

.social-icon:hover {
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow-glow);
    background: rgba(245, 197, 24, 0.05);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--neon-yellow);
}

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

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

.footer-col p {
    margin-bottom: 12px;
}

.footer-newsletter p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow-glow);
}

.newsletter-form .btn {
    padding: 0 20px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a:hover {
    color: var(--neon-yellow);
}

/* --- HERO BANNER (HOMEPAGE) --- */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(7, 7, 8, 0.92) 30%, rgba(7, 7, 8, 0.3) 70%), url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--neon-red);
    color: var(--neon-red);
    padding: 6px 14px;
    border-radius: 30px;
    font-family: var(--font-industrial);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}

.hero-content h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

/* --- STATS COUNTER --- */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -80px; /* Pull into hero view */
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(18, 18, 20, 0.85);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    width: 1px;
    height: 70%;
    background-color: var(--border-color);
}

.stat-number {
    font-family: var(--font-industrial);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--neon-yellow), var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(245,197,24,0.15));
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* --- CORE HIGHLIGHTS (HOMEPAGE) --- */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.highlight-card {
    height: 100%;
}

.highlight-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.1);
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-dark);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    padding: 4px 10px;
    font-family: var(--font-industrial);
    font-size: 0.8rem;
    border-radius: 4px;
    z-index: 10;
}

.highlight-info {
    padding: 32px;
}

.highlight-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.highlight-info p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.highlight-link {
    font-family: var(--font-industrial);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-yellow);
}

.highlight-link i {
    transition: var(--transition-fast);
}

.highlight-link:hover i {
    transform: translateX(6px);
}

/* --- TRUST BADGES & BRANDS --- */
.brands-section {
    background: rgba(18, 18, 20, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 0;
}

.brands-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-logo-item {
    text-align: center;
    opacity: 0.5;
    transition: var(--transition-fast);
}

.brand-logo-item:hover {
    opacity: 1;
}

.brand-logo-item img {
    height: 45px;
    filter: brightness(0) invert(1);
    margin-bottom: 8px;
}

.brand-logo-item span {
    display: block;
    font-family: var(--font-industrial);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(18, 18, 20, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.05);
}

.testimonial-rating {
    color: var(--neon-yellow);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #27272a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon-yellow);
    border: 2px solid var(--neon-yellow);
}

.testimonial-meta h4 {
    font-size: 1rem;
    color: var(--text-primary);
}

.testimonial-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* --- SERVICES PAGE STYLING --- */
.services-intro-bg {
    background-image: linear-gradient(rgba(7, 7, 8, 0.9), rgba(7, 7, 8, 0.9)), url('https://images.unsplash.com/photo-1552930294-6b595f4c2974?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-pkg-card {
    height: 100%;
}

.service-pkg-banner {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.service-pkg-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-pkg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 18, 20, 1) 0%, rgba(18, 18, 20, 0.4) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
}

.service-pkg-badge {
    background: var(--neon-yellow);
    color: #000;
    font-family: var(--font-industrial);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
}

.service-pkg-banner h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
}

.service-pkg-details {
    padding: 32px;
    background: var(--bg-card);
}

.service-price-block {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.service-price {
    font-family: var(--font-industrial);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--neon-yellow);
}

.service-warranty {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--neon-red);
    letter-spacing: 1px;
}

.service-pkg-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.checklist-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.service-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin-bottom: 32px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checklist-item i {
    color: var(--neon-yellow);
    font-size: 0.9rem;
}

.service-pkg-details .btn {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    background-color: rgba(18, 18, 20, 0.4);
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
}

.faq-item h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- GALLERY PAGE (gallery.html) --- */
.gallery-intro-bg {
    background-image: linear-gradient(rgba(7, 7, 8, 0.9), rgba(7, 7, 8, 0.9)), url('https://images.unsplash.com/photo-1620891549027-942fdc95d3f5?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

/* Before After Slider CSS */
.before-after-wrapper {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border: 3px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    user-select: none;
    -webkit-user-select: none;
}

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

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

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

.image-after {
    z-index: 2;
    width: 100%; /* Keep full width to prevent distortion */
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); /* Initialize clip at 50% */
    overflow: hidden;
}

/* Ensure absolute size alignment of both images */
.image-after img {
    width: 100%;
    height: 100%;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Init at center */
    width: 4px;
    height: 100%;
    background-color: var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: #0c0c0e;
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 0 15px var(--neon-yellow-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-yellow);
    pointer-events: none;
}

.slider-button i {
    font-size: 1.25rem;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    background: rgba(0,0,0,0.75);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    font-family: var(--font-industrial);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 5;
}

.label-before {
    left: 20px;
    border-left: 2px solid var(--neon-red);
}

.label-after {
    right: 20px;
    border-right: 2px solid var(--neon-yellow);
}

/* Portfolio grid with filtering */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(18, 18, 20, 0.6);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 20px;
    font-family: var(--font-industrial);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.filter-btn:hover,
.filter-btn.active {
    background: transparent;
    color: var(--neon-yellow);
    border-color: var(--neon-yellow);
    box-shadow: 0 0 12px var(--neon-yellow-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 4/3;
    transition: var(--transition-smooth);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(7,7,8,0.9) 90%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition-smooth);
    z-index: 5;
}

.portfolio-item:hover {
    border-color: var(--neon-yellow);
    box-shadow: 0 10px 25px rgba(245, 197, 24, 0.1);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

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

.portfolio-overlay span {
    color: var(--neon-yellow);
    font-family: var(--font-industrial);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.portfolio-overlay h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
}

/* --- ABOUT PAGE (about.html) --- */
.about-intro-bg {
    background-image: linear-gradient(rgba(7, 7, 8, 0.9), rgba(7, 7, 8, 0.9)), url('https://images.unsplash.com/photo-1517524206127-48bbd363f3d7?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.about-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.25rem;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.promise-list {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.promise-item {
    display: flex;
    gap: 16px;
}

.promise-icon {
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--neon-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-red);
    flex-shrink: 0;
}

.promise-info h4 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.promise-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.about-visual {
    position: relative;
}

.about-visual img {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.about-visual::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--neon-yellow);
    border-radius: 8px;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

/* Technicians Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.team-card:hover {
    border-color: var(--neon-yellow);
}

.team-image {
    height: 320px;
    background: #18181b; /* Placeholder backing */
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.team-socials {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85) 60%);
    transition: var(--transition-smooth);
}

.team-card:hover .team-socials {
    bottom: 0;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-info span {
    font-family: var(--font-industrial);
    color: var(--neon-yellow);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* --- CONTACT & BOOKING PAGE (contact.html) --- */
.contact-intro-bg {
    background-image: linear-gradient(rgba(7, 7, 8, 0.9), rgba(7, 7, 8, 0.9)), url('https://images.unsplash.com/photo-1618843479313-40f8afb4b4d8?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 60px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
}

.contact-detail-card h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    position: relative;
}

.contact-detail-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--neon-red);
}

.contact-detail-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    border-radius: 4px;
    background: rgba(245, 197, 24, 0.1);
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-detail-text h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-detail-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 8px;
}

.hours-row span:first-child {
    color: var(--text-secondary);
}

.hours-row span:last-child {
    color: var(--text-primary);
    font-weight: 700;
}

.hours-row.highlighted span:last-child {
    color: var(--neon-yellow);
}

/* Map Container */
.map-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

/* Booking Form */
.booking-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.booking-form-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--neon-yellow);
}

.booking-form-card h3 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.booking-form-card p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow-glow);
}

.form-group select option {
    background-color: #121214;
    color: var(--text-primary);
}

.form-group textarea {
    resize: none;
    height: 110px;
}

.booking-form-card .btn {
    width: 100%;
}


/* --- RESPONSIVE DESIGNS --- */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
    
    .stat-item:nth-child(2)::after {
        display: none;
    }
    
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid .highlight-card:last-child {
        grid-column: span 2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid .team-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1.5fr;
    }
    
    .footer-newsletter {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header .title {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .stats-section {
        margin-top: -40px;
    }
    
    .stats-grid {
        gap: 16px;
        padding: 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid .highlight-card:last-child {
        grid-column: span 1;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid .team-card:last-child {
        grid-column: span 1;
    }
    
    .about-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevents iOS safari zoom on tap */
    }
    
    .service-checklist {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .booking-form-card {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-newsletter {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item::after {
        display: none !important;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .slider-button {
        width: 38px;
        height: 38px;
    }
    
    .slider-button i {
        font-size: 1rem;
    }
}
