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

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Beis Samech Daled */
.bsd {
    position: fixed;
    top: 8px;
    right: 14px;
    font-family: 'Times New Roman', serif;
    font-size: 14px;
    color: var(--text-secondary, #64748b);
    z-index: 10000;
    pointer-events: none;
    user-select: none;
}

/* ===========================================
   THEME CONFIGURATION - BLUE GRADIENT
   =========================================== */
:root {
    /* Primary Colors - Blue Palette */
    --primary: #3b82f6;
    --primary-rgb: 59, 130, 246;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;

    /* Secondary/Accent Colors */
    --secondary: #60a5fa;
    --accent: #38bdf8;
    --accent-warm: #f59e0b;

    /* Background Colors - Blue Gradient Fades (Stronger) */
    --bg-dark: #bfdbfe;
    --bg-dark-rgb: 191, 219, 254;
    --bg-card: #ffffff;
    --bg-card-rgb: 255, 255, 255;
    --bg-light: #dbeafe;
    --bg-white: #ffffff;
    --bg-gradient-1: #dbeafe;
    --bg-gradient-2: #bae6fd;
    --bg-gradient-3: #e0f2fe;
    --bg-footer: #bfdbfe;

    /* Text Colors */
    --text-dark: #1e293b;
    --text-dark-rgb: 30, 41, 59;

    /* Status Colors */
    --success: #22c55e;
    --success-rgb: 34, 197, 94;
    --error: #ef4444;

    /* Utility */
    --transition: all 0.3s ease;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;

    /* ===========================================
       DESIGN SYSTEM - Visual Polish
       =========================================== */

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;

    --letter-spacing-tight: -0.02em;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.02em;

    /* Consistent Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Layered Shadow System */
    --shadow-sm: 0 1px 2px rgba(var(--primary-rgb), 0.04),
                 0 2px 4px rgba(var(--primary-rgb), 0.04);
    --shadow-md: 0 2px 4px rgba(var(--primary-rgb), 0.03),
                 0 4px 8px rgba(var(--primary-rgb), 0.04),
                 0 8px 16px rgba(var(--primary-rgb), 0.05);
    --shadow-lg: 0 4px 6px rgba(var(--primary-rgb), 0.02),
                 0 8px 16px rgba(var(--primary-rgb), 0.04),
                 0 16px 32px rgba(var(--primary-rgb), 0.06),
                 0 32px 64px rgba(var(--primary-rgb), 0.08);
    --shadow-glow: 0 0 20px rgba(var(--primary-rgb), 0.15),
                   0 0 40px rgba(var(--primary-rgb), 0.1);

    /* Glassmorphism */
    --glass-bg: rgba(var(--white-rgb), 0.85);
    --glass-border: rgba(var(--primary-rgb), 0.1);
    --glass-blur: blur(12px);

    /* Computed Values - Don't edit these directly */
    --primary-color: var(--primary);
    --text-light: #1e293b;
    --text-muted: rgba(var(--text-dark-rgb), 0.65);
    --card-bg: rgba(var(--primary-rgb), 0.08);
    --success-color: var(--success);
    --error-color: var(--error);

    /* Display font for headings/logo */
    --font-family-display: 'Poppins', sans-serif;

    /* Admin page font */
    --font-family-admin: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Additional semantic colors */
    --color-warning: #d97706;
    --color-warning-dark: #b45309;
    --color-success-text: #16a34a;
    --color-danger-text: #dc2626;
    --color-muted: #64748b;
    --color-slate-border: #e2e8f0;
    --color-whatsapp: #25D366;
    --color-zelle-start: #6b21a8;
    --color-zelle-end: #7c3aed;
    --primary-darker: #1e40af;
    --primary-lighter: #5ba8e0;
    --bg-lightest: #f0f9ff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    background: linear-gradient(135deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 50%, var(--bg-gradient-3) 100%);
    color: var(--text-light);
    line-height: var(--line-height-normal);
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #1e3a8a;
    padding: 8px 0;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border-bottom: 3px solid #f59e0b;
}

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

/* Logo with Mascot */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.logo-mascot {
    height: 63px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-family-display);
    font-size: 2.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
}

.logo-text span {
    background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #f59e0b;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-book-active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    transform: scale(0.92);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.8);
}

.mt-sm {
    margin-top: 10px;
}

.mt-md {
    margin-top: 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8% 50px 10%;
    position: relative;
    overflow: hidden;
    gap: 40px;
}

/* Animated gradient background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(167, 139, 250, 0.1) 0%, transparent 40%);
    animation: heroGradientShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(2%, 2%) rotate(1deg);
    }
    50% {
        transform: translate(0, 4%) rotate(0deg);
    }
    75% {
        transform: translate(-2%, 2%) rotate(-1deg);
    }
}

.hero-content {
    max-width: 550px;
    flex: 1;
    min-width: 300px;
    text-align: left;
    z-index: 1;
}

.hero-content .btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    animation: heroButtonReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

@keyframes heroButtonReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-cta {
    animation:
        heroButtonReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards,
        ctaPulse 3s ease-in-out 2s infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: var(--shadow-md);
    }
    50% {
        box-shadow: var(--shadow-lg), var(--shadow-glow);
    }
}

/* Hidden on desktop, shown on mobile */
.mobile-services-brief {
    display: none;
}

.mobile-pricing-grid {
    display: none;
}

.mobile-addons {
    display: none;
}

.mobile-multi-vehicle {
    display: none;
}

.desktop-addons {
    margin-top: 20px;
    padding: 15px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 12px;
}

/* Hide desktop payment on mobile by default */
.desktop-payment {
    display: none;
}

