/* ========================================
   PRISTINE - Premium Car Detailing
   Color Palette: Black, Light Blue, Silver, Yellow
   ======================================== */

html {
    scroll-behavior: smooth;
}

/* ===== VARIABLES ===== */
:root {
    --black: #000000;
    --black-light: #0a0a0a;
    --black-card: #111111;
    --black-border: #1a1a1a;
    --white: #ffffff;
    --white-dim: #cccccc;
    --white-muted: #888888;
    --blue: #5BC0EB;
    --blue-light: #7DD3F0;
    --blue-dark: #3BA9D6;
    --blue-glow: rgba(91, 192, 235, 0.3);
    --blue-glow-strong: rgba(91, 192, 235, 0.6);
    --yellow: #F4A100;
    --yellow-light: #FFB627;
    --yellow-glow: rgba(244, 161, 0, 0.3);
    --silver: #D4D4D4;
    --silver-light: #E8E8E8;
    --silver-dark: #A8A8A8;
    --silver-glow: rgba(212, 212, 212, 0.3);
    /* Accent = silver for headings, blue for links/buttons */
    --gold: var(--silver);
    --gold-light: var(--silver-light);
    --gold-dark: var(--silver-dark);
    --gold-matte: var(--silver-dark);
    --gold-glow: var(--silver-glow);
    --gold-glow-strong: rgba(212, 212, 212, 0.5);
    /* Blue accent for interactive elements */
    --accent: var(--blue);
    --accent-light: var(--blue-light);
    --accent-glow: var(--blue-glow);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 1.5rem 0;
    position: relative;
    z-index: 2;
}

/* ===== PRELOADER / SPRAY ANIMATION ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.spray-scene {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spray-bottle-img {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(91, 192, 235, 0.3));
}

/* Spray streaks — shoot right from nozzle area */
.streak {
    position: absolute;
    height: 3px;
    width: 0;
    opacity: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(91, 192, 235, 0.9), rgba(91, 192, 235, 0.3), transparent);
    left: 62%;
    top: 32%;
    transform-origin: left center;
    z-index: 1;
}
.streak-1 { transform: rotate(-20deg); }
.streak-2 { transform: rotate(0deg); }
.streak-3 { transform: rotate(20deg); }

/* Mist dots — scatter to the right of nozzle */
.mist-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(91, 192, 235, 0.6);
    opacity: 0;
    z-index: 1;
}
.md1 { top: 28%; left: 65%; }
.md2 { top: 34%; left: 70%; }
.md3 { top: 40%; left: 63%; }
.md4 { top: 32%; left: 76%; }
.md5 { top: 44%; left: 68%; }
.md6 { top: 36%; left: 80%; }

/* Big bubble — floats up from spray */
.big-bubble {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(91, 192, 235, 0.4);
    background: radial-gradient(circle at 30% 30%, rgba(91, 192, 235, 0.15), transparent 70%);
    top: 28%;
    left: 68%;
    opacity: 0;
    z-index: 3;
}

/* Sparkles — scattered around the spray area */
.sparkle {
    position: absolute;
    color: var(--blue);
    font-size: 1rem;
    opacity: 0;
    z-index: 3;
    transform: scale(0.5);
}
.sp1 { top: -10%; left: 80%;  font-size: 1.2rem; }
.sp2 { top: -5%;  left: 95%;  font-size: 0.9rem; }
.sp3 { top: 10%;  left: 92%;  font-size: 1.4rem; }
.sp4 { top: 15%;  left: 80%;  font-size: 1rem; }
.sp5 { top: -12%; left: 68%;  font-size: 1.1rem; }
.sp6 { top: 12%;  left: 98%;  font-size: 0.8rem; }

/* ===== SPLASH LANDING PAGE ===== */
.splash {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.splash.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bub {
    position: absolute;
    bottom: -80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(91,192,235,0.55), rgba(91,192,235,0.1));
    border: 1px solid rgba(91,192,235,0.3);
    box-shadow: 0 0 10px rgba(91,192,235,0.3), inset 0 0 6px rgba(255,255,255,0.12);
    animation: bubUp linear infinite;
}

