/* Modern Booking Form Styles - Minimalist Design */
.booking-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Override any pink/magenta colors from theme */
.booking-form-container button,
.booking-form-container .calendar-day,
.booking-form-container .time-slot-btn,
.booking-form-container .button-primary,
.booking-form-container .change-btn {
    background-color: #C8FEC2 !important;
    color: #000000 !important;
    border: none;
    border-radius: 26px;
}

.booking-form-container button:hover,
.booking-form-container .calendar-day:hover,
.booking-form-container .time-slot-btn:hover,
.booking-form-container .button-primary:hover,
.booking-form-container .change-btn:hover {
    background-color: #AEE7A5 !important;
    color: #000000 !important;
}

.booking-form-container .back-link {
    background: none !important;
    color: #000000 !important;
}

/* Header */
.booking-header {
    text-align: center;
    margin-bottom: 50px;
    background-color: #f4faf5;
    padding: 30px;
    border-radius: 26px;
}

.booking-header h2 {
    font-size: 32px;
    margin: 0 0 15px 0;
    color: #1a1a1a;
    font-weight: 400;
    font-family: "Lora", Sans-serif;
}

.booking-description {
    font-size: 16px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-family: "Lora", Sans-serif;
}

.booking-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 15px;
}

.booking-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-family: "Lora", Sans-serif;
}

.booking-meta svg {
    opacity: 0.6;
}

.booking-price {
}

/* Steps */
.booking-step {
    margin-bottom: 40px;
}

.booking-step.active {
    animation: fadeIn 0.3s ease;
}

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

.step-title {
    font-size: 20px;
    margin: 0 0 25px 0;
    color: #1a1a1a;
    font-weight: 400;
    font-family: "Lora", Sans-serif;
}

.back-link {
    background: none !important;
    border: none !important;
    color: #000000 !important;
    font-size: 16px;
    font-family: "Lora", Sans-serif;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 0.6;
}

/* Mini Calendar */
.booking-mini-calendar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

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

.calendar-day {
    background: #C8FEC2;
    border: none;
    border-radius: 26px;
    padding: 12px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Lora", Sans-serif;
}

.calendar-day.has-slots:hover {
    background: #AEE7A5;
    transform: translateY(-2px);
}

.calendar-day.selected {
    background: #AEE7A5 !important;
    border: 2px solid #C8FEC2 !important;
}

.calendar-day.selected .day-name,
.calendar-day.selected .day-num {
    color: #000000;
}

.calendar-day.no-slots {
    opacity: 0.3;
    cursor: not-allowed;
}

.day-name {
    font-size: 11px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
}

.day-num {
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

/* Time Slots Grid */
.booking-time-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.time-slots-for-date {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot-btn {
    min-width: 85px;
    padding: 14px 10px;
    background: #C8FEC2;
    border: none;
    border-radius: 26px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    transition: all 0.2s ease;
    text-align: center;
    font-family: "Lora", Sans-serif;
    line-height: 1.4em;
}

.time-slot-btn:hover {
    background: #AEE7A5;
    transform: translateY(-2px);
    border-color: #AEE7A5;
}

.time-slot-btn.selected {
    background: #AEE7A5 !important;
    color: #000000 !important;
    border: 2px solid #C8FEC2 !important;
}

/* Selected Summary */
.selected-summary {
    background: #f4faf5;
    border: 2px solid #C8FEC2;
    border-radius: 26px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.selected-summary svg {
    color: #7fb069;
    flex-shrink: 0;
}

.selected-summary > div {
    flex: 1;
}

.selected-summary strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: "Lora", Sans-serif;
}

.selected-summary span {
    color: #000000;
    font-size: 15px;
    font-family: "Lora", Sans-serif;
}

.change-btn {
    background-color: #C8FEC2;
    border: none;
    color: #000000;
    padding: 10px 24px;
    border-radius: 26px;
    cursor: pointer;
    font-family: "Lora", Sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    transition: all 0.2s;
}

.change-btn:hover {
    background-color: #AEE7A5;
}

/* No Slots Message */
.booking-no-slots {
    text-align: center;
    padding: 60px 20px;
    background: #f9f9f9;
    border-radius: 12px;
}

.booking-no-slots p {
    color: #666;
    font-size: 16px;
    margin: 10px 0;
}

/* Form Fields */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 400;
    color: #1a1a1a;
    font-size: 16px;
    font-family: "Lora", Sans-serif;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 26px;
    font-size: 16px;
    font-family: "Lora", Sans-serif;
    transition: all 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C8FEC2;
    background: #f4faf5;
}

.form-group textarea {
    resize: vertical;
    border-radius: 20px;
}

/* Primary Button */
.button-primary {
    width: 100%;
    padding: 16px 32px;
    background-color: #C8FEC2;
    color: #000000;
    border: none;
    border-radius: 26px;
    font-family: "Lora", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 16px;
}

.button-primary:hover {
    background-color: #AEE7A5;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-header h2 {
        font-size: 26px;
    }
    
    .booking-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .calendar-week {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }
    
    .calendar-day {
        padding: 8px 4px;
    }
    
    .day-name {
        font-size: 10px;
    }
    
    .day-num {
        font-size: 14px;
    }
    
    .booking-time-grid,
    .time-slots-for-date {
        gap: 8px;
    }
    
    .time-slot-btn {
        min-width: 75px;
        padding: 12px 8px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .selected-summary {
        flex-direction: column;
        text-align: center;
    }
}

/* =============================================
   Booking Confirmation Styles
   ============================================= */
.booking-confirmation-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Lora", Sans-serif;
}