/* Mobile: booking-left-col is transparent wrapper */
.booking-left-col {
    display: contents;
}

.desktop-addons h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.desktop-addons .addon-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.desktop-addons .addon-content {
    display: flex;
    justify-content: space-between;
    flex: 1;
}

.desktop-addons .addon-price {
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
}

/* Quantity Counter for Add-ons */
.addon-item-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 10px;
}

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

.addon-info .addon-name {
    font-weight: var(--font-weight-medium);
}

.addon-info .addon-price {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.2);
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: rgba(var(--primary-rgb), 0.4);
}

.qty-btn:active {
    transform: scale(0.95);
}

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

.mobile-quick-links {
    display: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--primary-dark);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(var(--white-rgb), 0.4),
        transparent
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
}

.hero h1 {
    font-family: var(--font-family-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    color: var(--text-light);
    animation: heroTextReveal 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: heroSpanReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSpanReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    font-weight: var(--font-weight-normal);
    color: var(--text-muted);
    margin-bottom: 60px;
    line-height: var(--line-height-relaxed);
    max-width: 500px;
    animation: heroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-images {
    position: relative;
    flex-shrink: 0;
    width: 500px;
    height: 420px;
    animation: heroImagesReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    opacity: 0;
}

@keyframes heroImagesReveal {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    position: absolute;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-card-back {
    width: 380px;
    height: 275px;
    top: 0;
    right: 0;
    transform: rotate(6deg);
    z-index: 1;
    animation: floatBack 8s ease-in-out infinite;
}

.hero-card-front {
    width: 400px;
    height: 295px;
    bottom: 0;
    left: 0;
    transform: rotate(-4deg);
    z-index: 2;
    box-shadow: var(--shadow-lg);
    animation: floatFront 6s ease-in-out infinite;
}

@keyframes floatBack {
    0%, 100% {
        transform: rotate(6deg) translateY(0) translateX(0);
    }
    25% {
        transform: rotate(7deg) translateY(-8px) translateX(5px);
    }
    50% {
        transform: rotate(5deg) translateY(-15px) translateX(0);
    }
    75% {
        transform: rotate(6deg) translateY(-8px) translateX(-5px);
    }
}

@keyframes floatFront {
    0%, 100% {
        transform: rotate(-4deg) translateY(0) translateX(0);
    }
    33% {
        transform: rotate(-3deg) translateY(-10px) translateX(-3px);
    }
    66% {
        transform: rotate(-5deg) translateY(-5px) translateX(3px);
    }
}

.hero-card-front::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-images:hover .hero-card-back {
    transform: rotate(8deg) translateY(-10px);
}

.hero-images:hover .hero-card-front {
    transform: rotate(-2deg) translateY(-5px);
    box-shadow: 0 40px 80px rgba(var(--primary-rgb), 0.35);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: var(--letter-spacing-tight);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-warm);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
}


/* Services Section */
.services {
    padding: 100px 0 80px;
    background: linear-gradient(180deg, var(--bg-gradient-1) 0%, var(--bg-gradient-2) 100%);
    position: relative;
}

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

.service-card {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--primary-rgb), 0.25);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

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

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.service-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--glass-bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-content {
    padding: 25px 30px 35px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    letter-spacing: var(--letter-spacing-tight);
}

.service-card p {
    color: var(--text-muted);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-relaxed);
}


/* Pricing Section */
.pricing {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(180deg, var(--bg-gradient-2) 0%, var(--bg-gradient-3) 100%);
}


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

.price-card {
    background: var(--glass-bg);
    padding: 30px 25px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.price-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.price-card.featured {
    padding-top: 40px;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.price-card:hover::after {
    opacity: 1;
}

.price-card.selected {
    background: rgba(var(--primary-rgb), 0.05);
    border-color: var(--primary);
}

.price-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow:
        0 8px 16px rgba(var(--primary-rgb), 0.1),
        0 16px 32px rgba(var(--primary-rgb), 0.08);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-warm);
    color: var(--dark) !important;
    padding: 5px 20px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.price-card-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(var(--primary-rgb), 0.03);
}

.price-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.price-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 15px;
    letter-spacing: var(--letter-spacing-tight);
}

.price {
    font-size: 3rem;
    font-weight: var(--font-weight-extrabold);
    letter-spacing: var(--letter-spacing-tight);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

/* Early Bird Special */
.early-bird-banner {
    text-align: center;
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 40px;
}

.early-bird-label {
    color: #dc2626;
    font-weight: var(--font-weight-extrabold);
}

.save-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    z-index: 1;
}

.price-stack {
    margin-bottom: 20px;
}

.price-stack .price {
    margin-bottom: 0;
}

.price-regular {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: var(--font-weight-medium);
    margin-bottom: 2px;
}

.early-bird-note {
    font-size: 0.8rem;
    color: #dc2626;
    font-weight: var(--font-weight-semibold);
    margin: -8px 0 10px;
}

.early-bird-expires {
    text-align: center;
    font-size: 0.95rem;
    color: #dc2626;
    font-weight: var(--font-weight-semibold);
    margin-top: -30px;
    margin-bottom: 40px;
}

.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    padding: 8px 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.15);
}

.features li:last-child {
    border-bottom: none;
}

/* Add-ons Section */
.addons-section {
    background: var(--glass-bg);
    padding: 30px;
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.addons-section h3 {
    text-align: center;
    margin-bottom: 20px;
}

.addons-section-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 30px;
    margin-top: 30px;
}

.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.addon-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.addon-item input {
    display: none;
}

.addon-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(var(--white-rgb), 0.5);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.addon-item input:checked + .addon-content {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
}

.addon-name {
    font-weight: var(--font-weight-medium);
}