@keyframes bubUp {
    0%   { transform: translateY(0) translateX(0) scale(0.5); opacity: 0; }
    5%   { opacity: 0.75; }
    25%  { transform: translateY(-25vh) translateX(10px) scale(0.8); opacity: 0.6; }
    50%  { transform: translateY(-50vh) translateX(-8px) scale(0.95); opacity: 0.45; }
    75%  { transform: translateY(-75vh) translateX(6px) scale(1); opacity: 0.25; }
    100% { transform: translateY(-110vh) translateX(-4px) scale(1); opacity: 0; }
}

.b1  { width:15px; height:15px; left:5%;  animation-duration:4s;   animation-delay:0s; }
.b2  { width:25px; height:25px; left:12%; animation-duration:5s;   animation-delay:0.3s; }
.b3  { width:40px; height:40px; left:20%; animation-duration:6s;   animation-delay:0.8s; }
.b4  { width:18px; height:18px; left:28%; animation-duration:4.5s; animation-delay:1.2s; }
.b5  { width:35px; height:35px; left:35%; animation-duration:5.5s; animation-delay:0.1s; }
.b6  { width:12px; height:12px; left:42%; animation-duration:3.5s; animation-delay:0.6s; }
.b7  { width:50px; height:50px; left:48%; animation-duration:7s;   animation-delay:1.5s; }
.b8  { width:20px; height:20px; left:55%; animation-duration:4s;   animation-delay:0.4s; }
.b9  { width:30px; height:30px; left:62%; animation-duration:5s;   animation-delay:1s; }
.b10 { width:22px; height:22px; left:70%; animation-duration:4.2s; animation-delay:0.2s; }
.b11 { width:45px; height:45px; left:78%; animation-duration:6.5s; animation-delay:0.7s; }
.b12 { width:14px; height:14px; left:85%; animation-duration:3.8s; animation-delay:1.3s; }
.b13 { width:28px; height:28px; left:92%; animation-duration:5.2s; animation-delay:0.5s; }
.b14 { width:32px; height:32px; left:8%;  animation-duration:5.8s; animation-delay:1.8s; }
.b15 { width:16px; height:16px; left:18%; animation-duration:4.1s; animation-delay:2.1s; }
.b16 { width:38px; height:38px; left:25%; animation-duration:6.2s; animation-delay:0.9s; }
.b17 { width:20px; height:20px; left:33%; animation-duration:4.4s; animation-delay:1.6s; }
.b18 { width:55px; height:55px; left:40%; animation-duration:7.5s; animation-delay:0.2s; }
.b19 { width:13px; height:13px; left:50%; animation-duration:3.6s; animation-delay:1.1s; }
.b20 { width:26px; height:26px; left:58%; animation-duration:5.3s; animation-delay:2.0s; }
.b21 { width:42px; height:42px; left:65%; animation-duration:6.8s; animation-delay:0.4s; }
.b22 { width:17px; height:17px; left:73%; animation-duration:4.3s; animation-delay:1.4s; }
.b23 { width:34px; height:34px; left:80%; animation-duration:5.6s; animation-delay:0.6s; }
.b24 { width:10px; height:10px; left:88%; animation-duration:3.2s; animation-delay:1.9s; }
.b25 { width:48px; height:48px; left:3%;  animation-duration:7.2s; animation-delay:1.0s; }
.b26 { width:22px; height:22px; left:15%; animation-duration:4.6s; animation-delay:0.3s; }
.b27 { width:30px; height:30px; left:45%; animation-duration:5.4s; animation-delay:1.7s; }
.b28 { width:19px; height:19px; left:53%; animation-duration:4.0s; animation-delay:2.2s; }
.b29 { width:36px; height:36px; left:68%; animation-duration:5.9s; animation-delay:0.1s; }
.b30 { width:24px; height:24px; left:95%; animation-duration:4.8s; animation-delay:1.5s; }

.splash-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.splash-logo {
    display: block;
    margin: 0 auto 1.5rem;
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(91, 192, 235, 0.3));
    cursor: pointer;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.splash-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 40px rgba(91, 192, 235, 0.5));
}

