/* ==========================================================================
   ParkingOK Premium CSS Stylesheet
   ========================================================================== */

/* Modern CSS Reset & Variable Tokens */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Brand Color Palette (Derived from logo.png) */
    /* Primary: Deep Navy Blue #07466E (HSL: 203, 88%, 23%) */
    --primary-hue: 203;
    --primary-sat: 88%;
    --primary-light: 23%;
    --primary: hsl(var(--primary-hue), var(--primary-sat), var(--primary-light));
    --primary-hover: hsl(var(--primary-hue), var(--primary-sat), calc(var(--primary-light) - 5%));
    --primary-glow: hsla(var(--primary-hue), var(--primary-sat), var(--primary-light), 0.25);
    
    /* Brand Accent Colors (Dark Theme Optimized) */
    --secondary: #22c55e;
    --secondary-hover: #16a34a;

    /* Dark Theme Variables (Default & Only) */
    --bg-base: #0f172a;
    --bg-surface: #1e293b;
    --bg-surface-elevated: #334155;
    --bg-glass: rgba(30, 41, 59, 0.7);
    --border-color: #334155;
    --border-glass: rgba(51, 65, 85, 0.5);
    
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --text-inverse: #0f172a;

    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4), 0 2px 5px rgba(0, 0, 0, 0.15);
    
    --primary-light: 45%;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1200px;
    --header-height: 118px;
}

/* Hide theme toggles since only Dark Theme is active */
.theme-toggle {
    display: none !important;
}


/* Reset & Globals */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
}

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

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

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

/* Layout Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(34, 197, 94, 0.12);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    gap: 8px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--secondary);
    color: #0f172a;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.3);
    color: #0f172a;
}

.btn-secondary {
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

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

/* Header & Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: background-color var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

/* Top Utility Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--text-inverse);
    font-size: 0.82rem;
    font-weight: 500;
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-link {
    color: var(--text-inverse);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.top-bar-link:hover {
    opacity: 0.85;
}

.top-bar-icon {
    width: 14px;
    height: 14px;
    color: var(--secondary);
    opacity: 1;
    stroke-width: 2.5;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height var(--transition-smooth);
}

.header.scrolled .nav-container {
    height: 70px;
}

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-green {
    color: var(--secondary);
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
    transition: filter var(--transition-fast);
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 4px;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width var(--transition-fast);
}

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

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

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

/* Language and Theme Toggles */
.theme-toggle, .lang-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.theme-toggle:hover, .lang-toggle:hover {
    color: var(--text-main);
    background-color: var(--border-color);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

.theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: none;
}

.lang-toggle {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: calc(var(--header-height) + 40px) 0 80px 0;
    background: radial-gradient(circle at 80% 20%, var(--primary-glow) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    display: flex;
    align-items: center;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.1) 85%, transparent 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurns 12s linear forwards;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.7));
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 550px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.75);
}

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

.hero-feature-card {
    background-color: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-feature-card svg {
    color: var(--secondary);
    width: 32px;
    height: 32px;
}

.hero-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.hero-feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Quick Booking Widget in Hero */
.hero-widget {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--hover-shadow);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
}

.hero-widget-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-widget-title svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

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

.widget-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.widget-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.widget-input-wrapper svg {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.widget-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    transition: all var(--transition-fast);
}

.widget-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    background-color: var(--bg-surface);
}

.widget-form-group.error .widget-input {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.hero-widget .btn {
    width: 100%;
    margin-top: 10px;
}

/* About Us Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    background-color: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.about-icon-box {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background-color: rgba(34, 197, 94, 0.12);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-icon-box svg {
    width: 24px;
    height: 24px;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-gallery {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    height: 100%;
    min-height: 300px;
}

.about-gallery img {
    max-width: 90%;
    max-height: 150px;
    object-fit: contain;
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
    transition: transform var(--transition-smooth);
}

.about-gallery:hover img {
    transform: scale(1.03);
}

/* Checkmark Columns for About page */
.checkmark-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 40px;
    margin-top: 24px;
}

.checkmark-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkmark-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-main);
    line-height: 1.5;
}

