<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            min-height: 100vh;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        .booking-header {
            background: #1b216b;
            color: white;
            text-align: center;
            padding: 40px 20px;
            border-radius: 16px 16px 0 0;
            position: relative;
            overflow: hidden;
        }

        .booking-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(233, 129, 53, 0.1) 0%, transparent 50%);
        }

        .booking-header-content {
            position: relative;
            z-index: 2;
        }

        .booking-header h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .booking-header p {
            font-size: 16px;
            opacity: 0.9;
        }

        /* Main Container */
        .booking-container {
            background: white;
            border-radius: 0 0 16px 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        /* Progress Bar */
        .progress-container {
            background: #f8f9fa;
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .progress-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .step-number {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #e2e8f0;
            color: #64748b;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .step-number.active {
            background: #1b216b;
            color: white;
        }

        .step-number.completed {
            background: #10b981;
            color: white;
        }

        .step-label {
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
        }

        .step-label.active {
            color: #1b216b;
        }

        .step-connector {
            width: 40px;
            height: 2px;
            background: #e2e8f0;
        }

        .step-connector.completed {
            background: #10b981;
        }

        /* Content Area */
        .booking-content {
            padding: 40px;
        }

        .step-content {
            display: none;
        }

        .step-content.active {
            display: block;
        }

        /* Step 1: Service Selection */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .service-card {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card:hover {
            border-color: #1b216b;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(27, 33, 107, 0.1);
        }

        .service-card.selected {
            border-color: #1b216b;
            background: rgba(27, 33, 107, 0.02);
        }

        .service-card .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: 16px;
        }

        .service-card.consultation .service-icon {
            background: linear-gradient(135deg, #1b216b, #2d3585);
        }

        .service-card.demo .service-icon {
            background: linear-gradient(135deg, #e98135, #eb8137);
        }

        .service-card.support .service-icon {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .service-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: #1b216b;
            margin-bottom: 8px;
        }

        .service-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .service-duration {
            display: inline-block;
            background: #f1f5f9;
            color: #475569;
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 12px;
            font-weight: 500;
        }

        /* Step 2: Date Selection */
        .date-picker {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            margin-top: 30px;
        }

        .calendar {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .calendar-nav {
            background: none;
            border: none;
            color: #1b216b;
            font-size: 18px;
            cursor: pointer;
            padding: 8px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .calendar-nav:hover {
            background: rgba(27, 33, 107, 0.1);
        }

        .calendar-month {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #1b216b;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
        }

        .calendar-day-header {
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            color: #64748b;
            padding: 8px 4px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .calendar-day:hover {
            background: rgba(27, 33, 107, 0.1);
        }

        .calendar-day.selected {
            background: #1b216b;
            color: white;
        }

        .calendar-day.disabled {
            color: #cbd5e1;
            cursor: not-allowed;
        }

        .calendar-day.today {
            background: #e98135;
            color: white;
        }

        .time-slots {
            padding: 0 20px;
        }

        .time-slots h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #1b216b;
            margin-bottom: 20px;
        }

        .time-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 12px;
        }

        .time-slot {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            text-align: center;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.2s ease;
            background: white;
        }

        .time-slot:hover {
            border-color: #1b216b;
            background: rgba(27, 33, 107, 0.02);
        }

        .time-slot.selected {
            border-color: #1b216b;
            background: #1b216b;
            color: white;
        }

        .time-slot.unavailable {
            background: #f1f5f9;
            color: #94a3b8;
            cursor: not-allowed;
        }

        /* Step 3: Information Form */
        .booking-form {
            margin-top: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-label {
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-input {
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }

        .form-input:focus {
            outline: none;
            border-color: #1b216b;
            box-shadow: 0 0 0 3px rgba(27, 33, 107, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        /* Step 4: Confirmation */
        .confirmation-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border: 2px solid #0ea5e9;
            border-radius: 12px;
            padding: 30px;
            margin-top: 30px;
            text-align: center;
        }

        .confirmation-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 32px;
            color: white;
        }

        .booking-summary {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin: 20px 0;
            text-align: left;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-label {
            font-weight: 600;
            color: #374151;
        }

        .summary-value {
            color: #1b216b;
            font-weight: 500;
        }

        /* Navigation Buttons */
        .navigation-buttons {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary {
            background: #1b216b;
            color: white;
        }

        .btn-primary:hover {
            background: #151a54;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: #64748b;
            border: 2px solid #e2e8f0;
        }

        .btn-secondary:hover {
            border-color: #cbd5e1;
            color: #374151;
        }

        .btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        /* Selected Service Display */
        .selected-service {
            background: rgba(27, 33, 107, 0.05);
            border: 2px solid #1b216b;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .selected-service-icon {
            width: 50px;
            height: 50px;
            background: #1b216b;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .selected-service-info h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: #1b216b;
            margin-bottom: 4px;
        }

        .selected-service-info p {
            font-size: 14px;
            color: #64748b;
            margin: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .booking-content {
                padding: 20px;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .date-picker {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .progress-steps {
                gap: 10px;
            }

            .step-connector {
                width: 20px;
            }

            .step-label {
                display: none;
            }

            .navigation-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        /* calendrier.css - Stylesheet pour le système de réservation ImmoWise */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-btn:hover, .lang-btn.active {
    border-color: #1b216b;
    color: #1b216b;
    background: rgba(27, 33, 107, 0.05);
}

.lang-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.booking-header {
    background: #1b216b;
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 129, 53, 0.1) 0%, transparent 50%);
}

.booking-header-content {
    position: relative;
    z-index: 2;
}

.booking-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.booking-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Main Container */
.booking-container {
    background: white;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Progress Bar */
.progress-container {
    background: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-number.active {
    background: #1b216b;
    color: white;
}

.step-number.completed {
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.step-label.active {
    color: #1b216b;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: #e2e8f0;
}

.step-connector.completed {
    background: #10b981;
}

/* Content Area */
.booking-content {
    padding: 40px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

/* Step 1: Service Selection */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: #1b216b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 33, 107, 0.1);
}

.service-card.selected {
    border-color: #1b216b;
    background: rgba(27, 33, 107, 0.02);
}

.service-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.service-card.consultation .service-icon {
    background: linear-gradient(135deg, #1b216b, #2d3585);
}

.service-card.demo .service-icon {
    background: linear-gradient(135deg, #e98135, #eb8137);
}

.service-card.support .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1b216b;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-duration {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

/* Step 2: Date Selection */
.date-picker {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 30px;
}

.calendar {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-nav {
    background: none;
    border: none;
    color: #1b216b;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.calendar-nav:hover {
    background: rgba(27, 33, 107, 0.1);
}

.calendar-month {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1b216b;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    padding: 8px 4px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(27, 33, 107, 0.1);
}

.calendar-day.selected {
    background: #1b216b;
    color: white;
}

.calendar-day.disabled {
    color: #cbd5e1;
    cursor: not-allowed;
}

.calendar-day.today {
    background: #e98135;
    color: white;
}

.time-slots {
    padding: 0 20px;
}

.time-slots h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1b216b;
    margin-bottom: 20px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.time-slot {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    background: white;
}

.time-slot:hover:not(.unavailable) {
    border-color: #1b216b;
    background: rgba(27, 33, 107, 0.02);
}

.time-slot.selected {
    border-color: #1b216b;
    background: #1b216b;
    color: white;
}

.time-slot.unavailable {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}

/* Step 3: Information Form */
.booking-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-input {
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #1b216b;
    box-shadow: 0 0 0 3px rgba(27, 33, 107, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Step 4: Confirmation */
.confirmation-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.booking-summary {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    text-align: left;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: #374151;
}

.summary-value {
    color: #1b216b;
    font-weight: 500;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #1b216b;
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: #151a54;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    border-color: #cbd5e1;
    color: #374151;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Selected Service Display */
.selected-service {
    background: rgba(27, 33, 107, 0.05);
    border: 2px solid #1b216b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.selected-service-icon {
    width: 50px;
    height: 50px;
    background: #1b216b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.selected-service-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1b216b;
    margin-bottom: 4px;
}

.selected-service-info p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .booking-content {
        padding: 20px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .date-picker {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .progress-steps {
        gap: 10px;
    }

    .step-connector {
        width: 20px;
    }

    .step-label {
        display: none;
    }

    .navigation-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .language-selector {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .booking-header h1 {
        font-size: 24px;
    }

    .booking-header p {
        font-size: 14px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .calendar {
        padding: 15px;
    }

    .time-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .confirmation-card {
        padding: 20px;
    }
    
    /* Styles améliorés pour le résumé de réservation */
.booking-summary {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.summary-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    margin: 0;
}

.summary-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.summary-header h3::before {
    content: "📋";
    margin-right: 8px;
    font-size: 20px;
}

.summary-content {
    padding: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row:hover {
    background-color: #f9fafb;
}

.summary-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.summary-right {
    flex: 1;
    text-align: right;
    min-width: 0;
}

.summary-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.summary-label {
    font-weight: 600;
    color: #374151;
    font-size: 15px;
}

.summary-value {
    font-weight: 500;
    color: #1f2937;
    font-size: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-word;
}

/* Responsive design */
@media (max-width: 768px) {
    .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .summary-right {
        text-align: left;
        width: 100%;
        padding-left: 52px; /* Aligné avec le texte du label */
    }
    
    .summary-header {
        padding: 15px 20px;
    }
    
    .summary-header h3 {
        font-size: 16px;
    }
}

/* Animation d'entrée */
.booking-summary {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
}
    </style>
    