.addon-price {
    color: var(--accent-warm);
    font-weight: var(--font-weight-semibold);
}


/* Booking Section */
.booking {
    padding: 80px 0 60px;
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
    position: relative;
}


.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
}

/* Desktop: 3-column booking layout */
@media (min-width: 769px) {
    /* Flatten step wrappers so children become direct grid items */
    .booking-step {
        display: contents;
    }

    /* 3-column grid layout */
    .booking-container {
        display: grid !important;
        grid-template-columns: 1.1fr 0.9fr 1.1fr;
        grid-template-rows: auto;
        gap: 50px;
        align-items: start;
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Left column: Calendar + Time Slots */
    .booking-left-col {
        display: flex !important;
        flex-direction: column;
        gap: 20px;
        grid-column: 1;
        grid-row: 1;
    }

    /* Middle column: Vehicle + Add-ons + Payment */
    .car-selection-booking {
        grid-column: 2;
        grid-row: 1;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
    }

    /* Make vehicle grid 2x2 to fit narrower column */
    .car-selection-booking .car-options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .car-selection-booking .car-option {
        padding: 15px 10px;
    }

    .desktop-addons {
        margin-top: 20px;
        padding: 0;
        background: none;
        border-radius: 0;
    }

    .desktop-addons > h3 {
        display: none;
    }

    .desktop-payment {
        display: block !important;
        margin-top: 30px;
        padding-top: 25px;
        border-top: 2px solid rgba(var(--primary-rgb), 0.15);
        background: transparent;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        box-shadow: none;
    }

    .desktop-payment h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: var(--primary-dark);
        letter-spacing: 0.02em;
    }

    /* Right column: Form */
    .booking-form-section {
        grid-column: 3;
        grid-row: 1;
    }

    /* Hide mobile-only elements on desktop */
    .mobile-step-btn,
    .mobile-step-nav,
    .mobile-multi-vehicle,
    .mobile-addons,
    .mobile-steps-indicator,
    .mobile-payment {
        display: none !important;
    }
}

/* Calendar Styles */
.calendar-section {
    background: var(--glass-bg);
    padding: 25px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

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

.calendar-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-tight);
}

.calendar-nav {
    background: rgba(var(--primary-rgb), 0.1);
    border: none;
    color: var(--text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--primary);
    color: var(--white);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 10px 0;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    background: transparent;
    border: none;
    color: var(--text-light);
}

.calendar-day:hover:not(.disabled):not(.empty):not(.selected) {
    background: rgba(var(--primary-rgb), 0.25);
}

.calendar-day.selected,
.calendar-day.selected:hover,
.calendar-day.selected:focus,
.calendar-day.selected:active {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: var(--white);
    font-weight: 600;
    outline: none;
}

.calendar-day.disabled {
    color: rgba(var(--text-dark-rgb), 0.25);
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

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

.calendar-day.passover {
    background: transparent;
    overflow: hidden;
}

.calendar-day.passover .matza-icon {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}

.calendar-day.purim .purim-icon {
    font-size: 1.3rem;
    line-height: 1;
    opacity: 1;
    filter: none;
}

.calendar-day.purim.disabled {
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

/* Time Slots */
.time-slots-section {
    background: var(--glass-bg);
    padding: 25px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.time-slots-section h3 {
    margin-bottom: 10px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-tight);
}

.selected-date-display {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.time-slots-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
}

.time-slots-message.error {
    color: var(--error);
}

.time-slot {
    padding: 12px;
    background: rgba(var(--white-rgb), 0.5);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.time-slot:hover:not(.unavailable):not(.selected) {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
}

.time-slot.selected,
.time-slot.selected:hover,
.time-slot.selected:focus,
.time-slot.selected:active {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    border-color: transparent;
    font-weight: 600;
    color: var(--white);
    outline: none;
}

.time-slot.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Car Selection in Booking Section */
.car-selection-booking {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
}

.car-selection-booking h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.car-options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.car-option {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    background: rgba(var(--white-rgb), 0.5);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-light);
    gap: 8px;
    box-shadow: var(--shadow-sm);
}

.car-option:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.15);
}

.car-option.selected {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    border-color: transparent;
    color: var(--white);
}

.car-option .car-name {
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
}

.car-option .car-price {
    font-weight: var(--font-weight-bold);
    font-size: 1.2rem;
    opacity: 0.9;
}

.car-option.selected .car-price {
    opacity: 1;
}

/* Desktop Multi-Vehicle Selection */
.desktop-multi-vehicle {
    margin-top: 15px;
}

.btn-add-vehicle {
    width: 100%;
    padding: 12px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 2px dashed var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-vehicle:hover {
    background: rgba(var(--primary-rgb), 0.2);
}

.btn-add-vehicle:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vehicle-list {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vehicle-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

.vehicle-list-item-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.vehicle-list-item-name {
    font-weight: 500;
}

.vehicle-list-item-price {
    color: var(--primary);
    font-weight: 600;
}

.vehicle-list-item-remove {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    opacity: 0.7;
    transition: var(--transition);
}

.vehicle-list-item-remove:hover {
    opacity: 1;
}

/* Booking Form */
.booking-form-section {
    background: var(--glass-bg);
    padding: 25px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.booking-form-section h3 {
    margin-bottom: 20px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-tight);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: var(--letter-spacing-wide);
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(var(--white-rgb), 0.6);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(var(--white-rgb), 0.9);
    box-shadow: var(--shadow-sm), 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-group input::placeholder {
    color: rgba(var(--text-dark-rgb), 0.4);
}

.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(var(--white-rgb), 0.6);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    resize: vertical;
    min-height: 80px;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(var(--white-rgb), 0.9);
    box-shadow: var(--shadow-sm), 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-group textarea::placeholder {
    color: rgba(var(--text-dark-rgb), 0.4);
}

/* Address Autocomplete */
.address-autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.15);
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
    transition: background 0.2s;
}

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

.autocomplete-item:hover {
    background: rgba(var(--primary-rgb), 0.15);
}

.autocomplete-item-main {
    font-weight: 500;
    color: var(--text-light);
}

.autocomplete-item-secondary {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Booking Summary */
.booking-summary {
    background: rgba(var(--white-rgb), 0.5);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: var(--shadow-sm);
}

.booking-summary h4 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.95rem;
}

.summary-item span:first-child {
    color: var(--text-muted);
}

.summary-item.total {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    font-size: 1.2rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
}

.summary-item.total span:last-child {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--text-dark-rgb), 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--glass-bg);
    padding: 50px;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 450px;
    width: 100%;
    animation: modalSlide 0.3s ease;
    box-shadow: var(--shadow-lg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background: rgba(var(--success-rgb), 0.2);
}

