/*
 * Book Consultation Page Styles
 *
 * Styles for the book consultation page layout, form, and sections.
 * Components have their own CSS files (benefits.css, process-steps.css, stats-bar.css)
 */

/* Main Section */
.booking-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.booking-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Two-column layout for benefits + form */
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Benefits Info Column */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.booking-form-wrapper h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

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

.form-label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #e74c3c;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Row - for side-by-side inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Submit Button */
.form-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    text-align: center;
}

/* Direct Contact Info Section */
.direct-contact-info {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.direct-contact-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.direct-contact-info .contact-item {
    margin-bottom: 1rem;
}

.direct-contact-info .contact-item:last-child {
    margin-bottom: 0;
}

.direct-contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.direct-contact-info a:hover {
    color: #764ba2;
    transform: translateX(5px);
}

.direct-contact-info .icon {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .booking-section {
        padding: 60px 20px;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .booking-form-wrapper {
        padding: 1.5rem;
    }

    .booking-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .direct-contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-section {
        padding: 40px 15px;
    }

    .booking-form-wrapper,
    .direct-contact-info {
        padding: 1.25rem;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .form-submit {
        padding: 14px;
        font-size: 1rem;
    }
}
