/* COACHING PAGE ONLY */

.coaching-hero {
    background: linear-gradient(to right, var(--deep-navy), var(--bright-blue));
    color: var(--almost-white);
    padding: 6rem 2rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.coaching-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: -1px;
}

.coaching-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons a {
    font-size: 1.1rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--almost-white);
}

.cta-buttons .btn-primary {
    background-color: var(--almost-white);
    color: var(--deep-navy);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--silver);
    border: 2px solid var(--silver);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--almost-white);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--bright-blue);
    border-color: var(--bright-blue);
}

.faqs {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.faqs h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--deep-navy);
    border-bottom: 2px solid var(--bright-blue);
    padding-bottom: 0.5rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.faqs .qa {
    margin-bottom: 2rem;
    background-color: var(--light-gray);
    padding: 1.25rem 1.75rem;
    border-left: 5px solid var(--bright-blue);
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faqs .qa strong {
    font-size: 1.15rem;
    color: var(--deep-navy);
}

.faqs .qa p {
    margin-top: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-slate);
}


/* ---------------------- */
/* Free Consultation Page */
/* ---------------------- */


.consult-form-section {
    max-width: 700px;
    margin: 2rem auto 5rem;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.consult-form label {
    font-weight: bold;
    color: var(--dark-slate);
}

.consult-form input,
.consult-form select,
.consult-form textarea {
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--silver);
    font-size: 1rem;
}

.consult-form textarea {
    resize: vertical;
}

.availability-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.availability-grid fieldset {
    flex: 1 1 250px;
    padding: 0.5rem 1rem;
    border: 2px solid var(--silver);
    border-radius: 8px;
    background-color: white;
}

.availability-grid legend {
    font-weight: bold;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    padding: 0.2rem;
}

.availability-grid label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-slate);
}

.availability-grid input[type="checkbox"] {
    margin-right: 0.5rem;
}

.success-message {
    background-color: var(--vibrant-green);
    color: white;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    font-weight: bold;
    text-align: center;
}