.splash-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: var(--white);
    text-shadow:
        0 0 6px rgba(255, 255, 255, 0.75),
        0 0 20px rgba(200, 220, 255, 0.75),
        0 0 45px rgba(160, 190, 255, 0.65),
        0 0 90px rgba(140, 170, 255, 0.45),
        0 5px 10px rgba(0, 0, 0, 1);
    margin-bottom: 0.3rem;
}

.splash-subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.splash-tagline {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-bottom: 2.5rem;
}

.splash-hint {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(91,192,235,0.6);
    margin-top: 1rem;
}

.splash-enter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.splash-enter:hover {
    background: var(--blue);
    color: var(--black);
    box-shadow: 0 0 30px var(--blue-glow-strong);
}

.splash-sparkles {
    display: none;
}

.splash-star {
    position: absolute;
    color: var(--silver);
    opacity: 0;
    animation: splashTwinkle 3s ease-in-out infinite;
}

.ss1 { top: 15%; left: 20%; font-size: 1.4rem; animation-delay: 0s; }
.ss2 { top: 25%; right: 18%; font-size: 1rem; animation-delay: 0.6s; }
.ss3 { bottom: 30%; left: 15%; font-size: 1.6rem; animation-delay: 1.2s; }
.ss4 { bottom: 20%; right: 22%; font-size: 0.9rem; animation-delay: 1.8s; }
.ss5 { top: 45%; right: 12%; font-size: 1.2rem; animation-delay: 2.4s; }

@keyframes splashTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 0.7; transform: scale(1.2) rotate(180deg); }
}

/* ===== SPLASH BUBBLES (old — kept for .splash-bubble fallback) ===== */

.splash-bubble {
    position: absolute;
    bottom: -20%;
    border-radius: 50%;
    border: 1px solid rgba(91, 192, 235, 0.25);
    background: radial-gradient(circle at 30% 30%, rgba(91, 192, 235, 0.08), transparent 70%);
    animation: splashFloat linear infinite;
}

.sb1 { width: 22px; height: 22px; left: 8%;  animation-duration: 9s;  animation-delay: 0s; }
.sb2 { width: 14px; height: 14px; left: 22%; animation-duration: 11s; animation-delay: 1.5s; }
.sb3 { width: 30px; height: 30px; left: 38%; animation-duration: 10s; animation-delay: 3s; }
.sb4 { width: 18px; height: 18px; left: 55%; animation-duration: 12s; animation-delay: 0.8s; }
.sb5 { width: 12px; height: 12px; left: 68%; animation-duration: 8s;  animation-delay: 4s; }
.sb6 { width: 26px; height: 26px; left: 82%; animation-duration: 10s; animation-delay: 2s; }
.sb7 { width: 16px; height: 16px; left: 45%; animation-duration: 13s; animation-delay: 5s; }
.sb8 { width: 20px; height: 20px; left: 92%; animation-duration: 9s;  animation-delay: 3.5s; }

@keyframes splashFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(-10vh) translateX(5px) scale(0.8);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-55vh) translateX(-8px) scale(1);
    }
    90% {
        opacity: 0.15;
        transform: translateY(-100vh) translateX(4px) scale(1.1);
    }
    100% {
        opacity: 0;
        transform: translateY(-120vh) translateX(0) scale(1.2);
    }
}

/* ===== PAGE SPARKLES ===== */
.page-sparkles {
    display: none;
}

.page-star {
    position: absolute;
    color: var(--gold);
    opacity: 0;
    animation: pageTwinkle ease-in-out infinite;
}