.modal-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--success);
}

.modal-content h2 {
    margin-bottom: 10px;
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-tight);
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.modal-details {
    background: rgba(var(--primary-rgb), 0.08);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.modal-details p {
    margin-bottom: 8px;
    color: var(--text-light);
}

.modal-details p:last-child {
    margin-bottom: 0;
}

.modal-details .payment-success {
    color: var(--color-success-text);
    background: rgba(var(--success-rgb), 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
}

.modal-details .payment-pending {
    color: var(--color-warning);
    background: rgba(245, 158, 11, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Confirmation Code Box */
.confirmation-code-box {
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.confirmation-code-box p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.code-display {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.code-hint {
    display: none;
}


/* Footer */
.footer {
    background: linear-gradient(180deg, var(--bg-gradient-1) 0%, var(--bg-footer) 100%);
    padding: 60px 0 20px;
    position: relative;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
}

.footer-mascot {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-info h3.logo-text {
    font-family: var(--font-family-display);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: var(--letter-spacing-tight);
}

.footer-info h3.logo-text span {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--text-muted);
}

.footer-contact h4,
.footer-hours h4 {
    margin-bottom: 15px;
    color: var(--primary);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.footer-contact p,
.footer-hours p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-notice {
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.2);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        padding: 120px 20px 50px;
    }

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-images {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 50px;
        width: 100%;
        max-width: 480px;
        height: 340px;
    }

    .hero-card-back {
        width: 280px;
        height: 200px;
        right: 5%;
    }

    .hero-card-front {
        width: 300px;
        height: 220px;
        left: 5%;
    }

    .price-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1e3a8a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-section {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .logo-mascot {
        height: 50px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .mobile-quick-links {
        display: flex;
        gap: 8px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .mobile-quick-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
    }

    .mobile-quick-links a:hover {
        color: #f59e0b;
    }

    .mobile-quick-links span {
        color: rgba(255, 255, 255, 0.5);
        font-weight: 500;
    }

    .hero {
        padding: 120px 20px 50px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-image {
        height: 180px;
    }

    .hero-images {
        height: 320px;
        max-width: 420px;
    }

    .hero-card-back {
        width: 260px;
        height: 190px;
    }

    .hero-card-front {
        width: 280px;
        height: 205px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .price-card {
        padding: 20px 15px;
    }

    .price-card-image {
        height: 100px;
    }

    .price-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .price {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .price-regular {
        font-size: 0.9rem;
    }

    .save-badge {
        font-size: 0.6rem;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }

    .early-bird-banner {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .early-bird-expires {
        margin-top: -10px;
        margin-bottom: 25px;
    }

    .price-card .features {
        display: none;
    }

    .price-card .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .time-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .addons-section {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-images {
        height: 270px;
        max-width: 340px;
    }

    .hero-card-back {
        width: 210px;
        height: 155px;
    }

    .hero-card-front {
        width: 230px;
        height: 170px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 160px;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .price-card {
        padding: 15px 10px;
    }

    .price-card-image {
        height: 80px;
    }

    .price-card h3 {
        font-size: 1rem;
    }

    .price {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .price-regular {
        font-size: 0.8rem;
    }

    .save-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }

    .price-stack {
        margin-bottom: 10px;
    }

    .price-card .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .popular-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        top: -10px;
    }

    .car-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-option {
        flex-direction: row;
        justify-content: space-between;
        padding: 12px 15px;
        gap: 5px;
    }

    .desktop-multi-vehicle {
        display: none;
    }

    .mobile-multi-vehicle {
        display: block;
        margin-top: 15px;
    }

    .mobile-multi-vehicle .btn-add-vehicle {
        font-size: 0.9rem;
        padding: 10px;
    }

    .mobile-multi-vehicle .vehicle-list-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-mascot {
        height: 50px;
    }

    .footer-info h3.logo-text {
        font-size: 1.4rem;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .addons-section {
        padding: 20px 15px;
    }

    .booking-summary {
        padding: 15px;
    }
}

/* Mobile Step Elements - Hidden on Desktop */
.mobile-steps-indicator {
    display: none;
}

.mobile-step-btn {
    display: none;
}

.mobile-step-nav {
    display: none;
}

/* On desktop, booking-step uses display:contents (set in min-width:769px media query above) */

/* Loading Animation */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* WhatsApp Floating Button */
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1000;
}

.whatsapp-label {
    display: block;
    background: var(--white);
    color: #333;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
        flex-direction: row;
    }

    .whatsapp-label {
        display: block;
        opacity: 0;
        transform: translateX(10px);
        transition: all 0.3s ease;
    }

    .whatsapp-label.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    /* Mobile Layout Reorder - Booking first */
    body {
        display: flex;
        flex-direction: column;
    }

    .navbar {
        order: 0;
    }

    .hero {
        order: 1;
        min-height: 90vh;
        padding: 120px 20px 0;
        position: relative;
        background: linear-gradient(180deg, var(--bg-lightest) 0%, var(--white) 50%, var(--white) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }

    /* Subtle decorative gradient - top right */
    .hero::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
        animation: none;
        transform: none;
    }

    /* Subtle decorative gradient - bottom left */
    .hero::after {
        content: '';
        position: absolute;
        bottom: -80px;
        left: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: flex-start;
        padding: 20px 20px 0;
        background: transparent;
        backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 0;
    }

    .hero-content h1 {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 2.2rem;
        line-height: 1.2;
        color: var(--text-dark);
        text-shadow: none;
        font-weight: 900;
    }

    .hero-content h1 span {
        color: var(--primary) !important;
        -webkit-text-fill-color: var(--primary) !important;
        background: none !important;
        -webkit-background-clip: unset !important;
        background-clip: unset !important;
        text-shadow: none;
        filter: none;
        position: relative;
    }

    /* Subtle highlight underline like flyer */
    .hero-content h1 span::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 0;
        width: 100%;
        height: 8px;
        background: rgba(var(--primary-rgb), 0.2);
        z-index: -1;
    }

    .hero-content p {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.5;
        color: var(--color-muted);
        font-weight: 500;
        text-shadow: none;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hide hero images on mobile */
    .hero-images {
        display: none;
    }

    /* Show CTA button on mobile */
    .hero-content .hero-cta {
        display: inline-flex !important;
        margin-top: 5px;
        margin-bottom: 10px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.3);
    }

    /* Mobile Pricing Grid */
    .mobile-pricing-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: auto;
        padding: 0 10% 15px;
    }

    .mobile-price-card {
        position: relative;
        background: var(--white);
        border-radius: 16px;
        padding: 14px 10px 2px;
        text-align: center;
        border: 2px solid var(--color-slate-border);
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .mobile-price-card:active {
        transform: scale(0.95);
    }

    .mobile-price-card.selected {
        background: rgba(var(--primary-rgb), 0.15);
        box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.4);
    }

    .mobile-price-card.featured.selected {
        background: rgba(var(--primary-rgb), 0.2);
    }

    .mobile-price-card.featured {
        border-color: var(--primary);
        background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.05) 0%, var(--white) 100%);
    }

    .mobile-price-card .popular-tag {
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--accent-warm);
        color: #1e293b;
        font-size: 0.6rem;
        font-weight: 700;
        padding: 3px 10px;
        border-radius: 10px;
        letter-spacing: 0.5px;
    }

    .mobile-price-card img {
        width: 63px;
        height: auto;
        margin-bottom: 8px;
    }

    .mobile-price-card h3 {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0 0 2px 0;
    }

    .mobile-price-card .price {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--primary);
        margin: 0;
        line-height: 1;
    }

    .mobile-price-card .price-stack {
        margin-bottom: 0;
    }

    .mobile-price-card .price-regular {
        font-size: 0.75rem;
        color: #999;
        margin-bottom: 0;
    }

    .early-bird-banner-mobile {
        text-align: center;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--primary-dark);
        padding: 5px 10px;
        margin: 0 auto 8px;
        white-space: nowrap;
        width: fit-content;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(var(--primary-rgb), 0.3);
        border-radius: 10px;
    }

    .early-bird-banner-mobile .early-bird-label {
        color: #dc2626;
        font-weight: 700;
    }

    /* Hide old service brief on mobile (now using pricing grid) */
    .mobile-services-brief {
        display: none;
    }

    /* Hide services and pricing on mobile homepage - users can book directly */
    /* But keep them visible on standalone pages (.services-page, .pricing-page) */
    .services,
    .pricing {
        display: none;
    }

    .services-page .services,
    .pricing-page .pricing {
        display: block;
    }

    /* Show mobile add-ons, hide desktop add-ons on mobile */
    .mobile-addons {
        display: block;
        margin-top: 10px;
    }

    .desktop-addons {
        display: none;
    }

    .mobile-addons h3 {
        display: none;
    }

    .mobile-addons .addon-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 10px;
        background: rgba(var(--primary-rgb), 0.08);
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.85rem;
    }

    /* Bigger text for vehicle selection on mobile */
    .car-option .car-name {
        font-size: 1.1rem;
    }

    .car-option .car-price {
        font-size: 1.05rem;
    }

    /* Booking section right after hero */
    .booking {
        order: 2;
        padding-top: 20px;
    }

    .footer {
        order: 5;
    }

    /* Mobile Multi-Step Booking */
    .mobile-steps-indicator {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 25px;
    }

    .step-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(var(--primary-rgb), 0.25);
        transition: all 0.3s ease;
    }

    .step-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }

    .step-dot.completed {
        background: var(--success);
    }

    .booking-step {
        display: none;
    }

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

    .mobile-step-btn {
        display: block;
        margin-top: 20px;
    }

    .mobile-step-nav {
        display: flex;
        gap: 12px;
        margin-top: 20px;
    }

    .mobile-step-nav .btn {
        flex: 1;
    }

    .booking-container {
        display: block;
    }

    /* Step 2 specific styling */
    .booking-step[data-step="2"] .car-selection-booking {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .booking-step[data-step="2"] .mobile-multi-vehicle {
        display: block;
        margin-top: 15px;
    }

    .booking-step[data-step="2"] .mobile-addons {
        display: block;
        margin-top: 20px;
        position: relative;
        z-index: 5;
    }

    .booking-step[data-step="2"] .mobile-addons h3 {
        display: block;
        margin-bottom: 12px;
        font-size: 1.1rem;
    }

    .booking-step[data-step="2"] .mobile-addons .addon-item-counter {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        background: rgba(var(--primary-rgb), 0.08);
        border-radius: 10px;
    }

    .booking-step[data-step="2"] .mobile-addons .addon-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .booking-step[data-step="2"] .mobile-addons .addon-name {
        font-weight: var(--font-weight-medium);
    }

    .booking-step[data-step="2"] .mobile-addons .addon-price {
        font-size: 0.85rem;
        color: var(--text-muted);
    }

    .booking-step[data-step="2"] .mobile-addons .quantity-counter {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .booking-step[data-step="2"] .mobile-addons .qty-btn {
        width: 48px;
        height: 48px;
        border: none;
        border-radius: 50%;
        background: rgba(var(--primary-rgb), 0.25);
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(var(--primary-rgb), 0.3);
        user-select: none;
        position: relative;
        z-index: 10;
    }

    .booking-step[data-step="2"] .mobile-addons .qty-btn:active {
        background: rgba(var(--primary-rgb), 0.4);
        transform: scale(0.95);
    }

    .booking-step[data-step="2"] .mobile-addons .qty-value {
        min-width: 24px;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
    }

    /* Step 3 back button */
    .booking-step[data-step="3"] .mobile-back-btn {
        margin-top: 15px;
    }

    /* Hide desktop elements in steps on mobile */
    .booking-step .desktop-multi-vehicle,
    .booking-step .desktop-addons {
        display: none;
    }

    /* Mobile Fullscreen Booking Mode (Steps 2 & 3) */
    body.mobile-booking-fullscreen .hero {
        display: none;
    }

    body.mobile-booking-fullscreen .booking {
        padding-top: 100px;
        min-height: 100vh;
    }

    body.mobile-booking-fullscreen .booking .section-title,
    body.mobile-booking-fullscreen .booking .section-subtitle {
        display: none;
    }

    body.mobile-booking-fullscreen .booking-step[data-step="2"] .car-selection-booking h3,
    body.mobile-booking-fullscreen .booking-step[data-step="3"] .booking-form-section h3 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 25px;
        color: var(--primary);
    }

    /* Step 1 fullscreen mode */
    body.mobile-booking-fullscreen .booking-step[data-step="1"] .calendar-section {
        margin-bottom: 30px;
    }

    body.mobile-booking-fullscreen .booking-step[data-step="1"] .time-slots-section h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 15px;
        color: var(--primary);
    }

    body.mobile-booking-fullscreen .booking-step[data-step="1"]::before {
        content: 'Select Date & Time';
        display: block;
        font-size: 1.5rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 25px;
        color: var(--primary);
    }
}

/* ========== PAYMENT SECTION STYLES ========== */
.payment-option-section {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(var(--primary-rgb), 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.payment-option-section > label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.payment-timing-options {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.payment-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.payment-radio:hover {
    border-color: var(--primary);
}

.payment-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.payment-radio input[type="radio"]:checked + .radio-label {
    color: var(--primary);
    font-weight: 600;
}

.payment-radio:has(input:checked) {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

.radio-label {
    font-size: 0.95rem;
}

.payment-methods-dropdown {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(var(--primary-rgb), 0.15);
    animation: slideDown 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-methods-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.payment-method-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    background: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.payment-method-option:hover {
    border-color: var(--primary);
}

.payment-method-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.payment-method-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    margin-top: 2px;
}

.payment-method-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-method-name {
    font-weight: 600;
    color: var(--text);
}

.payment-method-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Zelle Instructions */
.zelle-instructions {
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

.zelle-info-box {
    background: linear-gradient(135deg, var(--color-zelle-start) 0%, var(--color-zelle-end) 100%);
    color: #fff;
    padding: 20px;
    border-radius: var(--radius-md);
}

.zelle-info-box p {
    margin-bottom: 8px;
}

.zelle-details {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.zelle-number {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.zelle-name {
    font-size: 1rem;
    opacity: 0.9;
}

.zelle-note {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 10px;
    margin-bottom: 0 !important;
}

/* Card Payment Section */
.card-payment-section {
    margin-top: 15px;
    animation: slideDown 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
}

#card-container,
#card-container-desktop {
    min-height: 90px;
    padding: 12px;
    background: var(--white);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Constrain Square elements */
#card-container iframe,
#card-container-desktop iframe,
#card-container *,
#card-container-desktop * {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Mobile card container fix */
@media (max-width: 768px) {
    .card-payment-section {
        width: calc(100% - 2px);
    }

    #card-container {
        padding: 10px;
    }
}

/* Square Secure Badge */
.square-secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.square-secure-badge:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-color: #cbd5e1;
}

.square-secure-badge .lock-icon {
    width: 12px;
    height: 12px;
    color: #16a34a;
}

.square-secure-badge strong {
    color: #000;
    font-weight: 600;
}

.payment-status {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.payment-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger-text);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.payment-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: var(--color-success-text);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.payment-status.processing {
    display: block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-dark);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Mobile Payment Styles */
@media (max-width: 768px) {
    .payment-timing-options {
        flex-direction: column;
        gap: 10px;
    }

    .payment-radio {
        padding: 15px;
    }

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

/* =============================================
   Shared Standalone Page Elements
   ============================================= */

.back-home {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.mobile-book-btn {
    display: none;
}

@media (max-width: 768px) {
    .mobile-book-btn {
        display: inline-flex;
    }
}

/* =============================================
   Services Page (Standalone)
   ============================================= */

.services-page {
    min-height: 100vh;
    padding-top: 100px;
}

/* =============================================
   Pricing Page (Standalone)
   ============================================= */

.pricing-page {
    min-height: 100vh;
    padding-top: 100px;
}

.whats-included {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-bottom: 40px;
    border: 1px solid var(--glass-border);
    text-align: center;
}

.whats-included h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: var(--font-weight-semibold);
}

.whats-included ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
}

.whats-included li {
    color: var(--text-dark);
    opacity: 0.8;
    position: relative;
    padding-left: 18px;
}

.whats-included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* =============================================
   Commercial Page
   ============================================= */

.commercial-page {
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
}

.commercial-hero {
    text-align: center;
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.commercial-hero h1 {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.commercial-hero p {
    font-size: 1.1rem;
    color: var(--text-dark);
    opacity: 0.8;
    line-height: var(--line-height-relaxed);
}

.commercial-content {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.benefit-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.benefit-card h3 svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-card p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: var(--line-height-relaxed);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-dark);
    opacity: 0.85;
}

.benefit-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.benefit-card .note {
    margin-top: 12px;
    font-style: italic;
    opacity: 0.85;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.cta-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: var(--transition);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .commercial-hero h1 {
        font-size: 1.8rem;
    }

    .benefit-card {
        padding: 20px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 1.4rem;
    }
}

/* =============================================
   Contact Page
   ============================================= */

.contact-page {
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 15px;
    color: var(--primary);
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-dark);
    opacity: 0.85;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-hours {
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 30px;
    margin-top: 25px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-hours h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-hours p {
    color: var(--text-dark);
    opacity: 0.85;
    line-height: var(--line-height-relaxed);
}

.contact-cta {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 24px 20px;
    }
}

/* =============================================
   Booking Management Page
   ============================================= */

.booking-page {
    min-height: 100vh;
    padding: 100px 20px 50px;
    background: linear-gradient(180deg, var(--bg-gradient-3) 0%, var(--bg-gradient-1) 100%);
}

.booking-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
}

.booking-header h1 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.confirmation-code {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 2px;
    color: var(--white);
}

.booking-status {
    text-align: center;
    margin-bottom: 30px;
}

.status-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-confirmed {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--color-success-text);
}

.status-badge.status-completed {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-dark);
}

.status-badge.status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger-text);
}

.booking-details {
    margin-bottom: 30px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--color-muted);
    font-weight: var(--font-weight-medium);
}

.detail-value {
    font-weight: var(--font-weight-semibold);
    text-align: right;
    color: var(--text-dark);
}

.detail-value.price {
    font-size: 1.4rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
}

.booking-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-actions .btn {
    flex: 1;
    min-width: 150px;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    text-align: center;
}

.btn-edit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

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

.btn-cancel-booking {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-danger-text);
    border: 2px solid var(--color-danger-text) !important;
}

