/* ==========================================================================
   Learn More Page Styles - Integrative Care Services
   ========================================================================== */

/* Testimonials Section */
.testimonials-section {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonials-header {
    margin-bottom: 2rem;
}

.brain-graphic {
    margin-bottom: 1rem;
}

.brain-icon {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.testimonials-title {
    color: var(--ics-text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Contact Form Section */
.contact-form-section {
    height: 100%;
}

.contact-title {
    color: var(--ics-text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-label {
    font-weight: 600;
    color: var(--ics-text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--ics-primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(110, 183, 216, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-check-input.is-invalid {
    border-color: #dc3545;
}

/* Form Check Groups */
.form-check-group {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
}

.form-check {
    margin-bottom: 0.75rem;
}

.form-check:last-of-type {
    margin-bottom: 0;
}

.form-check-input {
    margin-right: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--ics-primary-blue);
    border-color: var(--ics-primary-blue);
}

.form-check-label {
    font-weight: 500;
    color: var(--ics-text-dark);
}

.other-input {
    display: none;
}

.other-input.show {
    display: block;
}

/* Testimonial Styling */
.testimonial {
    border-left: 4px solid var(--ics-primary-blue);
    padding-left: 1.5rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ics-text-dark);
    margin-bottom: 0.5rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ics-primary-blue);
    margin: 0;
}

/* Button Styling */
.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .testimonials-section {
        margin-bottom: 2rem;
    }

    .brain-icon {
        width: 60px;
        height: 60px;
    }

    .testimonials-title {
        font-size: 1.3rem;
    }

    .contact-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .form-section {
        padding: 1rem;
    }

    .testimonials-section {
        padding: 1.5rem;
    }
}

/* Alert Styling */
.alert {
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}
