/* Danny Attali Booking System - Premium Design */

:root {
    --primary: #c9a86c;
    --primary-dark: #b8944d;
    --primary-light: #d4bc8a;
    --black: #0c0c0d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --success: #28a745;
    --error: #dc3545;
    --font-heading: 'Bodoni Moda', serif;
    --font-body: 'Merriweather', serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
    color: var(--black);
    line-height: 1.6;
    min-height: 100vh;
}

/* Header Premium */
.booking-header {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1b 100%);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.back-to-site {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-to-site:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(-3px);
}

.back-to-site i {
    font-size: 0.85rem;
}

.booking-header .logo {
    height: 45px;
    transition: transform 0.3s ease;
}

.booking-header .logo:hover {
    transform: scale(1.05);
}

.header-nav {
    display: flex;
    gap: 0.75rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
}

.nav-btn.active {
    background: var(--primary);
    color: var(--white);
}

/* Main Container */
.booking-container {
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 0 1.5rem;
}

.booking-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--black);
    font-weight: 600;
}

.booking-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Progress Steps Premium */
.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step.active {
    color: var(--primary);
    font-weight: 600;
}

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

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.step-connector {
    width: 50px;
    height: 3px;
    background: #e9ecef;
    border-radius: 2px;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

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

/* Booking Card Premium */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.booking-card h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary);
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.booking-card h2 i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Services Grid Premium */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.service-category {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    margin-top: 1.5rem;
}

.service-category:first-child {
    margin-top: 0;
}

.service-item {
    border: 2px solid #e9ecef;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fdf9f3 0%, #f9f5ed 100%);
    box-shadow: 0 4px 20px rgba(201, 168, 108, 0.25);
}

.service-item.selected::before {
    transform: scaleY(1);
}

.service-item.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.service-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.service-info {
    font-size: 0.9rem;
    color: var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.service-duration {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-duration i {
    color: var(--primary);
}

.service-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Calendar Premium */
.calendar-container {
    margin-top: 1.5rem;
}

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

.calendar-nav {
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-nav:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.calendar-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.calendar-month {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: var(--radius-md);
}

.calendar-day-name {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray);
    padding: 0.75rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    background: var(--white);
    border: 2px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.empty):not(.closed) {
    border-color: var(--primary);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
    transform: scale(1.05);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
}

.calendar-day.closed {
    color: #aaa;
    background: repeating-linear-gradient(
        45deg,
        #f0f0f0,
        #f0f0f0 2px,
        #e8e8e8 2px,
        #e8e8e8 4px
    );
    cursor: not-allowed;
    position: relative;
}

.calendar-day.closed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
    background: #bbb;
}

.calendar-day.unavailable {
    color: #bbb;
    background: #f8f8f8;
    cursor: not-allowed;
}

.calendar-day.full {
    color: var(--error);
    background: #fff5f5;
    cursor: not-allowed;
}

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

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

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

/* Calendar Legend */
.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-dot.available {
    background: var(--white);
    border: 2px solid #ddd;
}

.legend-dot.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.legend-dot.closed {
    background: repeating-linear-gradient(
        45deg,
        #f0f0f0,
        #f0f0f0 2px,
        #e8e8e8 2px,
        #e8e8e8 4px
    );
    position: relative;
}

.legend-dot.closed::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    right: 2px;
    height: 1px;
    background: #bbb;
}

.legend-dot.past {
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.legend-dot.today {
    background: var(--white);
    border: 2px solid var(--primary);
}

/* Time Slots Premium */
.slots-container {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.slots-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.slots-date::before {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    color: var(--primary);
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.time-slot {
    padding: 1rem 0.75rem;
    text-align: center;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.2s ease;
    background: var(--white);
}

.time-slot:hover {
    border-color: var(--primary);
    background: #fdf9f3;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.4);
    transform: translateY(-2px);
}

.no-slots {
    text-align: center;
    color: var(--gray);
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: var(--radius-md);
}

.no-slots i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.no-slots p {
    font-size: 1rem;
}

/* Form Premium */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #adb5bd;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Summary Premium */
.booking-summary {
    background: linear-gradient(135deg, #fdf9f3 0%, #f9f5ed 100%);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid rgba(201, 168, 108, 0.2);
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-title::before {
    content: '\f570';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    font-size: 0.95rem;
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.25rem;
    padding-top: 1.25rem;
    margin-top: 0.75rem;
    border-top: 2px solid var(--primary);
    color: var(--primary);
}

/* Buttons Premium */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 108, 0.4);
}

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

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

.btn-full {
    width: 100%;
}

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

.booking-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    gap: 1rem;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray);
}

.security-badge i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Payment Trust Indicators */
.payment-trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--radius-md);
    border: 1px solid #e9ecef;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-item i {
    font-size: 1.75rem;
    color: var(--gray-dark);
    transition: all 0.3s ease;
}