.btn-cancel-booking:hover {
    background: rgba(239, 68, 68, 0.2);
}

.btn-back {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-dark);
    display: block;
}

.btn-back:hover {
    background: rgba(var(--primary-rgb), 0.2);
}

/* Booking Edit Mode */
.edit-form {
    display: none;
}

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

.view-mode.hidden {
    display: none;
}

.edit-form .form-group {
    margin-bottom: 20px;
}

.edit-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-muted);
    font-weight: var(--font-weight-medium);
    font-size: 0.9rem;
}

.edit-form input,
.edit-form select {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    font-size: 1rem;
    font-family: var(--font-family);
    transition: var(--transition);
}

.edit-form input:focus,
.edit-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.edit-form select option {
    background: var(--white);
    color: var(--text-dark);
}

.time-slots-edit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.time-slot-btn {
    padding: 12px;
    background: var(--white);
    border: 2px solid rgba(var(--primary-rgb), 0.15);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-weight: var(--font-weight-medium);
}

.time-slot-btn:hover:not(.unavailable) {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.time-slot-btn.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-color: transparent;
    font-weight: var(--font-weight-semibold);
}

.time-slot-btn.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
    background: #f1f5f9;
}

.edit-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-save {
    background: linear-gradient(135deg, var(--success) 0%, #4ade80 100%);
    color: var(--white);
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition);
}

.btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(var(--success-rgb), 0.3);
}

.btn-cancel-edit {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--text-dark);
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel-edit:hover {
    background: rgba(var(--primary-rgb), 0.2);
}

/* Booking Loading/Error States */
.loading-state,
.error-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-state p {
    color: var(--text-dark);
    font-weight: var(--font-weight-medium);
}

.error-state h2 {
    color: var(--color-danger-text);
    margin-bottom: 15px;
}

.error-state p {
    color: var(--color-muted);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(var(--primary-rgb), 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Booking Cancelled Overlay */
.cancelled-overlay {
    background: rgba(239, 68, 68, 0.08);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.cancelled-overlay p {
    color: var(--color-danger-text);
    font-weight: var(--font-weight-semibold);
}

/* Booking Cutoff Notice */
.cutoff-notice {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.cutoff-notice p {
    color: var(--color-warning-dark);
    margin-bottom: 10px;
}

.cutoff-notice p:last-of-type {
    margin-bottom: 15px;
}

.contact-options {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.contact-btn.email {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-dark);
}

.contact-btn.text {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--color-success-text);
}

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

/* Booking Page Mobile */
@media (max-width: 480px) {
    .booking-page {
        padding: 80px 15px 30px;
    }

    .booking-card {
        padding: 25px 20px;
    }

    .booking-header h1 {
        font-size: 1.5rem;
    }

    .confirmation-code {
        font-size: 0.95rem;
        padding: 8px 18px;
    }

    .detail-row {
        flex-direction: column;
        gap: 5px;
    }

    .detail-value {
        text-align: left;
    }

    .booking-actions {
        flex-direction: column;
    }

    .booking-actions .btn {
        min-width: 100%;
    }

    .time-slots-edit {
        grid-template-columns: repeat(2, 1fr);
    }

    .edit-actions {
        flex-direction: column;
    }
}

/* =============================================
   Admin Dashboard
   ============================================= */

.admin-page {
    font-family: var(--font-family-admin);
    background: linear-gradient(180deg, var(--bg-lightest) 0%, var(--bg-gradient-3) 30%, var(--bg-gradient-1) 60%, var(--bg-dark) 100%);
    min-height: 100vh;
    color: var(--text-dark);
}

.admin-page .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.admin-page header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    margin-bottom: 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.1);
}

.admin-page header h1 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-page .back-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.admin-page .back-link:hover {
    color: var(--primary-darker);
}

.admin-page .filters {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.admin-page .filters label {
    font-weight: 500;
    color: #334155;
}

.admin-page .filters input[type="date"] {
    padding: 10px 15px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
}

.admin-page .filters button {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.admin-page .btn-filter {
    background: var(--primary);
    color: var(--white);
}

.admin-page .btn-filter:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
}

.admin-page .btn-clear {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.admin-page .btn-clear:hover {
    background: rgba(var(--primary-rgb), 0.2);
}

.admin-page .status-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.admin-page .status-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    transition: all 0.3s;
}

.admin-page .status-btn:hover {
    background: rgba(var(--primary-rgb), 0.2);
}

.admin-page .status-btn.active {
    background: var(--primary);
    color: var(--white);
}

.admin-page .status-btn[data-status="confirmed"].active {
    background: var(--success);
    color: var(--white);
}

.admin-page .status-btn[data-status="completed"].active {
    background: var(--primary);
    color: var(--white);
}

.admin-page .status-btn[data-status="cancelled"].active {
    background: var(--error);
    color: var(--white);
}

.admin-page .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-page .stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.08);
}