.checkmark-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* Interactive Calculator Section */

.calc-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.calc-card {
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.calc-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.calc-options {
    background-color: var(--bg-surface);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
}

.calc-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
}

.calc-select-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.calc-select {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

.calc-result-card {
    background: linear-gradient(135deg, var(--primary), #04263e);
    color: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    position: sticky;
    top: 100px;
    box-shadow: var(--hover-shadow);
}

.calc-result-header h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.calc-breakdown {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.breakdown-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breakdown-label {
    opacity: 0.85;
}

.breakdown-value {
    font-weight: 700;
}

.calc-total {
    border-top: 2px dashed rgba(255,255,255,0.2);
    padding-top: 24px;
    margin-top: auto;
}

.calc-total-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

.calc-total-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 4px;
}

.calc-total-amount.text-message {
    font-size: 1.15rem;
    line-height: 1.4;
    font-weight: 600;
    margin-top: 8px;
}

.calc-result-card .btn {
    margin-top: 32px;
    background-color: white;
    color: var(--primary);
}

.calc-result-card .btn:hover {
    background-color: #f1f5f9;
    box-shadow: 0 10px 20px -5px rgba(255,255,255,0.2);
}

/* Tarife Section & Tables */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.pricing-info h3 {
    font-size: 1.75rem;
    margin: 32px 0 16px 0;
    color: var(--primary);
}

.pricing-info h3:first-child {
    margin-top: 0;
}

.pricing-info p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-info ul {
    list-style-type: none;
    margin-left: 8px;
    margin-bottom: 24px;
}

.pricing-info li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.pricing-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-table-container {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    max-height: 600px;
    overflow-y: auto;
    overflow-x: auto;
}

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

.pricing-table th, .pricing-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-table th:first-child, .pricing-table td:first-child {
    text-align: left;
    padding-left: 12%;
}

.pricing-table th:last-child, .pricing-table td:last-child {
    text-align: right;
    padding-right: 12%;
}

.pricing-table th {
    background-color: var(--bg-surface-elevated);
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 10;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover {
    background-color: var(--bg-base);
}

/* Service Showcases (ITP, Car Wash, EV Charging) */
.service-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.service-card-horizontal {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.service-card-horizontal.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.service-img-wrap {
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.service-card-horizontal:hover .service-img-wrap img {
    transform: scale(1.03);
}

.service-card-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.service-card-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Custom Table inside Carwash card */
.carwash-pricing {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    margin-bottom: 24px;
}

.carwash-pricing th, .carwash-pricing td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.carwash-pricing th {
    font-weight: 700;
}

/* Booking Step-by-Step Wizard Form */
.booking-section {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
}

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

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.wizard-progress-bar {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 0%;
    height: 2px;
    background-color: var(--secondary);
    z-index: 2;
    transition: width var(--transition-smooth);
}

.wizard-step {
    position: relative;
    z-index: 3;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.wizard-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-base);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.wizard-step.active .wizard-step-num {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #0f172a;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.wizard-step.completed .wizard-step-num {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #0f172a;
}

.wizard-step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.wizard-step.active .wizard-step-label {
    color: var(--text-main);
}

.wizard-panels {
    background-color: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 400px;
    margin-bottom: 24px;
}

.wizard-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-panel.active {
    display: block;
}

/* Wizard Forms Styling */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

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

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.form-textarea {
    resize: vertical;
}

#book-car-number, #book-cui {
    text-transform: uppercase;
}

.form-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
    display: none;
}

.form-group.error .form-input {
    border-color: #ef4444;
}

.form-group.error .form-error {
    display: block;
}

/* Booking Review Summary */
.review-summary-box {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.review-summary-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.review-summary-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-summary-label {
    font-weight: 600;
    color: var(--text-muted);
}

.review-summary-val {
    font-weight: 700;
    text-align: right;
}

.wizard-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.wizard-buttons .btn {
    min-width: 150px;
}

/* Contact & Google Maps */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-glow);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

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

.contact-info-text p, .contact-info-text a {
    color: var(--text-muted);
}

.map-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    height: 350px;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Captcha Block inside Form */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-base);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.captcha-image-mock {
    font-family: monospace;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 4px;
    background: linear-gradient(135deg, #ddd, #eee);
    color: #333;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    user-select: none;
    font-style: italic;
    text-decoration: line-through;
    cursor: pointer;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.captcha-image-mock:hover {
    transform: scale(1.05);
    filter: brightness(0.95);
}

.captcha-image-mock:active {
    transform: scale(0.98);
}


/* Footer */
.footer {
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px 0;
}

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

.footer-socials-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.socials-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-base);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Modals & Receipts */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--hover-shadow);
    padding: 40px;
    width: 100%;
    max-width: 550px;
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-base);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-main);
    background-color: var(--border-color);
}

