/* --- Neon Scrollbar --- */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #0b0f19;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #06b6d4 0%, #3b82f6 100%);
    border-radius: 99px;
    border: 3px solid #0b0f19;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.85), 0 0 25px rgba(59, 130, 246, 0.65);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #38bdf8 0%, #60a5fa 100%);
    box-shadow: 0 0 25px rgba(6, 182, 212, 1), 0 0 40px rgba(59, 130, 246, 0.9);
}

/* --- Core Design System & Tokens --- */
:root {
    /* Color Palette */
    --navy-dark: #0b0f19;      /* Dark Navy background for Hero, Owner, Reviews, Footer */
    --navy-card: #111e38;      /* Slightly lighter navy for cards on dark backgrounds */
    --light-bg: #f3f7fa;       /* Off-white light gray-blue for Services, Process, FAQ */
    --white: #ffffff;
    
    /* Brand Accents & Gradients */
    --green-accent: #10b981;   /* Vibrant green for Top Bar, Badges & Booking CTAs */
    --green-hover: #059669;
    --cyan-glow: #06b6d4;      /* Neon cyan for glowing text highlights */
    
    /* Gradient Presets */
    --cyan-blue-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-hover: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
    --navy-gradient: linear-gradient(180deg, #0b0f19 0%, #080c14 100%);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-slate: #94a3b8;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-light: #e2e8f0;
    --border-dark: rgba(255, 255, 255, 0.12);

    /* Fonts & Radii */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-pill: 9999px;
    --radius-card: 16px;
    --radius-sm: 8px;

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-cyan: 0 8px 25px rgba(6, 182, 212, 0.35);
    --shadow-green: 0 8px 25px rgba(16, 185, 129, 0.35);
}

/* --- Base Reset & Global Keyframe Animations --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy-dark);
    color: var(--text-slate);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    font-weight: 700;
}

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

/* Fade-in & Pulse Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spinNeonLaser {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- 1. Top Announcement Bar --- */
.top-bar {
    background-color: var(--green-accent);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 100;
}

.top-bar a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 6px;
}

/* --- 2. Navigation Header (Sticky Dark) --- */
.main-header {
    background-color: rgba(11, 15, 25, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-dark);
    position: sticky;
    top: 0;
    z-index: 90;
    transition: background-color 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

img.site-logo-img,
.site-logo-img {
    height: 42px !important;
    max-height: 42px !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 2px 10px rgba(6, 182, 212, 0.25));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-brand img.site-logo-img,
.footer-brand .site-logo-img {
    height: 48px !important;
    max-height: 48px !important;
    width: auto !important;
    max-width: 240px !important;
    margin-bottom: 12px !important;
}

.site-logo-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 15px rgba(6, 182, 212, 0.45));
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--cyan-blue-gradient);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: var(--shadow-cyan);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-white);
    letter-spacing: 0.02em;
}

.logo-text span {
    display: block;
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--cyan-glow);
    margin-top: -3px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #cbd5e1;
    transition: color 0.2s, transform 0.2s;
}

.nav-links a:hover {
    color: var(--cyan-glow);
    transform: translateY(-1px);
}

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

.btn-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    padding: 8px 18px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-pill);
    transition: all 0.2s;
}

.btn-text:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--cyan-blue-gradient);
    color: var(--white);
    box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--green-accent);
    color: var(--white);
    box-shadow: var(--shadow-green);
}

.btn-success:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.45);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-pill {
    border-radius: var(--radius-pill);
}

.btn-outline-pill {
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(11, 15, 25, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline-pill:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

.mobile-nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
}

/* --- Layout Container --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: #94a3b8;
    font-size: 1.15rem;
}

/* --- 3. Centered Hero Section with Video/Image Media Overlay --- */
.hero-centered {
    position: relative;
    padding: 130px 0 110px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy-dark);
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: brightness(0.95) contrast(1.1);
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(11, 15, 25, 0.15) 0%, 
        rgba(11, 15, 25, 0.35) 35%, 
        rgba(11, 15, 25, 0.8) 75%, 
        #0b0f19 100%);
    pointer-events: none;
}

.hero-centered-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.top-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--cyan-glow);
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.8s ease-out;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.top-badge .dot {
    font-size: 1rem;
}