.ps1  { top: 8%;  left: 5%;  font-size: 1.2rem; animation-duration: 4s;  animation-delay: 0s; }
.ps2  { top: 15%; right: 8%; font-size: 0.9rem; animation-duration: 3.5s; animation-delay: 0.7s; }
.ps3  { top: 30%; left: 12%; font-size: 1.4rem; animation-duration: 5s;  animation-delay: 1.3s; }
.ps4  { top: 40%; right: 15%; font-size: 1rem;  animation-duration: 4.2s; animation-delay: 2s; }
.ps5  { top: 55%; left: 3%;  font-size: 1.1rem; animation-duration: 3.8s; animation-delay: 0.4s; }
.ps6  { top: 65%; right: 6%; font-size: 1.3rem; animation-duration: 4.5s; animation-delay: 1.8s; }
.ps7  { top: 75%; left: 18%; font-size: 0.8rem; animation-duration: 3.2s; animation-delay: 2.5s; }
.ps8  { top: 85%; right: 20%; font-size: 1.5rem; animation-duration: 5.2s; animation-delay: 0.9s; }
.ps9  { top: 22%; left: 45%; font-size: 1rem;  animation-duration: 4.8s; animation-delay: 3s; }
.ps10 { top: 50%; right: 40%; font-size: 1.1rem; animation-duration: 3.6s; animation-delay: 1.5s; }

@keyframes pageTwinkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 0.5; transform: scale(1.1) rotate(180deg); }
}

/* ===== CURSOR GLOW ===== */
.cursor-glow {
    display: none;
}

/* ===== PARTICLE CANVAS ===== */
#particles-canvas {
    display: none;
}

/* ===== HEADER ===== */
.header {
    display: none !important;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 100;
}

.logo-img {
    height: 32px;
    width: auto;
    filter: drop-shadow(0 0 6px var(--gold-glow));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    z-index: 100;
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    transition: var(--transition);
}

.hamburger { top: 50%; transform: translateY(-50%); }
.hamburger::before { content: ''; top: -8px; }
.hamburger::after { content: ''; top: 8px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--white-dim);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue);
    transition: width var(--transition);
}

.nav-link:hover { color: var(--blue); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--blue); }
.nav-link.active::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta::after { display: none; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--blue-glow);
    color: var(--black) !important;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    overflow: hidden;
}

/* Lock home page — no scroll, app-style */
.page-home {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
}

.page-home .footer {
    display: none;
}

/* Dramatic gradient orb behind hero */
.hero::before {
    display: none;
}

@keyframes heroOrb {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero logo - big centered brand mark */
.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo-img {
    width: clamp(160px, 28vw, 260px);
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(91, 192, 235, 0.15));
}

@keyframes heroLogoGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(91, 192, 235, 0.2)); }
    50% { filter: drop-shadow(0 0 60px rgba(91, 192, 235, 0.35)); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(91, 192, 235, 0.08);
    border: 1px solid rgba(91, 192, 235, 0.2);
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--gold-glow-strong); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-title {
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.title-gradient {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px var(--gold-glow));
}

/* Outline version of PRISTINE for layered depth */
.title-line:first-child {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: var(--white);
    text-shadow:
        0 0 8px rgba(255, 255, 255, 0.72),
        0 0 23px rgba(200, 220, 255, 0.68),
        0 0 60px rgba(160, 190, 255, 0.53),
        0 0 105px rgba(140, 170, 255, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.95);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--white-dim);
    margin-bottom: 2.5rem;
    letter-spacing: 0.05em;
}

/* Navigation Hub - section picker */
.nav-hub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.7rem;
    max-width: 480px;
    margin: 0 auto;
}

.nav-hub-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.9rem 0.6rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(91, 192, 235, 0.15);
    border-radius: 12px;
    color: var(--white-dim);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-hub-btn:hover {
    background: rgba(91, 192, 235, 0.08);
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--blue-glow);
}

.nav-hub-cta {
    border-color: var(--blue);
    color: var(--blue);
}

.nav-hub-cta:hover {
    background: var(--blue);
    color: var(--black);
}

.nav-hub-icon {
    font-size: 1.5rem;
}

/* Back to Top / Menu button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(91, 192, 235, 0.3);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 192, 235, 0.2);
}

/* Hero rings */
.hero-rings {
    display: none;
}

.ring {
    display: none;
}

.ring-1 { width: 500px; height: 500px; animation: ringPulse 8s infinite; }
.ring-2 { width: 700px; height: 700px; animation: ringPulse 10s infinite 1s; }
.ring-3 { width: 900px; height: 900px; animation: ringPulse 12s infinite 2s; }

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.1; }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(91, 192, 235, 0.2);
    border-radius: 50px;
    background: rgba(91, 192, 235, 0.04);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Gold divider between sections */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== ABOUT ===== */
