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

/* CSS Custom Properties / Design Tokens */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0c0c0c;
    --bg-glass: rgba(12, 12, 12, 0.85);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-active: rgba(255, 255, 255, 0.45);
    
    --accent-cyan: #ffffff;
    --accent-cyan-rgb: 255, 255, 255;
    --accent-cyan-dark: #a3a3a3;
    --accent-amber: #e5e5e5;
    --accent-amber-rgb: 229, 229, 229;
    --accent-danger: #ff4d4d;
    
    --text-primary: #f5f5f5;
    --text-secondary: #a3a3a3;
    --text-muted: #525252;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.08);
    --shadow-glow-strong: 0 0 35px rgba(255, 255, 255, 0.18);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.9);
    
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Decorative Background Glows */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.01) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

button, input, select, textarea {
    font-family: inherit;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-normal);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 5, 0.95);
}

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

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

.logo-img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    /* Filter to make dark logo look sharp on dark background if needed, but the provided logo has a white background. Let's make it look crisp by rendering it naturally. If the logo has a white background, we might want to invert it, but wait! The logo uploaded is dark charcoal on a white background. To make it fit a dark theme, we can apply a CSS filter to invert the colors (invert(1) brightness(1.2)), making it clean white on transparent! That is a brilliant premium styling detail! */
    filter: invert(1) brightness(1.2);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

.logo-text span {
    font-weight: 400;
    color: var(--text-secondary);
}

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

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-cyan);
    transition: var(--transition-fast);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

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

.nav-btn {
    background: #ffffff;
    color: #000000;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-glow);
    transition: var(--transition-normal);
    border: 1px solid #ffffff;
    cursor: pointer;
}

.nav-btn:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px 24px;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.98) 40%, rgba(5, 5, 5, 0.45) 100%), 
                url('assets/hero_banner.jpg') no-repeat center center/cover;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff, #737373);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.btn-primary {
    background: #ffffff;
    color: #000000;
    padding: 15px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-glow);
    border: 1px solid #ffffff;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #e5e5e5;
    border-color: #e5e5e5;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    padding: 15px 32px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* Sections General */
section {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--accent-cyan-dark);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Services Catalog Page/Section */
.services-section {
    position: relative;
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 12px 28px;
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.tab-btn:hover {
    border-color: var(--border-glass-active);
    color: var(--text-primary);
}

.tab-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    transition: var(--transition-slow);
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: transparent;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-active);
    box-shadow: 0 15px 35px -10px rgba(255, 255, 255, 0.05), var(--shadow-card);
}

.service-card:hover::before {
    background: #ffffff;
}

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

.service-icon {
    font-size: 2.2rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.service-price span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
    margin-top: auto;
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-select-btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.service-select-btn:hover {
    background: #ffffff;
    color: #000000;
}

.service-select-btn.selected {
    background: var(--accent-cyan-dark);
    color: #000;
    border-color: var(--accent-cyan-dark);
}

/* Booking Platform / Wizard Section */
.booking-section {
    position: relative;
}

.booking-container {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(16px);
}

/* Progress Indicator */
.booking-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-glass);
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    position: relative;
    cursor: pointer;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    transition: var(--transition-normal);
}

.step-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-normal);
}

.step-indicator.active .step-num {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.step-indicator.active .step-name {
    color: #ffffff;
}

.step-indicator.completed .step-num {
    background-color: var(--text-muted);
    border-color: var(--text-muted);
    color: #ffffff;
}

.step-indicator.completed .step-name {
    color: var(--text-secondary);
}

/* Steps Content Panels */
.booking-step-panel {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

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

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

.step-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* Step 1: Select Services List */
.booking-services-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 24px;
}

.booking-services-list::-webkit-scrollbar {
    width: 6px;
}
.booking-services-list::-webkit-scrollbar-track {
    background: transparent;
}
.booking-services-list::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 3px;
}

.booking-service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-fast);
}

.booking-service-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-glass-active);
}