.hero-main-title {
    font-size: 4.4rem;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-white);
    margin-bottom: 24px;
    animation: fadeIn 1s ease-out;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.9));
}

.glow-cyan {
    color: var(--cyan-glow);
    background: linear-gradient(90deg, #06b6d4 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.4);
}

.hero-subtitle-centered {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 32px;
    animation: fadeIn 1.2s ease-out;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    animation: fadeIn 1.3s ease-out;
}

.pill {
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    background: rgba(11, 15, 25, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-white);
    backdrop-filter: blur(12px);
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.pill:hover {
    border-color: var(--cyan-glow);
    background: rgba(6, 182, 212, 0.2);
}

.hero-actions-centered {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
    animation: fadeIn 1.4s ease-out;
}

.hero-rating-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #cbd5e1;
    animation: fadeIn 1.5s ease-out;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.hero-rating-proof .stars {
    color: var(--cyan-glow);
    font-weight: 700;
}

/* --- 4. Owner Section (2 Columns) --- */
.owner-section {
    padding: 100px 0;
    background-color: var(--navy-dark);
    border-top: none;
}

.owner-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.owner-image-wrapper {
    position: relative;
    border-radius: 28px;
    padding: 4px;
    overflow: hidden;
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.65), 
                0 0 90px rgba(59, 130, 246, 0.45), 
                0 30px 70px rgba(0, 0, 0, 0.9);
    background: rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.owner-image-wrapper:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 0 75px rgba(6, 182, 212, 0.9), 
                0 0 130px rgba(59, 130, 246, 0.7), 
                0 35px 80px rgba(0, 0, 0, 0.95);
}

.owner-neon-glow {
    position: absolute;
    top: -80%;
    left: -80%;
    width: 260%;
    height: 260%;
    background: conic-gradient(from 0deg, 
        transparent 0%, 
        #06b6d4 20%, 
        #3b82f6 40%, 
        #60a5fa 50%,
        transparent 65%, 
        #06b6d4 85%, 
        transparent 100%);
    animation: spinNeonLaser 3.5s linear infinite;
    opacity: 1;
    filter: blur(14px);
    pointer-events: none;
    z-index: 1;
}

.owner-photo {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.owner-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.owner-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.6;
}

.owner-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
}

.owner-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
}

.stat strong {
    display: block;
    font-size: 1.6rem;
    color: var(--text-white);
}