.receipt-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.receipt-icon-wrap svg {
    width: 36px;
    height: 36px;
}

.modal-content h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.modal-content p.modal-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Receipt Details */
.receipt-details {
    background-color: var(--bg-base);
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 32px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.receipt-row:last-child {
    margin-bottom: 0;
}

.receipt-label {
    color: var(--text-muted);
}

.receipt-value {
    font-weight: 700;
}

.receipt-row-total {
    border-top: 1px solid var(--border-color);
    margin-top: 16px;
    padding-top: 16px;
}

.receipt-row-total .receipt-value {
    font-size: 1.5rem;
    color: var(--primary);
}

.receipt-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* General Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-slideshow::after {
        background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.8) 100%);
    }
    .nav-menu {
        gap: 10px;
    }
    .nav-link {
        font-size: 0.82rem;
        padding: 6px 2px;
    }
    .hero-grid, .about-grid, .calc-grid, .pricing-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-features {
        max-width: 600px;
        margin: 0 auto;
    }
    .calc-result-card {
        position: static;
        min-height: auto;
    }
    .service-card-horizontal, .service-card-horizontal.reverse {
        grid-template-columns: 1fr;
    }
    .service-img-wrap {
        height: 250px;
        min-height: auto;
    }
    .service-card-content {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 108px;
    }
    .nav-container {
        height: 70px;
    }
    .header.scrolled .nav-container {
        height: 60px;
    }
    .top-bar-item-address {
        display: none !important;
    }
    .carwash-pricing {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Navigation drawer for mobile */
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-surface);
        flex-direction: column;
        align-items: center;
        padding: 40px 24px;
        gap: 32px;
        transition: left var(--transition-smooth);
        border-top: 1px solid var(--border-color);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu .nav-link {
        font-size: 1.15rem;
    }
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .wizard-steps {
        margin-bottom: 32px;
    }
    .wizard-step-label {
        display: none;
    }
    .wizard-panels {
        padding: 24px;
    }
    .receipt-actions {
        grid-template-columns: 1fr;
    }
}

/* Subpage Header Banner */
.subpage-header {
    background: linear-gradient(135deg, var(--primary), #04263e);
    color: white;
    padding: calc(var(--header-height) + 40px) 0 60px 0;
    text-align: center;
}

.subpage-header h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.subpage-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Unified booking and calculator layout */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .booking-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.sticky-pricing-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 992px) {
    .sticky-pricing-column {
        position: sticky;
        top: 100px;
    }
}

.booking-grid .calc-result-card {
    position: static;
    min-height: auto;
}

.pricing-rules-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--card-shadow);
}

.pricing-rules-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.pricing-rules-card ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-rules-card li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pricing-rules-card li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 10px;
    top: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 600px;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: bottom var(--transition-smooth), opacity var(--transition-smooth);
}

.cookie-banner.show {
    bottom: 24px;
    opacity: 1;
}

.cookie-banner-content {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.cookie-banner-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    align-self: flex-end;
}

.cookie-banner .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

@media (min-width: 640px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }
    .cookie-banner-actions {
        align-self: center;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   Photo Gallery & Lightbox Styles
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.gallery-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.gallery-img-wrap {
    aspect-ratio: 3 / 2;
    overflow: hidden;
    position: relative;
    background-color: #0c1222;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

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

.gallery-card-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.gallery-card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 60px 20px;
    user-select: none;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-content img {
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid var(--border-color);
}

#lightbox-caption {
    margin-top: 20px;
    color: var(--text-main);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 40px;
    color: var(--text-muted);
    font-size: 44px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10100;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--text-main);
}