/* Header */
.confirmation-header {
    text-align: center;
    background-color: #f4faf5;
    padding: 40px 30px;
    border-radius: 26px;
    margin-bottom: 24px;
}

.confirmation-icon {
    margin-bottom: 16px;
}

.confirmation-header h2 {
    font-size: 28px;
    margin: 0 0 8px 0;
    color: #1a1a1a;
    font-weight: 400;
    font-family: "Lora", Sans-serif;
}

.confirmation-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    font-family: "Lora", Sans-serif;
}

/* Cards */
.confirmation-card {
    background-color: #f4faf5;
    border-radius: 26px;
    padding: 28px;
    margin-bottom: 16px;
}

.confirmation-card--dev {
    background-color: #fffbf0;
    border: 1px solid #f0e4c4;
    display: flex;
    align-items: center;
    gap: 16px;
}

.confirmation-card--dev .confirmation-card__icon {
    font-size: 24px;
    flex-shrink: 0;
}

.confirmation-card--dev .confirmation-card__content strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Lora", Sans-serif;
    color: #1a1a1a;
}

.confirmation-card--dev .confirmation-card__content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    font-family: "Lora", Sans-serif;
}

.confirmation-card--info {
    text-align: center;
}

.confirmation-card--info p {
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Lora", Sans-serif;
}

.confirmation-card__title {
    font-size: 18px;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    font-weight: 400;
    font-family: "Lora", Sans-serif;
}

/* Details Grid */
.confirmation-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.confirmation-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.confirmation-detail__label {
    font-size: 13px;
    color: #888;
    font-family: "Lora", Sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.confirmation-detail__value {
    font-size: 16px;
    color: #1a1a1a;
    font-family: "Lora", Sans-serif;
}

.confirmation-detail__value--price {
    color: #7fb069;
    font-weight: 600;
    font-size: 18px;
}

/* Steps */
.confirmation-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confirmation-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.confirmation-step__number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #C8FEC2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: "Lora", Sans-serif;
}

.confirmation-step p {
    margin: 0;
    padding-top: 5px;
    font-size: 15px;
    color: #444;
    line-height: 1.5;
    font-family: "Lora", Sans-serif;
}

/* Action Button */
.confirmation-action {
    text-align: center;
    margin-top: 32px;
}

.confirmation-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #C8FEC2 !important;
    color: #000000 !important;
    text-decoration: none !important;
    border-radius: 26px;
    font-family: "Lora", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.confirmation-btn:hover {
    background-color: #AEE7A5 !important;
    transform: translateY(-2px);
    color: #000000 !important;
    text-decoration: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-confirmation-container {
        padding: 20px 15px;
    }

    .confirmation-header {
        padding: 30px 20px;
    }

    .confirmation-header h2 {
        font-size: 24px;
    }

    .confirmation-card {
        padding: 20px;
    }

    .confirmation-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .confirmation-card--dev {
        flex-direction: column;
        text-align: center;
    }
}

/* Legacy styles for other views */
.consultation-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
}

.consultation-card h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.consultation-card .button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #C8FEC2;
    color: #000000;
    text-decoration: none;
    border-radius: 26px;
    font-family: "Lora", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    transition: all 0.2s;
}

.consultation-card .button:hover {
    background-color: #AEE7A5;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    font-family: inherit;
}
.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #b5d5b5;
    border-radius: 5px;
    margin-top: 2px;
    cursor: pointer;
    background: #fff;
    transition: background 0.2s, border-color 0.2s;
}
.checkbox-label input[type="checkbox"]:checked {
    background: #c8fec2;
    border-color: #c8fec2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23000' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}
.checkbox-label a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
}
.checkbox-label a:hover {
    color: #444;
}

.required { color: red; }
.required-note { font-size: 14px; color: #444; margin: 8px 0 0; line-height: 1.6; font-family: "Lora", Sans-serif; }
.final-price-note { font-size: 14px; color: #444; margin: 0 0 12px; line-height: 1.6; font-family: "Lora", Sans-serif; }