.stat span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --- 5. Services Section (Ultra-Glassmorphism & Rotating Neon Laser Edge Beam) --- */
.services-section {
    padding: 130px 0;
    background: radial-gradient(circle at 50% 30%, #1e293b 0%, #0b0f19 80%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
}

.services-section .section-header h2 {
    color: var(--text-white);
}

.services-section .section-header p {
    color: #94a3b8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    perspective: 1200px;
}

.services-grid .service-card:nth-child(4) {
    grid-column: 1 / span 1;
}

.services-grid .service-card:nth-child(5) {
    grid-column: 2 / span 1;
}

/* Glass Card Outer Border Wrapper */
.service-card {
    position: relative;
    border-radius: 20px;
    padding: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                opacity 0.7s ease, 
                box-shadow 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Rotating Conic Neon Laser Beam */
.service-card .neon-beam {
    position: absolute;
    top: -75%;
    left: -75%;
    width: 250%;
    height: 250%;
    background: conic-gradient(from 0deg, transparent 0%, #06b6d4 25%, #3b82f6 50%, transparent 75%, #06b6d4 100%);
    animation: spinNeonLaser 5s linear infinite;
    opacity: 0.75;
    filter: blur(4px);
    pointer-events: none;
    z-index: 1;
}

/* Inner Glass Card Content Container */
.service-card .card-inner {
    position: relative;
    z-index: 2;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 38px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

/* Mouse Spotlight Aura Effect inside Glass Card */
.service-card .card-inner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(6, 182, 212, 0.18), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .card-inner::after {
    opacity: 1;
}

.service-card:hover .neon-beam {
    opacity: 1;
    filter: blur(6px);
    animation-duration: 2.5s;
}

/* Services Section 3D Staggered Cyber Entrance Animation (Progressive Enhancement) */
@keyframes cyberCardReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(15deg) scale(0.92);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
    }
}

/* Base style: Guaranteed 100% visibility default (Content NEVER hidden) */
.services-section .service-card {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
    filter: blur(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    will-change: transform, opacity, filter;
}

/* Staggered entrance animation triggered on scroll into view */
.services-section.in-view .service-card,
.services-section.unfolded .service-card {
    animation: cyberCardReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.services-section.in-view .service-card:nth-child(1),
.services-section.unfolded .service-card:nth-child(1) { animation-delay: 0.08s; }

.services-section.in-view .service-card:nth-child(2),
.services-section.unfolded .service-card:nth-child(2) { animation-delay: 0.20s; }

.services-section.in-view .service-card:nth-child(3),
.services-section.unfolded .service-card:nth-child(3) { animation-delay: 0.32s; }

.services-section.in-view .service-card:nth-child(4),
.services-section.unfolded .service-card:nth-child(4) { animation-delay: 0.44s; }

.services-section.in-view .service-card:nth-child(5),
.services-section.unfolded .service-card:nth-child(5) { animation-delay: 0.56s; }

.services-section .service-card:hover {
    transform: translateY(-10px) scale(1.03) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), 0 0 50px rgba(6, 182, 212, 0.5) !important;
    border-color: rgba(6, 182, 212, 0.8) !important;
    z-index: 10;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(6, 182, 212, 0.15);
    color: #38bdf8;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 12px;
}

.service-card p {
    color: #94a3b8;
    font-size: 0.975rem;
}

/* --- 6. How it Works (Process Section - Light Theme) --- */
.process-section {
    padding: 110px 0;
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-light);
}

.process-section .section-header h2 {
    color: var(--text-dark);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background-color: var(--white);
    border-radius: var(--radius-card);
    padding: 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-card .step-num-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-pill);
    background: var(--navy-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-muted);
}

/* --- 7. Before & After Section (hirehbm.com Style Deck & Slider) --- */
.before-after-section {
    padding: 110px 0;
    background: radial-gradient(circle at 50% 50%, #151d2a 0%, #0b0f19 90%);
    position: relative;
    overflow: hidden;
}

.ba-carousel {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    max-width: 1100px;
    perspective: 1200px;
}

.ba-slide {
    position: absolute;
    width: 440px;
    max-width: 84vw;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                filter 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    user-select: none;
    -webkit-user-select: none;
}

.ba-slide[data-pos="center"] {
    transform: translateX(0) scale(1) translateZ(0);
    z-index: 5;
    opacity: 1;
    filter: none;
    pointer-events: auto;
}

.ba-slide[data-pos="left"] {
    transform: translateX(-68%) scale(0.78) translateZ(-120px);
    z-index: 2;
    opacity: 0.35;
    filter: brightness(0.4) blur(1px);
    pointer-events: auto;
    cursor: pointer;
}

.ba-slide[data-pos="right"] {
    transform: translateX(68%) scale(0.78) translateZ(-120px);
    z-index: 2;
    opacity: 0.35;
    filter: brightness(0.4) blur(1px);
    pointer-events: auto;
    cursor: pointer;
}

.ba-slide[data-pos="hidden"] {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.ba-slide:not([data-pos="center"]) .ba-slide-title {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease;
}

.ba-slide[data-pos="center"] .ba-slide-title {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease;
}

.ba-slide:not([data-pos="center"]) .ba-handle,
.ba-slide:not([data-pos="center"]) .ba-line,
.ba-slide:not([data-pos="center"]) .ba-tag {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.ba-slide:not([data-pos="center"]) .ba-range {
    pointer-events: none;
}

.ba-slide-title {
    text-align: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.ba {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 35px rgba(6, 182, 212, 0.3), 0 25px 50px rgba(0, 0, 0, 0.85);
    -webkit-user-select: none;
    user-select: none;
    background: #0b0f19;
}

.ba-slide[data-pos="center"] .ba {
    border-color: var(--cyan-glow);
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.75), 0 0 90px rgba(59, 130, 246, 0.5), 0 30px 60px rgba(0, 0, 0, 0.9);
}

.ba.is-dragging .ba-handle {
    cursor: grabbing;
}

.ba img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.ba-before {
    position: absolute;
    inset: 0;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    clip-path: inset(0 50% 0 0);
}

.ba-before img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.ba-tag {
    position: absolute;
    top: 16px;
    z-index: 3;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.ba-tag.before {
    left: 16px;
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ba-tag.after {
    right: 16px;
    background: rgba(6, 182, 212, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--cyan-glow);
    box-shadow: 0 0 15px var(--cyan-glow);
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
    pointer-events: none;
}

.ba-handle-inner {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cyan-blue-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-cyan);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.ba-range {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    background: transparent;
    cursor: ew-resize;
    z-index: 10;
    pointer-events: auto;
    opacity: 0;
}

.ba-slide:not([data-pos="center"]) .ba-range {
    pointer-events: none !important;
}

.ba-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 52px;
    height: 100%;
    cursor: ew-resize;
}

.ba-range::-moz-range-thumb {
    width: 52px;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: ew-resize;
}

/* Dots Navigation */
.ba-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.ba-dots .dot {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
}

.ba-dots .dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.ba-dots .dot.active::before {
    background: var(--cyan-glow);
    transform: scale(1.4);
    box-shadow: 0 0 12px var(--cyan-glow);
}

.card-caption {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.card-caption .badge-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--cyan-glow);
}

.card-caption h3 {
    font-size: 0.95rem;
    color: var(--text-white);
    font-weight: 700;
    margin: 0;
}

/* Navigation Arrow Buttons */
.roulette-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.roulette-prev {
    left: -20px;
}

.roulette-next {
    right: -20px;
}

.roulette-arrow:hover {
    background: var(--cyan-blue-gradient);
    border-color: transparent;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.8);
}

/* Dots Indicator */
.roulette-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.roulette-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.roulette-dot.active {
    width: 34px;
    border-radius: 99px;
    background: var(--cyan-blue-gradient);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.8);
}

.handle-arrow {
    position: absolute;
    width: 44px;
    height: 44px;
    background: var(--cyan-blue-gradient);
    color: var(--white);
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-cyan);
    font-size: 0.85rem;
    font-weight: 700;
}

/* --- 8. Reviews Section (Dark Navy Theme) --- */
.reviews-section {
    padding: 110px 0;
    background-color: var(--navy-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-card);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.4);
}