.lightbox-prev, .lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 40px;
    font-weight: 300;
    padding: 16px;
    cursor: pointer;
    z-index: 10100;
    transition: color var(--transition-fast), background var(--transition-fast);
    border-radius: 50%;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@keyframes zoomIn {
    from { transform: scale(0.96); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;
    }
    .lightbox-prev, .lightbox-next {
        font-size: 32px;
        padding: 12px;
    }
    .lightbox-prev {
        left: 10px;
    }
    .lightbox-next {
        right: 10px;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
}

/* --- Core Pillars Section --- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.pillar-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
    border-color: var(--secondary);
}

.pillar-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: var(--bg-base);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: border-color var(--transition-normal), background-color var(--transition-normal);
}

.pillar-card:hover .pillar-icon-wrapper {
    border-color: var(--secondary);
    background-color: rgba(34, 197, 94, 0.05);
}

.pillar-icon-wrapper svg {
    width: 36px;
    height: 36px;
    color: var(--text-main);
    transition: color var(--transition-normal);
}

.pillar-card:hover .pillar-icon-wrapper svg {
    color: var(--secondary);
}

.pillar-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
    text-align: justify;
}

/* --- FAQ Section --- */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.faq-item {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--secondary);
    box-shadow: var(--hover-shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

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

.faq-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-normal);
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    padding: 0 24px 18px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==========================================================================
   Flatpickr Premium Theme Customization & Time Grid
   ========================================================================== */

.flatpickr-calendar {
    background-color: var(--bg-surface) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--hover-shadow) !important;
    font-family: inherit !important;
}

.flatpickr-calendar.show-time-picker {
    width: 300px !important;
}

.flatpickr-months {
    background-color: var(--bg-surface) !important;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
    color: var(--text-main) !important;
    fill: var(--text-main) !important;
}

.flatpickr-months .flatpickr-prev-month:hover, 
.flatpickr-months .flatpickr-next-month:hover {
    color: var(--primary) !important;
    fill: var(--primary) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--text-main) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: var(--text-main) !important;
}

.flatpickr-day {
    color: var(--text-main) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 500;
}

.flatpickr-day:hover, 
.flatpickr-day:focus {
    background-color: var(--bg-base) !important;
    border-color: var(--border-color) !important;
    color: var(--text-main) !important;
}

.flatpickr-day.today {
    border-color: var(--secondary) !important;
}

.flatpickr-day.today:hover {
    background-color: var(--bg-base) !important;
    color: var(--text-main) !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: #0f172a !important;
}

/* Custom time grid layout inside calendar popup */
.custom-time-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px;
    max-height: 240px;
    overflow-y: auto;
    background-color: var(--bg-surface);
    border-radius: var(--radius-lg);
}

.flatpickr-calendar.show-time-picker .custom-time-grid {
    display: grid;
}

.flatpickr-calendar.show-time-picker .flatpickr-innerContainer,
.flatpickr-calendar.show-time-picker .flatpickr-months {
    display: none !important;
}

.custom-time-grid-title {
    grid-column: span 4;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-grid-btn {
    background-color: var(--bg-base);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 10px 4px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
}

.time-grid-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #0f172a;
}

/* Extra Services Grid & Checkbox Cards */
.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    width: 100%;
}

.extra-service-card {
    display: flex;
    flex-direction: column;
    padding: 16px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    user-select: none;
}

.extra-service-card:hover {
    border-color: var(--secondary);
    background-color: var(--bg-surface-elevated);
    transform: translateY(-2px);
}

.extra-service-card:has(.extra-service-checkbox:checked) {
    border-color: var(--secondary);
    background-color: rgba(34, 197, 94, 0.05);
    box-shadow: 0 0 0 1px var(--secondary), 0 4px 20px -5px rgba(34, 197, 94, 0.15);
}

.extra-service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.extra-service-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary);
    cursor: pointer;
}

.extra-service-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
}