.trust-item:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.trust-item i.fa-lock {
    color: var(--success);
}

.trust-item i.fa-cc-visa {
    color: #1a1f71;
}

.trust-item i.fa-cc-mastercard {
    color: #eb001b;
}

.trust-item i.fa-cc-amex {
    color: #006fcf;
}

/* Loading */
.loading {
    text-align: center;
    padding: 3rem;
    color: var(--gray);
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f0f0f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

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

/* Messages */
.message {
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.message i {
    font-size: 1.25rem;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Hidden */
.hidden {
    display: none !important;
}

/* Confirmation Page Premium */
.confirmation-container {
    max-width: 600px;
    margin: 3rem auto;
    text-align: center;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success) 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.3);
}

.confirmation-icon i {
    font-size: 3rem;
    color: var(--white);
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.confirmation-ref {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 2rem;
    font-weight: 600;
}

.confirmation-details {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.detail-label {
    color: var(--gray);
}

.detail-value {
    font-weight: 600;
    color: var(--black);
}

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

/* Tablet */
@media (max-width: 768px) {
    .booking-header {
        padding: 0.8rem 1rem;
    }

    .header-left {
        gap: 1rem;
    }

    .back-to-site {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .back-to-site span {
        display: none;
    }

    .back-to-site i {
        font-size: 1rem;
    }

    .booking-header .logo {
        height: 40px;
    }

    .nav-btn span {
        display: none;
    }

    .booking-container {
        margin: 1rem auto;
        padding: 0 0.75rem;
    }

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

    .booking-card {
        padding: 1.5rem;
        border-radius: var(--radius-md);
    }

    .booking-card h2 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .progress-steps {
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .step {
        flex-direction: column;
        padding: 0.3rem;
        font-size: 0.75rem;
    }

    .step span:not(.step-number) {
        display: none;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .step-connector {
        width: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

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

    .service-item {
        padding: 1.25rem;
    }

    .calendar-grid {
        padding: 0.75rem;
        gap: 4px;
    }

    .calendar-day {
        font-size: 0.85rem;
    }

    .calendar-day-name {
        font-size: 0.7rem;
        padding: 0.5rem 0.25rem;
    }

    .calendar-month {
        font-size: 1.1rem;
    }

    .calendar-nav {
        width: 38px;
        height: 38px;
    }

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

    .time-slot {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .booking-summary {
        padding: 1.5rem;
    }

    .calendar-legend {
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .legend-dot {
        width: 14px;
        height: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .booking-header {
        padding: 0.6rem 0.8rem;
    }

    .header-left {
        gap: 0.5rem;
    }

    .back-to-site {
        padding: 0.4rem 0.6rem;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }

    .booking-header .logo {
        height: 30px;
    }

    .header-nav {
        gap: 0.4rem;
    }

    .nav-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
        border-width: 1px;
    }

    .booking-container {
        padding: 0 0.5rem;
    }

    .booking-title {
        font-size: 1.4rem;
    }

    .booking-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .booking-card h2 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .step-connector {
        width: 20px;
        height: 2px;
    }

    .service-item {
        padding: 1rem;
    }

    .service-name {
        font-size: 1rem;
    }

    .service-info {
        font-size: 0.85rem;
    }

    .service-price {
        font-size: 1.1rem;
    }

    .calendar-grid {
        padding: 0.5rem;
        gap: 3px;
    }

    .calendar-day {
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .calendar-day-name {
        font-size: 0.65rem;
    }

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

    .time-slot {
        padding: 0.6rem 0.3rem;
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .booking-summary {
        padding: 1.25rem;
    }

    .summary-row {
        font-size: 0.9rem;
    }

    .summary-row:last-child {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 0.5rem;
    }

    .payment-trust-indicators {
        gap: 1rem;
        flex-wrap: wrap;
        padding: 0.75rem;
    }

    .trust-item {
        font-size: 0.65rem;
    }

    .trust-item i {
        font-size: 1.4rem;
    }

    .security-badge {
        font-size: 0.8rem;
        padding: 0.6rem 0.8rem;
    }

    .security-badge i {
        font-size: 1rem;
    }

    .confirmation-container {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }

    .confirmation-icon {
        width: 70px;
        height: 70px;
    }

    .confirmation-icon i {
        font-size: 2rem;
    }

    .confirmation-title {
        font-size: 1.4rem;
    }

    .confirmation-details {
        padding: 1.25rem;
    }

    .detail-row {
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.75rem 0;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .booking-title {
        font-size: 1.2rem;
    }

    .booking-card h2 {
        font-size: 1rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .step-connector {
        width: 15px;
    }

    .calendar-day {
        font-size: 0.75rem;
    }

    .time-slot {
        font-size: 0.8rem;
        padding: 0.5rem 0.2rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}