.review-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-meta .stars {
    color: #06b6d4;
    font-weight: 700;
}

.review-meta .source {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cyan-glow);
}

.review-text {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 24px;
    color: #e2e8f0;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: #94a3b8;
}

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

.reviews-cta a {
    color: var(--cyan-glow);
    font-weight: 600;
}

/* --- 9. FAQ Section (Light Background) --- */
.faq-section {
    padding: 110px 0;
    background-color: var(--light-bg);
}

.faq-section .section-header h2 {
    color: var(--text-dark);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--cyan-glow);
}

.faq-trigger {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--cyan-glow);
    transition: transform 0.3s;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}

.faq-content p {
    padding: 0 28px 24px 28px;
    color: var(--text-muted);
    font-size: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 300px;
}

/* --- 10. Booking Wrapper & Wizard Section --- */
.booking-section-wrapper {
    padding: 110px 0;
    background-color: var(--navy-dark);
    border-top: 1px solid var(--border-dark);
}

.booking-card {
    max-width: 960px;
    margin: 0 auto;
    background-color: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-card);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

/* Progress Tracker */
.progress-bar {
    display: flex;
    border-bottom: 1px solid var(--border-dark);
    background-color: rgba(0, 0, 0, 0.2);
}

.progress-bar .step {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-right: 1px solid var(--border-dark);
    opacity: 0.4;
    transition: opacity 0.3s;
}

.progress-bar .step:last-child {
    border-right: none;
}

.progress-bar .step.active {
    opacity: 1;
    background-color: rgba(6, 182, 212, 0.08);
}

.progress-bar .step.completed {
    opacity: 1;
    color: var(--green-accent);
}

.progress-bar .step.completed .step-num {
    background-color: var(--green-accent);
    color: white;
}