.extra-service-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    padding-left: 30px; /* Aligns with the title text, past the checkbox */
}

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

/* ==========================================================================
   GOOGLE REVIEWS TICKER SECTION
   ========================================================================== */
.reviews-ticker-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1.5rem 0;
    /* Mask gradient for smooth fade effect at edges */
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.reviews-ticker-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: marquee-scroll 120s linear infinite;
}

.reviews-ticker-wrapper:hover .reviews-ticker-track {
    animation-play-state: paused;
}

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

.review-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    width: 320px;
    flex-shrink: 0;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: 0 12px 24px -10px rgba(34, 197, 94, 0.15), var(--card-shadow);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.card-google-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.8;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
}

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

.review-stars {
    color: #ffb800;
    display: flex;
    gap: 2px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.review-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

@media (max-width: 768px) {
    .reviews-ticker-track {
        animation-duration: 95s; /* Adjusted to scroll slower with 19 unique reviews */
    }
    .review-card {
        width: 280px;
        padding: 1.25rem;
    }
    .reviews-ticker-wrapper {
        -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
        mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    }
}

/* ==========================================================================
   PRINT STYLES (Receipt printing for confirmation modal)
   ========================================================================== */
@media print {
    /* Remove browser default header and footer (date, title, URL) */
    @page {
        size: auto;
        margin: 0;
    }
    
    body {
        background: #fff !important;
        color: #000 !important;
        padding: 1.6cm 2.2cm !important;
    }

    /* Hide everything on the page except the success modal */
    body > :not(#booking-modal) {
        display: none !important;
    }
    
    header, footer, .subpage-header, section {
        display: none !important;
    }
    
    /* Format modal overlay to be a clean printable document container */
    .modal-overlay {
        position: static !important;
        background: #fff !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    
    /* Receipt content page size settings */
    .modal-content {
        background: #fff !important;
        color: #000 !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 auto !important;
        padding: 0 !important;
        width: 100% !important;
        max-width: 600px !important;
        display: block !important;
    }
    
    /* Hide UI action buttons and decorative elements */
    .modal-close, .receipt-icon-wrap, .receipt-actions {
        display: none !important;
    }
    
    /* Display the company logo at the top */
    .print-logo-only {
        display: block !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .print-logo-only img {
        max-height: 60px !important;
        display: block !important;
        margin: 0 auto !important;
        mix-blend-mode: multiply !important;
    }
    
    /* Formatting headings and texts for printing */
    .modal-content h3 {
        color: #000 !important;
        font-family: 'Outfit', sans-serif !important;
        font-size: 22px !important;
        margin-top: 15px !important;
        margin-bottom: 6px !important;
        text-align: center !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1.5px !important;
    }
    
    .modal-subtitle {
        color: #555 !important;
        font-size: 12px !important;
        margin-bottom: 25px !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    /* Format the receipt table box - Premium Card Design */
    .receipt-details {
        border: 1px solid #e2e8f0 !important;
        background: #fff !important;
        padding: 20px 24px !important;
        margin: 0 auto !important;
        border-radius: 8px !important;
    }
    
    .receipt-row {
        display: flex !important;
        justify-content: space-between !important;
        border-bottom: 1px solid #f1f5f9 !important;
        padding: 9px 0 !important;
        font-size: 13px !important;
        color: #000 !important;
    }
    
    /* Hide rows that are hidden dynamically in Javascript */
    .receipt-row[style*="display: none"] {
        display: none !important;
    }
    
    .receipt-row-total {
        border-top: 2px dashed #000 !important;
        border-bottom: none !important;
        padding-top: 14px !important;
        margin-top: 5px !important;
        font-size: 17px !important;
        font-weight: 800 !important;
    }
    
    .receipt-label {
        color: #475569 !important;
        font-weight: 500 !important;
    }
    
    .receipt-value {
        color: #0f172a !important;
        font-weight: 700 !important;
    }
    
    #receipt-code {
        color: #10b981 !important; /* Elegant green accent for code */
        font-size: 1.15rem !important;
    }
}

/* Hide adjacent month days in Flatpickr calendar */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    visibility: hidden !important;
}
