/* Dark Theme Variables */
:root {
    --bg-dark: #1a1a1a;
    --card-dark: #4a4a4a;
    --card-darker: #3a3a3a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --text-dark-muted: #999999;
    --accent-green: #6bc04a;
    --accent-green-dark: #5ba03a;
    --border-dark: #555555;
    --hover-dark: #525252;
}

/* Base Styles */
body {
    background-color: #fff;
    color: var(--text-light);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
}

/* Page Content Background (after header) */
.page-content {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #2a2a2a 100%);
    min-height: calc(100vh - 80px); /* Subtract header height */
}

.container {
    background: transparent;
}

.main-content {
    background: transparent;
    border-radius: 20px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: none;
}

/* Steps Container */
#steps {
    max-width: 690px;
    margin: 0 auto;
    background: transparent;
    border-radius: 20px;
    padding: 30px;
    box-shadow: none;
}

.step {
    display: none;
    background: transparent;
}

.step.active {
    display: block;
    background: transparent;
}

/* Step Headers */
.step h2 {
    color: var(--text-light);
    text-align: center;
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step h4 {
    color: var(--text-light);
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.step .row {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 8px;
    padding: 8px;
}

.step .col-md-7 h2 {
    display: flex;
    align-items: center;
    margin: 0;
}

.step .col-md-4 h4 {
    margin: 0;
    text-align: right;
    font-size: 1.3rem;
}

.step h2 svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Card Container */
.card-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-content: initial;
    background: transparent;
    border-radius: 12px;
    margin-bottom: 20px;
}

.card-container > .card > .card-body {
    padding: 0 0 10px 0;

}

.card-container > .location-card > .card-body {
    padding: 15px;
}

/* Cards */
.card {
    width: 100%;
    cursor: pointer;
    border: 2px solid transparent;
    margin-bottom: 10px;
    position: relative;
    background: var(--card-darker);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.card:hover {
    background: var(--hover-dark);
    border-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.card.selected {
    border-color: var(--accent-green);
    background: rgba(107, 192, 74, 0.1);
    box-shadow: 0 0 0 2px var(--accent-green);
    position: relative;
}

.card.selected::after {
    content: none;
}

/* Service Description */
.main-service-description {
    margin: 16px 0;
    padding: 12px 16px;
    background: var(--card-dark);
    border-radius: 8px;
    border: 1px solid var(--border-dark);
}

.main-service-description h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4px;
}

.service-features li {
    color: var(--text-muted);
    font-size: 12px;
    padding: 3px 0;
    position: relative;
    padding-left: 16px;
    line-height: 1.3;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 12px;
}

/* Additional Services */
.additional-services {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-item {
    border: 1px solid var(--border-dark);
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: auto;
}

.service-item:hover {
    border-color: var(--accent-green);
    background: rgba(107, 192, 74, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-item.selected {
    border-color: var(--accent-green);
    background: rgba(107, 192, 74, 0.1);
    box-shadow: 0 0 0 2px var(--accent-green);
}

.service-item.selected::after {
    content: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.service-title {
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.service-price {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 14px;
    margin-left: 12px;
}

.expand-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-left: 8px;
}

.expand-btn:hover {
    color: var(--accent-green);
    background: rgba(107, 192, 74, 0.1);
}

.expand-btn.expanded {
    transform: rotate(180deg);
}

.service-description {
    position: static;
    opacity: 1;
    visibility: visible;
}

.service-description.expanded {
    opacity: 1;
    visibility: visible;
}

.service-description p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
}

/* Card Content */
.card-title {
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.card-text {
    color: var(--text-muted);
    text-align: center;
    width: 100%;
    margin-bottom: 15px;
}

/* Service Price */
.service-price {
    color: var(--accent-green);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}

/* Service Icon */
.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.service-icon svg {
    width: 100%;
    max-width: 160px;
    height: auto;
    color: var(--accent-green);
}

/* Description Line */
.description-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    background: var(--card-dark);
    border-radius: 6px;
    padding: 8px 12px;
}

.inline-arrow {
    color: var(--accent-green);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.card:hover .inline-arrow {
    opacity: 1;
}

/* Map Preview */
.map-preview {
    position: relative;
    width: 100%;
    height: 120px;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
}

.map-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    filter: brightness(0.8) contrast(1.1);
    transition: filter 0.3s ease;
}

.location-card:hover .map-preview img {
    filter: brightness(1) contrast(1);
}

/* Location and Service Cards */
.location-card, .service-card {
    position: relative;
    overflow: hidden;
}

.location-card::before, .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 192, 74, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.location-card:hover::before, .service-card:hover::before {
    opacity: 1;
}

/* Weekly Calendar */
.weekly-calendar {
    background: transparent;
    border-radius: 12px;
    padding: 20px 0;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 8px;
    padding: 15px 0;
}

.calendar-header .btn {
    font-size: 1.25rem;
    padding: 8px 12px;
    background: var(--card-dark);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.calendar-header .btn:hover {
    background: var(--hover-dark);
    border-color: var(--accent-green);
    color: var(--text-light);
}

.calendar-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
}

.calendar-grid {
    display: flex;
    gap: 8px;
    background: transparent;
    border-radius: 8px;
    padding: 15px 0;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.calendar-grid.dragging {
    cursor: grabbing;
}

/* Hide horizontal scrollbar */
.calendar-grid::-webkit-scrollbar {
    height: 0;
}
.calendar-grid {
    scrollbar-width: none;
}

.calendar-cell {
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    cursor: pointer;
    background: var(--card-darker);
    color: var(--text-light);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    flex: 0 0 90px; /* fixed width to enable horizontal scroll on desktop */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.calendar-cell .weekday {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.calendar-cell .monthday {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.calendar-cell:hover {
    border-color: var(--accent-green);
    background: var(--hover-dark);
}

.calendar-cell.selected {
    border-color: var(--accent-green);
    background: var(--accent-green);
    color: var(--text-light);
    position: relative;
}

.calendar-cell.selected::after {
    content: none;
}

.calendar-cell.disabled {
    opacity: 0.4;
    pointer-events: none;
    background: var(--card-dark);
}

/* Week Navigation */
.week-prev, .week-next {
    background: var(--card-darker);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.week-prev:hover, .week-next:hover {
    background: var(--hover-dark);
    border-color: var(--accent-green);
}

/* Time Slots */
.time-slot-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 12px;
    border: none;
    padding: 0 0px; /* ensure first/last slots show full border radius */
}

.time-slot {
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    background: var(--card-darker);
    color: var(--text-light);
    transition: all 0.3s ease;
    font-weight: 500;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Normalize first/last slot radius in row */
.time-slot-container .time-slot:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.time-slot-container .time-slot:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.time-slot:hover {
    border-color: var(--accent-green);
    background: var(--hover-dark);
}

.time-slot.selected {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--text-light);
    position: relative;
}

.time-slot.selected::after {
    content: none;
}

.time-slot.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    display: none;
}

.time-slot.disabled:hover {
    background: var(--card-darker);
    border-color: var(--border-dark);
}

/* Service Details Block */
.service-details-block {
    background: var(--card-darker);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    width: 100%;
}

.service-name {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* align-items: center; */
    gap: 16px;
}

.service-time, .service-price-info {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-time svg, .service-price-info svg {
    color: var(--text-muted);
}

#final-summary-customer {
    margin-left: 8px;
}

/* Total Summary Block */
.total-summary-block {
    background: var(--card-darker);
    border: 1px solid var(--border-dark);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    width: 100%;
}

.total-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.total-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.total-value {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.total-value svg {
    color: var(--text-muted);
}

/* Section Separator */
.section-separator {
    height: 1px;
    margin: 16px 0 16px;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, var(--border-dark) 15%, var(--border-dark) 85%, rgba(0,0,0,0) 100%);
}

/* Buttons */
.btn-primary {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
    color: var(--text-light);
}

.btn-secondary {
    background: var(--card-dark);
    border-color: var(--border-dark);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--hover-dark);
    border-color: var(--accent-green);
    color: var(--text-light);
}

.btn-success {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--text-light);
}

.btn-success:hover {
    background: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
    color: var(--text-light);
}

.next-step, .prev-step {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

/* Fixed buttons for steps 2 and 3 */
.step[data-step="2"],
.step[data-step="3"] {
    padding-bottom: 100px;
}

.step[data-step="2"] .next-step,
.step[data-step="2"] .prev-step,
.step[data-step="3"] .next-step,
.step[data-step="3"] .prev-step {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

.step[data-step="2"] .prev-step,
.step[data-step="3"] .prev-step {
    left: 20px;
    right: auto;
    transform: none;
}

.step[data-step="2"] .next-step,
.step[data-step="3"] .next-step {
    right: 20px;
    left: auto;
    transform: none;
}

/* Mobile responsive for fixed buttons */
@media (max-width: 768px) {
    .step[data-step="2"] .prev-step,
    .step[data-step="3"] .prev-step {
        left: 15px;
        right: auto;
        padding: 12px 24px;
        font-size: 1rem;
        transform: none;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .step[data-step="2"] .next-step,
    .step[data-step="3"] .next-step {
        right: 15px;
        left: auto;
        padding: 12px 24px;
        font-size: 1rem;
        transform: none;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .step[data-step="2"],
    .step[data-step="3"] {
        padding-bottom: 80px;
    }
}

/* Desktop: keep buttons inside steps container using sticky positioning */
@media (min-width: 992px) {
    .step[data-step="2"] .prev-step,
    .step[data-step="3"] .prev-step,
    .step[data-step="2"] .next-step,
    .step[data-step="3"] .next-step {
        position: sticky;
        bottom: 20px;
        left: auto;
        right: auto;
        transform: none;
        margin-bottom: 0;
        box-shadow: none;
    }
}

.next-step:hover, .prev-step:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.next-step {
    float: right;
    margin-left: auto;
}

.prev-step {
    float: left;
}

.btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

/* Remove block backgrounds for a seamless look */
.weekly-calendar,
.card-container,
.service-details-block,
.total-summary-block,
.time-slot-container,
.step .row {
    background: transparent !important;
    box-shadow: none !important;
}

/* Reduce borders to be subtler */
.calendar-cell,
.time-slot,
.service-details-block,
.total-summary-block {
    border-color: rgba(255,255,255,0.12);
}

/* Smooth fade for steps */
.step {
    opacity: 0;
    transition: opacity 150ms ease;
}

.step.active {
    opacity: 1;
}

/* Form Elements */
.form-control {
    background: var(--card-darker);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
}

.form-control:focus {
    background: var(--card-darker);
    border-color: var(--accent-green);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(107, 192, 74, 0.25);
}

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

label {
    color: var(--text-light);
    font-weight: 500;
}

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

/* Booking Header */
.booking-header {
    background: #ffffff;
}

.booking-header .header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-header .header__logo {
    display: block;
    text-decoration: none;
}

.booking-header .header__logo img {
    height: auto;
    max-width: 100%;
    height: 30px;
    width: auto;
    filter: brightness(0) contrast(1);
}

/* Header Navigation Styling */
.booking-header .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0;
}

.nav-link:hover {
    color: var(--accent-green);
}

.nav-link.active {
    color: var(--accent-green);
}

/* Main Titles */
h1, h4 {
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Car Icon Styling */
.car-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-icon img {
    width: 124px;
    height: 124px;
    object-fit: contain;
}

/* Car icon in service cards */
.service-card .car-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card .car-icon img {
    width: 100%;
    height: 100%;
}


.header {
    position: relative;
    z-index: 10;
    -webkit-transition: background .2s;
    transition: background .2s;
    pointer-events: none;
    display: block;
}

.header__inner
 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 15px 15px 0 0;
    -webkit-transition: margin .2s;
    transition: margin .2s;
    pointer-events: auto;
}



.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

/* Header Styles from blue.min.css for header.ejs */

/* Container Fluid */
.container-fluid {
    min-width: 320px;
    max-width: 1560px;
}


/* Header Base */
.header {
    position: relative;
    z-index: 10;
    -webkit-transition: background .2s;
    transition: background .2s;
    pointer-events: none;
    display: block;
}

.is-sticky .header {
    background-color: #fff;
}

/* Header Inner */
.header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 15px 15px 0 0;
    -webkit-transition: margin .2s;
    transition: margin .2s;
    pointer-events: auto;
}

.is-sticky .header__inner {
    margin-left: -20px;
    margin-right: -20px;
}





/* Header Logo */
.header__logo img {
    height: 24px;
    width: auto;
}



/* Burger Menu */
.burger {
    display: block;
    padding: 5px;
    margin-right: -5px;
    color: #000;
    background: 0 0;
    border: none;
    cursor: pointer;
}

.burger span {
    display: block;
    margin: 3px 0;
    width: 20px;
    height: 2px;
    background-color: currentColor;
}

.burger:hover span {
    opacity: 0.7;
}



/* Header Menu */
.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity .3s ease, visibility .3s ease;
    transition: opacity .3s ease, visibility .3s ease;
}

.is-menu .header__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



/* Header Menu Close */
.header__menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: 0 0;
    border: none;
    cursor: pointer;
    color: #000;
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.is-menu .header__menu-close {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

.header__menu-close span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: currentColor;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.header__menu-close span:first-child {
    -webkit-transform: translateY(6px) rotate(45deg);
    transform: translateY(6px) rotate(45deg);
}

.header__menu-close span:last-child {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
}



/* Header Navigation */
.header__nav {
    margin-bottom: 40px;
}



/* Header List */
.header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}





/* Header List Item */
.header__list-item {
    margin-bottom: 20px;
}



/* Header List Link */
.header__list-link {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: color .3s ease;
    transition: color .3s ease;
}

.header__list-link:hover {
    color: rgba(0, 0, 0, 0.5);
}



/* Header Social */
.header__social {
    margin-top: 40px;
}



/* Social */
.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.social__item:not(:last-child) {
    margin-right: 20px;
}

.social__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f2efef;
    border-radius: 50%;
    -webkit-transition: background-color .3s ease;
    transition: background-color .3s ease;
}

.social__link:hover {
    background-color: #2c95ff;
}

.social__link img {
    width: 20px;
    height: 20px;
    filter: brightness(0) contrast(1);
}

.social__link:hover img {
    filter: brightness(0) contrast(1) invert(1);
}

/* Menu State */
.is-menu body {
    overflow: hidden;
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

/* Consolidated Media Query for 1200px and above */
@media (min-width: 1200px) {
    /* Header Logo */
    .header__logo img {
        height: 30px;
    }
    
    /* Header Inner */
    .header__inner {
        height: 80px;
        padding: 0 30px;
    }
    
    /* Hide mobile elements on desktop */
    .header .burger,
    .header__lang,
    .header__menu-close,
    .header__social {
        display: none;
    }
    
    /* Transform mobile menu to horizontal navigation on desktop */
    .header__menu {
        display: block !important;
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    /* Header Navigation */
    .header__nav {
        margin-bottom: 0;
    }
    
    /* Header List */
    .header__list {
        display: flex !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        position: static;
        background: transparent;
        width: auto;
        height: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .header__list-item:not(:last-child) {
        margin-bottom: 0;
        margin-right: 20px;
    }
    
    .header__list-item {
        margin-bottom: 0;
    }
    
    /* Header List Link */
    .header__list-link {
        font-size: 1rem;
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 600;
        transition: color 0.3s ease;
    }
    
    .header__list-link:hover {
        color: rgba(0, 0, 0, 0.5);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Mobile Responsive (max-width: 768px) */
@media (max-width: 768px) {
    #steps {
        padding: 15px 0;
    }
    
    #steps .card-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    #steps .card {
        width: 100%;
        max-width: 100%;
    }
    
    .card-container {
        padding: 0 15px;
    }
    
    .step > h2 {
        margin-bottom: 15px;
    }
    
    .step > h4 {
        margin-bottom: 20px;
    }
    
    /* Calendar responsive fixes */
    .weekly-calendar {
        padding: 15px 0;
        overflow-x: auto;
    }
    
    .calendar-header {
        padding: 10px 0;
        gap: 12px;
    }
    
    .calendar-grid {
        gap: 4px;
        padding: 10px 0px;
        min-width: 100%;
        overflow-x: auto;
    }
    
    /* Time slots responsive */
    .time-slot-container {
        gap: 6px;
        padding: 0;
        overflow-x: auto;
        grid-template-columns: repeat(3, 1fr);
    }
    
    .time-slot {
        min-width: 70px;
        min-height: 45px;
        padding: 8px 6px;
        font-size: 0.9rem;
    }
    
    /* Service details responsive */
    .service-details-block {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .service-info {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .service-time, .service-price-info {
        font-size: 0.85rem;
    }
    
    /* Total summary responsive */
    .total-summary-block {
        padding: 10px 12px;
        margin-bottom: 12px;
    }
    
    .total-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .total-label, .total-value {
        font-size: 0.95rem;
    }

    /* Mobile Responsive Header */
    .booking-header .header__inner {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 12px;
    }
}

/* Tablet and Small Desktop (min-width: 768px) */
@media (min-width: 768px) {
    /* Container Fluid */
    .container-fluid {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .container-fluid--sm {
        padding-left: 120px;
        padding-right: 120px;
    }
    
    /* Sticky Header */
    .is-sticky .header__inner {
        margin-left: -120px;
        margin-right: -120px;
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Medium Desktop (min-width: 1340px) */
@media (min-width: 1340px) {
    /* Container Fluid */
    .container-fluid {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .container-fluid--sm {
        padding-left: 180px;
        padding-right: 180px;
    }
    
    /* Sticky Header */
    .is-sticky .header__inner {
        margin-left: -160px;
        margin-right: -160px;
    }
}

/* Large Desktop (min-width: 1420px) */
@media (min-width: 1420px) {
    /* Header Inner */
    .header__inner {
        padding: 0 40px;
    }
    
    /* Header List */
    .header__list-item:not(:last-child) {
        margin-right: 30px;
    }
}