.step-num {
    width: 30px;
    height: 30px;
    border-radius: var(--radius-pill);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step.active .step-num {
    background: var(--cyan-blue-gradient);
}

.step-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Form Steps */
.form-step {
    display: none;
    padding: 40px;
}

.form-step.active {
    display: block;
}

.step-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.booking-options h3, .booking-schedule h3, .step-title h3 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 24px;
}

/* Form Inputs Dark Theme */
.input-group {
    margin-bottom: 20px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 8px;
}

select, input[type="text"], input[type="tel"], input[type="email"], textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.975rem;
    color: var(--text-white);
    background-color: rgba(11, 15, 25, 0.6);
    transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus, input:focus, textarea:focus {
    outline: none;
    border-color: var(--cyan-glow);
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

select option {
    background-color: var(--navy-dark);
    color: var(--text-white);
}

/* Checkboxes */
.options-checkboxes {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.checkbox-label input {
    width: 20px;
    height: 20px;
    accent-color: var(--cyan-glow);
}

/* Live Price */
.dynamic-price-box {
    margin-top: 30px;
    padding: 24px;
    background-color: rgba(11, 15, 25, 0.7);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dynamic-price-box span {
    font-weight: 600;
    color: var(--text-white);
}

.dynamic-price {
    font-size: 2rem;
    color: var(--cyan-glow);
    font-family: var(--font-heading);
}

/* Calendar styling */
.calendar-container {
    background-color: rgba(11, 15, 25, 0.7);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-white);
    padding: 4px 10px;
}

.calendar-header span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.2s;
}

.calendar-day:hover:not(.disabled) {
    background-color: rgba(255, 255, 255, 0.1);
}

.calendar-day.selected {
    background: var(--cyan-blue-gradient) !important;
    color: white !important;
    box-shadow: var(--shadow-cyan);
}

.calendar-day.today {
    border: 2px solid var(--cyan-glow);
}

.calendar-day.disabled {
    color: rgba(255, 255, 255, 0.25);
    cursor: not-allowed;
    pointer-events: none;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    background-color: rgba(11, 15, 25, 0.6);
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover {
    border-color: var(--cyan-glow);
}

.time-slot.selected {
    background: var(--cyan-blue-gradient);
    color: white;
    border-color: var(--cyan-glow);
    box-shadow: var(--shadow-cyan);
}

.time-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #94a3b8;
}

/* Step Navigation buttons container */
.actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    border-top: 1px solid var(--border-dark);
    padding-top: 24px;
    margin-top: 30px;
}

.actions button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Step 3: Summary details */
.booking-summary {
    background-color: rgba(11, 15, 25, 0.7);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-dark);
    color: #cbd5e1;
}

.summary-item strong {
    color: var(--text-white);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    padding-top: 20px;
    border-top: 2px solid var(--border-dark);
}

.summary-item.total .price {
    font-size: 1.8rem;
    color: var(--cyan-glow);
    font-family: var(--font-heading);
}

.booking-notice {
    padding: 16px 20px;
    background-color: rgba(6, 182, 212, 0.1);
    border-left: 4px solid var(--cyan-glow);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 30px;
}

/* Payment pref selection */
.payment-selection-box {
    margin-bottom: 30px;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 12px;
}