.admin-page .stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
}

.admin-page .stat-card p {
    color: var(--color-muted);
    margin-top: 5px;
    font-weight: 500;
}

.admin-page .table-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.08);
}

.admin-page table {
    width: 100%;
    border-collapse: collapse;
}

.admin-page th,
.admin-page td {
    padding: 15px 20px;
    text-align: left;
}

.admin-page th {
    background: rgba(var(--primary-rgb), 0.1);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: var(--primary-darker);
}

.admin-page .code-badge {
    background: rgba(var(--primary-rgb), 0.2);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.admin-page tr:nth-child(even) {
    background: rgba(var(--primary-rgb), 0.03);
}

.admin-page tr:hover {
    background: rgba(var(--primary-rgb), 0.08);
}

.admin-page .status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: capitalize;
}

.admin-page .status-confirmed {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--color-success-text);
}

.admin-page .status-completed {
    background: rgba(var(--primary-rgb), 0.15);
    color: var(--primary-dark);
}

.admin-page .status-cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger-text);
}

.admin-page .actions {
    display: flex;
    gap: 8px;
}

.admin-page .actions button {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s;
}

.admin-page .btn-complete {
    background: rgba(var(--success-rgb), 0.15);
    color: var(--color-success-text);
}

.admin-page .btn-cancel {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-danger-text);
}