.about-content {
    display: grid;
    gap: 2.5rem;
}

/* Stats counter row */
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.04), rgba(0, 0, 0, 0.6));
    border: 1px solid rgba(91, 192, 235, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--gold-light);
    font-weight: 300;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white-muted);
    margin-top: 0.5rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(91, 192, 235, 0.3), transparent);
}

.about-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--white-dim);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--white-muted);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.feature-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: rgba(91, 192, 235, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.2rem;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.feature-card p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== SERVICES ===== */

.services-intro {
    text-align: center;
    color: var(--white-dim);
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #141414);
    border: 1px solid rgba(91, 192, 235, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-align: center;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-card:hover {
    border-color: rgba(91, 192, 235, 0.4);
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(91, 192, 235, 0.06);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card.featured {
    border-color: rgba(91, 192, 235, 0.3);
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.06), rgba(0, 0, 0, 0.9));
}

.service-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-img {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.service-price {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.service-list {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    padding-left: 1.2rem;
    position: relative;
}

.service-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.6rem;
    top: 0.3rem;
}

/* ===== ADD-ONS ===== */
.addons-section {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.addons-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
}

.addons-title::before,
.addons-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.addons-title::before { right: calc(50% + 60px); }
.addons-title::after { left: calc(50% + 60px); }

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 2rem;
}

.addon-item {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.addon-name {
    color: var(--white-dim);
    font-size: 0.88rem;
    white-space: nowrap;
}

.addon-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(91, 192, 235, 0.2);
    min-width: 20px;
    margin-bottom: 3px;
}

.addon-price {
    color: var(--gold);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ===== PRODUCTS ===== */

/* ===== PROCESS ===== */
.process-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(91, 192, 235, 0.1));
}

.process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(91, 192, 235, 0.15);
}