.method-card {
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(11, 15, 25, 0.6);
    color: var(--text-white);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.method-card input {
    accent-color: var(--cyan-glow);
}

.method-card:has(input:checked) {
    border-color: var(--cyan-glow);
    background-color: rgba(6, 182, 212, 0.1);
}

/* --- 11. Footer (Dark Theme) --- */
.main-footer {
    background-color: #080c14;
    color: #64748b;
    padding: 80px 0 30px 0;
    border-top: 1px solid var(--border-dark);
}

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

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

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-links h4 {
    color: var(--text-white);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: color 0.2s;
    font-size: 0.95rem;
    color: #94a3b8;
}

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

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

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

/* --- Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background-color: var(--navy-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-card);
    max-width: 500px;
    width: 100%;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--green-accent);
    font-size: 2rem;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-weight: 700;
    box-shadow: var(--shadow-green);
}

.modal-card h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.modal-card p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.notification-status {
    background-color: rgba(11, 15, 25, 0.8);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.status-item.active {
    color: var(--text-white);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-pill);
    background-color: #334155;
}

.status-item.active .status-dot {
    background-color: var(--green-accent);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

/* Responsive queries */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
    }
    .hero-main-title {
        font-size: 3.2rem;
    }
    .owner-grid {
        grid-template-columns: 1fr;
    }
    .step-body {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .hero-main-title {
        font-size: 2.5rem;
    }
    .hero-centered {
        padding: 90px 0 70px 0;
    }
    .form-step {
        padding: 24px;
    }
    .progress-bar .step {
        padding: 12px;
    }
    .progress-bar .step-label {
        display: none;
    }
    .input-grid, .payment-methods-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Booking CTA Section (index.html) & Dedicated Page (booking.html) Styles
   ========================================================================== */

/* Booking CTA Card on Homepage */
.booking-cta-card {
    background: linear-gradient(135deg, rgba(21, 29, 42, 0.95) 0%, rgba(11, 15, 25, 0.98) 100%);
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: 28px;
    padding: 55px 40px;
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.25), 0 30px 70px rgba(0, 0, 0, 0.8);
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.booking-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-pill-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--cyan-glow);
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.booking-cta-card h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 36px auto;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    text-align: left;
}

.cta-feature-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.cta-feature-box:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.4);
}

.feature-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.cta-feature-box h3 {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-feature-box p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.45;
}

.cta-button-wrapper {
    margin-top: 20px;
}

.cta-big-btn {
    padding: 18px 42px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5), 0 10px 25px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Dedicated booking.html Page Layout */
.booking-page-body {
    background-color: #0b0f19;
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.booking-header {
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

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

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

.phone-link {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--cyan-glow);
}

.booking-main-wrapper {
    flex: 1;
    padding: 40px 0 60px 0;
}

.booking-grid-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    align-items: start;
}

/* Left Sidebar (Trust & Proof) */
.booking-trust-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timer-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.timer-icon {
    font-size: 1.8rem;
}

.timer-label {
    display: block;
    font-size: 0.78rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timer-digits {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cyan-glow);
    font-family: monospace;
}

.proof-card {
    background: rgba(21, 29, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.proof-card .stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.proof-card strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.proof-card p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.4;
}

.proof-ba-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-img-box {
    position: relative;
    aspect-ratio: 4 / 3;
}

.proof-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-img-box .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
}

.proof-img-box .tag.before { background: rgba(16, 185, 129, 0.9); }
.proof-img-box .tag.after { background: rgba(6, 182, 212, 0.9); }

.trust-bullets {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(21, 29, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
}

.trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.trust-item .check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: var(--green-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.trust-item strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.trust-item p {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 0;
}

.booking-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
    font-size: 0.88rem;
    color: #64748b;
}

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

.booking-footer .back-link {
    color: var(--cyan-glow);
    text-decoration: none;
    font-weight: 600;
}

.booking-footer .back-link:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    .booking-grid-layout {
        grid-template-columns: 1fr;
        max-width: 960px;
        margin: 0 auto;
    }
    .booking-trust-sidebar {
        order: 2;
    }
    .booking-wizard-wrapper {
        order: 1;
        width: 100%;
    }
}

/* Multi-Service Picker Styles */
.service-picker-intro {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.multi-service-picker {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.service-qty-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-qty-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.service-qty-card.active {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #fff;
}

.service-icon {
    font-size: 1.2rem;
}

.service-qty-price {
    display: block;
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 4px;
}

.qty-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(11, 15, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 4px 10px;
}

.btn-qty {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(6, 182, 212, 0.2);
    color: var(--cyan-glow);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.1s ease;
}

.btn-qty:hover {
    background: var(--cyan-glow);
    color: #0b0f19;
    transform: scale(1.05);
}

.qty-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    min-width: 24px;
    text-align: center;
}

.margin-top-15 {
    margin-top: 15px;
}

/* Hidden Admin Link in Footer */
.hidden-admin-go {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 6px;
    font-size: 0.82rem;
    transition: color 0.2s ease, opacity 0.2s ease, text-shadow 0.2s ease;
}

.hidden-admin-go:hover {
    color: var(--cyan-glow);
    opacity: 1;
    text-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
}