.booking-service-item.selected {
    background: rgba(255, 255, 255, 0.04);
    border-color: #ffffff;
}

.booking-service-item-left {
    display: flex;
    align-items: center;
}

.booking-service-chk {
    margin-right: 16px;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    border: 2px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.booking-service-item.selected .booking-service-chk {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}

.booking-service-chk::after {
    content: '\2713';
    font-size: 0.75rem;
    font-weight: 900;
    display: none;
}

.booking-service-item.selected .booking-service-chk::after {
    display: block;
}

.booking-service-info {
    flex-grow: 1;
}

.booking-service-name {
    font-weight: 600;
    font-size: 1.05rem;
}

.booking-service-price {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
    margin-left: 16px;
    flex-shrink: 0;
}

/* Step 2: Calendar & Timeslots */
.datetime-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

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

/* Calendar Element */
.calendar-widget {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

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

.calendar-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.calendar-nav-btn {
    background: none;
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
    border-color: #ffffff;
    color: #ffffff;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

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

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.calendar-day.disabled {
    color: var(--text-muted);
    opacity: 0.25;
    cursor: not-allowed;
}

.calendar-day.selected {
    background-color: #ffffff;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.calendar-day.today {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Timeslots Widget */
.time-widget {
    display: flex;
    flex-direction: column;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 4px;
}

.time-slot {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 12px 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.time-slot:hover:not(.disabled) {
    border-color: #ffffff;
    color: #ffffff;
}

.time-slot.selected {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    font-weight: 600;
}

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

/* Step 3: Vehicle Info Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Step 5: Booking Confirmation */
.confirmation-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass-active);
    border-radius: var(--border-radius-md);
    padding: 32px;
    text-align: center;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 24px auto;
    box-shadow: var(--shadow-glow);
}

.confirmation-code {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #ffffff;
    margin: 16px 0;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.confirmation-text-alert {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: left;
    margin: 24px 0;
}

.confirmation-text-alert strong {
    color: #ffffff;
}

.confirmation-summary {
    text-align: left;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--border-glass);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.summary-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-val {
    font-weight: 600;
}

/* Wizard Control Buttons */
.booking-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    border-top: 1px solid var(--border-glass);
    padding-top: 32px;
}

.booking-summary-strip {
    display: flex;
    align-items: center;
    gap: 16px;
}

.summary-strip-total {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

/* Booking Dashboard Section */
.dashboard-section {
    position: relative;
}

.dashboard-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
}

.dashboard-empty-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.booking-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
}

.booking-card:hover {
    border-color: var(--border-glass-active);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 12px;
}

.booking-card-code {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.booking-status {
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.booking-card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-detail-row {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.booking-detail-label {
    color: var(--text-secondary);
    min-width: 90px;
}

.booking-detail-val {
    font-weight: 500;
}

.booking-cancel-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--accent-danger);
    color: var(--accent-danger);
    padding: 10px 0;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.booking-cancel-btn:hover {
    background: var(--accent-danger);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
}

/* Contact & Footer Section */
.contact-section {
    padding-bottom: 60px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

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

.contact-info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.contact-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
}

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

.contact-text-val {
    font-weight: 500;
}

.hours-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 32px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: var(--text-secondary);
}

/* Footer Copyright */
footer {
    border-top: 1px solid var(--border-glass);
    background: rgba(5, 5, 5, 0.95);
    padding: 40px 24px;
    text-align: center;
}

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

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.footer-brand span {
    color: #ffffff;
}

/* Modal Dialog */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
}

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

.modal-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass-active);
    border-radius: var(--border-radius-md);
    padding: 32px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal-box {
    transform: translateY(0);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

/* Mobile Responsive Sidebar/Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 72px);
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(12px);
        border-left: 1px solid var(--border-glass);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        align-items: flex-start;
        transition: var(--transition-normal);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .booking-container {
        padding: 24px 16px;
    }
    
    .booking-steps {
        margin-bottom: 32px;
    }
    
    .step-name {
        display: none;
    }
}
