/* One Stop Shop Styles */

.consultation-booking {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.logo-section h1 {
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
.logo-section img {
    width: 260px;
}

.booking-subtitle {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* Progress Bar */
.booking-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    right: -50%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: -1;
}

.progress-step:last-child::before {
    display: none;
}

.progress-step.completed::before {
    background-color: #9E8DFF;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.progress-step.active .step-number {
    background-color: #9E8DFF;
    color: white;
}

.progress-step.completed .step-number {
    background-color: #9E8DFF;
    color: white;
}

.step-text {
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    max-width: 80px;
}

.progress-step.active .step-text {
    color: #9E8DFF;
    font-weight: 500;
}

/* Booking Steps */
.booking-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

.step-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.category-card {
    /*background: white;*/
    border-radius: var(--spacing-s, 1rem);
    background: #181716;
    /*border: 2px solid #e0e0e0;*/
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.category-card:hover {
    /*border-color: #9E8DFF;*/
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 124, 186, 0.15);
}

.category-card.selected {
    border-color: #9E8DFF;
    background-color: #f8f9ff;
}

.category-icon {
    font-size: 3rem;
    color: #9E8DFF;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.category-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.consultation-duration {
    display: inline-block;
    background-color: #9E8DFF;
    color: #e8f4fd;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}
textarea {
    margin-bottom: 1rem;
}

/* Category Info */
.category-info {
    /*background: white;*/
    background: #181716;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.back-btn {
    background: none;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    border-color: #9E8DFF;
    color: #9E8DFF;
}

.category-info .step-title {
    text-align: left;
    margin: 0;
}

.details-section {
    margin-bottom: 2rem;
}

.details-section h4 {
    color: #9E8DFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.consultants-section {
    margin-bottom: 2rem;
}

.consultants-section h4 {
    color: #9E8DFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.duration-section {
    margin-bottom: 2rem;
}

.duration-section h4 {
    color: #9E8DFF;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Date Selection */
.date-selection {
    background: #181716;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.date-selection h4 {
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

.available-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.date-option {
    background: rgba(255,255,255,0.05);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.date-option:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.date-option.selected {
    border-color: #9E8DFF;
    background: #9E8DFF;
    color: white;
}

.date-option.selected .date-header {
    color: white;
}

.date-option.selected .date-details {
    color: rgba(255, 255, 255, 0.8);
}

.date-header {
    margin-bottom: 0.75rem;
}

.date-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.date-option.selected .date-number {
    color: white;
}

.date-month {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-top: 0.25rem;
}

.date-details {
    font-size: 0.9rem;
    color: #888;
}

.date-day {
    display: block;
    text-transform: capitalize;
}

.date-year {
    display: block;
    font-weight: 500;
}

/* Time Slots */
.time-slots {
    background: #181716;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.time-slots h4 {
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: center;
}

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

.time-slot {
    background: rgba(255,255,255,0.05);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    color: white;
}

.time-slot:hover:not(.disabled) {
    color: white;
    /*border-color: #9E8DFF;*/
    background: rgba(255,255,255,0.1);
    /*background-color: #f8f9ff;*/
}

.time-slot.selected {
    /*border-color: #9E8DFF;*/
    /*background-color: #9E8DFF;*/
    color: white;
}

.time-slot.disabled {
    background: #f5f5f5;
    border-color: #ccc;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.time-slot.disabled:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Client Information Form */
.client-info {
    background: #181716;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.client-info .info-header {
    margin-bottom: 2rem;
}

.booking-form {
    max-width: none;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: rgba(255,255,255,0.05);
    color: white!important  ;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #9E8DFF;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-group input#privacy_agreement {
    width: auto;
}
.checkbox-text {
    font-weight: normal;
    margin-left: 0.5rem;
}

.selected-time-display {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.selected-time-display h4 {
    margin-bottom: 0.5rem;
    color: #fff;
}
.selected-time-display p {
    color: white;
    margin: 0;
}

/* Confirmation */
.confirmation {
    text-align: center;
    background: #181716;
    border-radius: 12px;
    padding: 3rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1.5rem;
}

.confirmation .step-title {
    margin-bottom: 1rem;
}

.confirmation p {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.booking-summary {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

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

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

.detail-label {
    font-weight: 600;
    color: #fff;
}

.detail-value {
    color: rgba(255,255,255,0.8);
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-overlay.hidden {
    display: none !important;
}

.loading-spinner {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.loading-spinner i {
    font-size: 2rem;
    color: #9E8DFF;
    margin-bottom: 1rem;
}

.loading-spinner p {
    margin: 0;
    color: #666;
}

/* Error Message */
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1001;
}

.error-message.hidden {
    display: none !important;
}

.error-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.error-content i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 1rem;
}

.error-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.error-content p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Subcategory Selection */
.subcategory-selection {
    /*background: white;*/
    background: #181716;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.subcategory-info h4 {
    margin-bottom: 1.5rem;
    color: #fff;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.subcategory-card {
    background: rgba(255,255,255,0.05);
    border: 2px solid #505050;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.subcategory-card:hover {
    background: rgba(255,255,255,0.1);
    /*border-color: #9E8DFF;*/
    /*background: #f0f8ff;*/
    /*transform: translateY(-2px);*/
}

/*.subcategory-card.selected {
    border-color: #9E8DFF;
    background: #9E8DFF;
    color: white;
}*/

.subcategory-card h4 {
    margin-bottom: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.subcategory-card.selected h4 {
    color: white;
}

.subcategory-card p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.info-content {
    color: white;
}

.subcategory-card.selected p {
    color: rgba(255, 255, 255, 0.8);
}
.consultants-info + button {
    background: #8e7ee9!important;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background: url(../img/bg.png) top left no-repeat #100F0D;
    }
    .consultation-booking {
        padding: 0rem;
    }

    .booking-header h1 {
        font-size: 2rem;
    }

    .booking-progress {
        flex-direction: column;
        gap: 1rem;
    }

    .progress-step::before {
        top: 50%;
        left: -100%;
        right: 100%;
        width: 2px;
        height: 50px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    /* Date Selection Responsive */
    .available-dates {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .date-option {
        padding: 1rem;
    }

    .date-number {
        font-size: 2rem;
    }

    /* Subcategory Selection Responsive */
    .subcategories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .subcategory-card {
        padding: 1rem;
    }

    .subcategory-card h4 {
        font-size: 1rem;
    }
    .site-main {
        padding-top: 3rem;
    }
    .booking-subtitle {
        font-size: 1.2rem;
    }
    .available-dates {
        display: flex;
    }
    .date-option {
        flex: 1;
    }
    .date-header {
        margin-bottom: 0;
    }
}

/* Read more functionality */
.read-more-btn {
    color: #9E8DFF;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    text-decoration: underline;
}




.read-more-content {
    margin-top: 1rem;
    line-height: 1.6;
}