.process-content {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a, #141414);
    border: 1px solid rgba(91, 192, 235, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-content:hover {
    border-color: rgba(91, 192, 235, 0.25);
    transform: translateX(4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(91, 192, 235, 0.03);
}

.process-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 192, 235, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(91, 192, 235, 0.12);
    overflow: hidden;
}

.process-icon.has-img {
    width: 52px;
    height: 52px;
    padding: 0;
    background: none;
    border-color: rgba(91, 192, 235, 0.2);
}

.process-icon.has-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}

.process-text {
    flex: 1;
}

.process-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.process-content p {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== PRODUCTS (continued) ===== */
.products-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.8;
}

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

.product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover {
    border-color: rgba(91, 192, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(91, 192, 235, 0.04);
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-img {
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.product-brand {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.product-card p {
    color: var(--white-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

/* ===== GALLERY ===== */
.gallery-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-card {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 1px solid rgba(91, 192, 235, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-card:hover {
    border-color: rgba(91, 192, 235, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(91, 192, 235, 0.04);
}

.gallery-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(91, 192, 235, 0.15);
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
    border: 1px solid rgba(91, 192, 235, 0.2);
}

.gallery-before-after {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1.5rem 1.5rem 0;
}

.gallery-ba-slot {
    flex: 1;
    height: 260px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    border: 1px dashed rgba(91, 192, 235, 0.15);
    transition: all var(--transition);
}

.ba-before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.4));
}

.ba-after {
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.04), rgba(0, 0, 0, 0.3));
}

.ba-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white-muted);
}

.gallery-ba-slot .gallery-slot-icon {
    font-size: 1.5rem;
    color: rgba(91, 192, 235, 0.2);
}

.gallery-ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.lightbox-overlay.active img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    background: none;
    border: none;
    font-family: inherit;
}
.lightbox-close:hover {
    opacity: 1;
}

.gallery-ba-arrow {
    flex-shrink: 0;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.4;
}

.gallery-card-info {
    padding: 1.2rem 1.5rem 1.5rem;
}

.gallery-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.gallery-card-info p {
    color: var(--white-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
}

.gallery-card-tag {
    display: block;
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    opacity: 0.7;
}

.gallery-coming-soon {
    text-align: center;
    color: var(--white-muted);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-top: 1.5rem;
    font-style: italic;
}

/* ===== LARGE GALLERY (Single Images) ===== */
.gallery-showcase-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-card-large {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border: 1px solid rgba(91, 192, 235, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-card-large:hover {
    border-color: rgba(91, 192, 235, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(91, 192, 235, 0.06);
}

.gallery-card-large .gallery-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(91, 192, 235, 0.15);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    z-index: 2;
    border: 1px solid rgba(91, 192, 235, 0.2);
}

.gallery-image-large {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.gallery-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.gallery-card-large:hover .gallery-img-full {
    transform: scale(1.03);
}

.gallery-card-large .gallery-card-info {
    padding: 1.5rem 2rem 2rem;
}

.gallery-card-large .gallery-card-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-card-large .gallery-card-info p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.gallery-card-large .gallery-card-tag {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .gallery-showcase-large {
        grid-template-columns: 1fr;
    }
    
    .gallery-image-large {
        height: 300px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card.featured {
    border-color: rgba(91, 192, 235, 0.25);
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.04), rgba(0, 0, 0, 0.9));
}

.testimonial-card:hover {
    border-color: rgba(91, 192, 235, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(91, 192, 235, 0.04);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.2rem;
}

.testimonial-quote {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.2rem;
}

.testimonial-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--black);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar.has-img {
    background: none;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}

.testimonial-vehicle {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

/* ===== NOTES / RULES ===== */
.notes-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.note-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 8px;
}
.note-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.note-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--white-dim);
    margin-bottom: 2rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    transition: all var(--transition);
    margin-bottom: 2rem;
}

.contact-phone:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.phone-icon {
    width: 48px;
    height: 48px;
    background: rgba(91, 192, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.phone-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.phone-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 0.2rem;
}

.social-section {
    margin-top: 2rem;
}

.social-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white-muted);
    transition: fill var(--transition);
}

.social-link:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.social-link:hover svg {
    fill: var(--gold);
}

/* ===== FORM ===== */
.contact-form {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--white-dim);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

/* --- Multi-Select Dropdown --- */
.multi-select {
    position: relative;
    width: 100%;
}

.multi-select-trigger {
    width: 100%;
    padding: 0.9rem 1.2rem;
    padding-right: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white-muted);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    user-select: none;
}
.multi-select-trigger:focus,
.multi-select.open .multi-select-trigger {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}
.multi-select.error .multi-select-trigger {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}
.multi-select-placeholder.has-selection {
    color: var(--white);
}
.multi-select-arrow {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.multi-select.open .multi-select-arrow {
    transform: rotate(180deg);
}

.multi-select-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.5rem 0;
    max-height: 280px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.multi-select.open .multi-select-dropdown {
    display: block;
}

.multi-select-group-label {
    padding: 0.5rem 1rem 0.3rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.multi-select-group-label:not(:first-child) {
    margin-top: 0.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.6rem;
}

.multi-select-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 0.9rem;
    color: #d0d0d0;
}
.multi-select-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.multi-select-option input[type="checkbox"] {
    display: none;
}
.multi-select-option .checkmark {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    position: relative;
    transition: all 0.2s ease;
}
.multi-select-option input:checked ~ .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}
.multi-select-option input:checked ~ .checkmark::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.multi-select-option input:checked ~ .option-text {
    color: var(--white);
}

.multi-select-dropdown::-webkit-scrollbar {
    width: 6px;
}
.multi-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}
.multi-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--white-muted);
}