.admin-page .btn-complete:hover {
    background: var(--success);
    color: var(--white);
}

.admin-page .btn-cancel:hover {
    background: var(--error);
    color: var(--white);
}

.admin-page .no-data {
    text-align: center;
    padding: 40px;
    color: var(--color-muted);
}

.admin-page .phone-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-page .whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.admin-page .whatsapp-link:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.5);
}

.admin-page .whatsapp-link svg {
    width: 16px;
    height: 16px;
}

.admin-page code {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-darker);
}

/* Admin Blocked Slots */
.admin-page .blocked-slots-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(var(--primary-rgb), 0.15);
}

.admin-page .blocked-slots-section h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-danger-text);
}

.admin-page .slot-manager {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.admin-page .slot-date-picker {
    flex: 0 0 auto;
}

.admin-page .slot-date-picker label {
    color: #334155;
    font-weight: 500;
}

.admin-page .slot-date-picker input[type="date"] {
    padding: 10px 15px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
}

.admin-page .slot-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.admin-page .slot-toggle {
    padding: 12px 8px;
    border: 2px solid rgba(var(--success-rgb), 0.4);
    border-radius: 8px;
    background: rgba(var(--success-rgb), 0.1);
    color: var(--color-success-text);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.admin-page .slot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.admin-page .slot-toggle.blocked {
    background: rgba(239, 68, 68, 0.15);
    border-color: var(--error);
    color: var(--color-danger-text);
}

.admin-page .slot-toggle.blocked::after {
    content: ' ✕';
}

.admin-page .slot-grid-placeholder {
    color: var(--color-muted);
    grid-column: 1 / -1;
    text-align: center;
    padding: 20px;
}

/* Admin Mobile Responsive */
@media (max-width: 768px) {
    .admin-page .table-container {
        overflow-x: auto;
    }

    .admin-page table {
        min-width: 800px;
    }

    .admin-page header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .admin-page .filters {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-page .status-filters {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .admin-page .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-page .slot-manager {
        flex-direction: column;
    }

    .admin-page .slot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .admin-page .container {
        padding: 10px;
    }

    .admin-page header {
        padding: 15px 20px;
    }

    .admin-page header h1 {
        font-size: 1.4rem;
    }

    .admin-page .filters {
        padding: 15px;
    }

    .admin-page .stats {
        grid-template-columns: 1fr;
    }

    .admin-page .stat-card {
        padding: 20px;
    }

    .admin-page .stat-card h3 {
        font-size: 2rem;
    }

    .admin-page .status-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}
