/* =========================
   CONTACTS PAGE
========================= */

.contacts-page{
    overflow: hidden;
}

.section-space{
    padding: 56px 0;
}

.section-soft{
    background: #f7fbfe;
}

.section-head{
    margin-bottom: 30px;
}

.section-kicker{
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-secondary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-kicker--light{
    color: rgba(255,255,255,0.82);
}

.section-title{
    margin: 0;
    color: var(--color-text);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.contacts-page p{
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
}

/* HERO */
.contacts-hero{
    position: relative;
    padding: 35px 0 56px;
    background:
        radial-gradient(circle at top right, rgba(0,199,255,0.10) 0, rgba(0,199,255,0) 28%),
        linear-gradient(180deg, #f9fdff 0%, #edf8fd 100%);
}

.contacts-hero__inner{
    max-width: 760px;
}

.contacts-hero__eyebrow{
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-secondary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contacts-hero__title{
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    color: var(--color-text);
}

.contacts-hero__text{
    margin: 0;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.75;
    color: var(--color-muted);
}

/* MAIN GRID */
.contacts-main__grid{
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 420px;
    gap: 34px;
    align-items: start;
}

.contacts-info__lead{
    max-width: 760px;
    color: var(--color-muted);
}

/* INFO CARDS */
.contacts-cards{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.contact-card{
    padding: 24px 22px;
    border: 1px solid #dfe9f0;
    background: #fff;
    box-shadow: 0 10px 24px rgba(19,54,84,0.05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.contact-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(19,54,84,0.09);
    border-color: rgba(0,199,255,0.30);
}

.contact-card__title{
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.3;
    color: var(--color-text);
}

.contact-card__value{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-secondary);
    word-break: break-word;
}

a.contact-card__value:hover{
    color: var(--color-primary);
}

.contact-card__text{
    margin: 0;
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: var(--color-muted) !important;
}

/* HOURS */
.contacts-hours{
    margin-top: 30px;
    padding: 24px 26px;
    background: linear-gradient(135deg, #ffffff 0%, #f2fbff 100%);
    border: 1px solid rgba(0,199,255,0.18);
    box-shadow: 0 12px 28px rgba(19,54,84,0.05);
}

.contacts-hours__title{
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.25;
    color: var(--color-text);
}

.contacts-hours__list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.contacts-hours__list li{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e6eef3;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-text);
}

.contacts-hours__list li:last-child{
    padding-bottom: 0;
    border-bottom: 0;
}

.contacts-hours__list strong{
    color: var(--color-secondary);
    font-size: 15px;
    line-height: 1.4;
}

/* FORM */
.contacts-form-wrap{
    position: sticky;
    top: 24px;
}

.contacts-form-box{
    padding: 30px 28px;
    background: #fff;
    border: 1px solid #dfe9f0;
    box-shadow: 0 18px 40px rgba(19,54,84,0.08);
}

.contacts-form-box__title{
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.15;
    color: var(--color-text);
}

.contacts-form-box__text{
    margin-bottom: 22px !important;
    color: var(--color-muted) !important;
}

.contacts-form{
    display: grid;
    gap: 16px;
}

.contacts-field{
    display: grid;
    gap: 8px;
}

.contacts-field__label{
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text);
}

.contacts-field__input,
.contacts-field__textarea{
    width: 100%;
    border: 1px solid var(--color-border);
    background: #fff;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.contacts-field__input{
    height: 52px;
    padding: 0 16px;
}

.contacts-field__textarea{
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
}

.contacts-field__input:focus,
.contacts-field__textarea:focus{
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0,199,255,0.10);
}

.contacts-field__input::placeholder,
.contacts-field__textarea::placeholder{
    color: var(--color-muted);
}

.contacts-submit{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .03em;
    box-shadow: 0 14px 28px rgba(0,130,203,0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.contacts-submit:hover{
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0,130,203,0.24);
}

/* MAP */
.contacts-map__box{
    overflow: hidden;
    border: 1px solid #dfe9f0;
    background: #fff;
    box-shadow: 0 18px 40px rgba(19,54,84,0.08);
    height: 460px;
}

.contacts-map__box iframe{
    display: block;
    width: 100%;
    height: 100%;
}

/* CTA */
.contacts-cta__box{
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12) 0, rgba(255,255,255,0) 26%),
        linear-gradient(135deg, #0082cb 0%, #00c7ff 100%);
    color: #fff;
    box-shadow: 0 22px 48px rgba(0,130,203,0.20);
}

.contacts-cta__title{
    margin: 0 0 14px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.contacts-cta__text{
    margin: 0 !important;
    max-width: 760px;
    color: rgba(255,255,255,0.92) !important;
}

.contacts-cta__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.contacts-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .03em;
    border: 1px solid transparent;
}

.contacts-btn--light{
    background: #fff;
    color: var(--color-secondary);
}

.contacts-btn--light:hover{
    color: var(--color-secondary);
    transform: translateY(-1px);
}

.contacts-btn--light-border{
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.contacts-btn--light-border:hover{
    background: rgba(255,255,255,0.10);
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1199px){
    .contacts-cards{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px){
    .section-space{
        padding: 58px 0;
    }

    .section-title{
        font-size: 34px;
    }

    .contacts-hero{
        padding: 54px 0 42px;
    }

    .contacts-hero__title{
        font-size: 44px;
    }

    .contacts-main__grid,
    .contacts-cta__box{
        grid-template-columns: 1fr;
    }

    .contacts-form-wrap{
        position: static;
        top: auto;
    }

    .contacts-cta__actions{
        justify-content: flex-start;
    }
}

@media (max-width: 767px){
    .section-space{
        padding: 42px 0;
    }

    .section-title{
        font-size: 28px;
    }

    .contacts-hero__title{
        font-size: 36px;
    }

    .contacts-hero__text{
        font-size: 16px;
    }

    .contacts-cards{
        grid-template-columns: 1fr;
    }

    .contacts-form-box{
        padding: 24px 18px;
    }

    .contacts-form-box__title{
        font-size: 26px;
    }

    .contacts-map__box{
        height: 340px;
    }

    .contacts-cta__box{
        padding: 28px 20px;
    }

    .contacts-cta__title{
        font-size: 28px;
    }

    .contacts-cta__actions{
        flex-direction: column;
        align-items: stretch;
    }

    .contacts-btn,
    .contacts-submit{
        width: 100%;
    }

    .contacts-hours{
        padding: 20px 18px;
    }

    .contacts-hours__list li{
        flex-direction: column;
        align-items: flex-start;
    }
}