.form-success {
    display: none;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: rgba(91, 192, 235, 0.1);
    border: 1px solid rgba(91, 192, 235, 0.3);
    border-radius: 10px;
    margin-top: 1rem;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.form-success span {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #000;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-light), var(--blue));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--blue-glow-strong);
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.btn-outline:hover {
    background: rgba(91, 192, 235, 0.1);
}

/* ===== FOOTER ===== */
.footer {
    border-top: 1px solid var(--black-border);
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--gold-glow));
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--white-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--white-muted);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--black-border);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-muted);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 5rem 0 1.5rem;
    text-align: center;
    position: relative;
}
.page-hero .section-tag {
    display: inline-block;
    margin-bottom: 0.5rem;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero-lead {
    max-width: 600px;
    margin: 0.5rem auto 0;
    color: var(--white-dim);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== PAGE NAV (inner page navigation) ===== */
.page-home-link {
    display: inline-block;
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}
.page-home-link:hover {
    color: var(--gold-light);
}

.page-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.page-nav-link {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(91, 192, 235, 0.2);
    border-radius: 20px;
    color: var(--white-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.page-nav-link:hover {
    background: rgba(91, 192, 235, 0.08);
    border-color: var(--gold);
    color: var(--gold);
}
.page-nav-cta {
    border-color: var(--gold);
    color: var(--gold);
    font-weight: 600;
}
.page-nav-cta:hover {
    background: var(--gold);
    color: var(--black);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 2.5rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(91, 192, 235, 0.04) 50%, transparent 100%);
}
.cta-banner .section-title {
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HOME PREVIEW SECTIONS ===== */
.home-preview {
    padding: 6rem 0;
}
.home-preview .btn-outline {
    margin-top: 3rem;
}

/* ===== INNER PAGE BODY ===== */
.page-services .services,
.page-about .about,
.page-gallery .gallery,
.page-contact .contact {
    padding-top: 2rem;
}

/* ===== COUPONS SECTION ===== */
.coupons-section {
    padding: 4rem 0 2rem;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.coupon-card {
    background: var(--black-card);
    border: 1px solid var(--blue);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--yellow));
}

.coupon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(91, 192, 235, 0.15);
}

.coupon-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.coupon-content {
    flex: 1;
}

.coupon-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.coupon-description {
    font-size: 0.9rem;
    color: var(--white-dim);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.coupon-code {
    display: inline-block;
    background: rgba(91, 192, 235, 0.15);
    color: var(--blue);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.coupon-code strong {
    color: var(--yellow);
}

/* ===== BEFORE YOU BOOK ===== */
.before-you-book {
    padding: 4rem 0 2rem;
}

.byb-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.byb-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem 1.8rem;
    background: linear-gradient(135deg, rgba(91, 192, 235, 0.03), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(91, 192, 235, 0.12);
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.byb-item:hover {
    border-color: rgba(91, 192, 235, 0.3);
    transform: translateX(4px);
}

.byb-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.byb-text h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.byb-text p {
    color: var(--white-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.byb-text strong {
    color: var(--gold-light);
}

/* ===== FAQ / Q&A ===== */
.faq-section {
    padding-top: 2rem;
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, #1a1a1a, #141414);
    border: 1px solid rgba(91, 192, 235, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(91, 192, 235, 0.25);
}

.faq-item.open {
    border-color: rgba(91, 192, 235, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(91, 192, 235, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.6rem;
}

.faq-answer p {
    color: var(--white-muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0;
}

.faq-answer strong {
    color: var(--gold-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 1rem;
    }
    .hero {
        padding: 1rem 0;
    }
    
    .hero-logo-img {
        width: clamp(120px, 35vw, 180px);
    }
    
    .nav-hub {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 280px;
    }
    
    .nav-hub-btn {
        padding: 0.7rem 0.4rem;
        font-size: 0.65rem;
        border-radius: 10px;
    }
    
    .nav-hub-icon {
        font-size: 1.2rem;
    }
    
    .page-nav-link {
        padding: 0.3rem 0.7rem;
        font-size: 0.65rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .addons-grid {
        grid-template-columns: 1fr;
    }
    
    .splash-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(91, 192, 235, 0.3), transparent);
    }
    
    .gallery-showcase {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        gap: 1rem;
    }
    
    .process-number {
        width: 44px;
        height: 44px;
        font-size: 0.75rem;
    }
    
    .process-line {
        left: 22px;
    }
    
    .process-content {
        padding: 1.2rem 1.4rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .title-line {
        letter-spacing: 0.05em;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}
