/* ============================================
   CONTACT / SCHEDULE PAGE STYLES
   ============================================ */

body { padding-bottom: 0 !important; }

/* --- Hero Section --- */
.contact-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary-color-dark), var(--primary-color), #1a5a9e);
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero__tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    background: rgba(255,255,255,0.06);
}

.contact-hero__title {
    font-size: clamp(30px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 14px;
}

.contact-hero__subtitle {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Contact Main Grid --- */
.contact-main {
    padding: 70px 0;
    background: var(--bg-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* --- Left: Contact Info --- */
.contact-info__heading {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 8px;
}

.contact-info__sub {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(19,70,123,0.06);
    box-shadow: 0 4px 15px rgba(19,70,123,0.04);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(19,70,123,0.1);
}

.contact-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(213,24,32,0.07);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card:hover .contact-card__icon {
    background: var(--secondary-color);
    color: var(--white);
}

.contact-card__label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-card__value {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color-dark);
    line-height: 1.5;
}

.contact-card__value a {
    color: var(--primary-color-dark);
    transition: color 0.2s;
}

.contact-card__value a:hover {
    color: var(--secondary-color);
}

/* Office hours */
.contact-hours {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 14px;
    border: 1px solid rgba(19,70,123,0.06);
    box-shadow: 0 4px 15px rgba(19,70,123,0.04);
}

.contact-hours__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color-dark);
    margin-bottom: 10px;
}

.contact-hours__row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.contact-hours__row:last-child {
    border-bottom: none;
}

.contact-hours__row span:last-child {
    font-weight: 500;
    color: var(--text-color);
}

/* --- Right: Contact Form --- */
.contact-form-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(19,70,123,0.08);
    border: 1px solid rgba(19,70,123,0.06);
}

.contact-form__header {
    background: linear-gradient(135deg, var(--secondary-color), #b3141b);
    padding: 24px 32px;
    color: var(--white);
}

.contact-form__header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px;
}

.contact-form__header p {
    font-size: 13px;
    opacity: 0.85;
    margin: 0;
}

.contact-form__body {
    padding: 28px 32px 32px;
}

.contact-form .form-field {
    margin-bottom: 18px;
}

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-family);
    transition: border-color 0.3s;
    background: var(--bg-color);
    resize: vertical;
}

.contact-form .form-field textarea {
    min-height: 110px;
}

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19,70,123,0.08);
}

.contact-form__submit {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Map Section --- */
.contact-map {
    background: var(--white);
}

.contact-map__header {
    background: var(--primary-color-dark);
    padding: 36px 0;
    text-align: center;
}

.contact-map__header .subheading {
    color: #B28850;
}

.contact-map__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-top: 8px;
}

.contact-map__wrapper {
    width: 100%;
    line-height: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.contact-map__wrapper iframe {
    width: 100%;
    height: 420px;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .contact-hero {
        padding: 60px 0 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map__wrapper iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-hero__title {
        font-size: 26px;
    }

    .contact-form__body {
        padding: 22px 20px 26px;
    }

    .contact-form__header {
        padding: 20px;
    }

    .contact-map__title {
        font-size: 24px;
    }

    .contact-map__wrapper iframe {
        height: 280px;
    }
}
