/* =========================================================
   BERC Contact Page
   ========================================================= */

/* ---------------------------------------------------------
   Info cards
--------------------------------------------------------- */
.berc-contact-info { background: #fff; padding: 90px 0 20px; }

.berc-cinfo-card {
    height: 100%;
    text-align: center;
    padding: 42px 28px;
    background: var(--berc-cream);
    border-radius: 20px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.berc-cinfo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px -20px rgba(16, 31, 54, 0.28);
}

.berc-cinfo-card--accent {
    background: linear-gradient(160deg, var(--berc-navy-2) 0%, var(--berc-navy) 100%);
}

.berc-cinfo-card--accent .berc-cinfo-card__title,
.berc-cinfo-card--accent .berc-cinfo-card__text,
.berc-cinfo-card--accent .berc-cinfo-card__text a { color: #fff; }

.berc-cinfo-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--berc-teal) 0%, var(--berc-teal-dark) 100%);
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 14px 26px -12px rgba(13, 132, 150, 0.6);
}

.berc-cinfo-card--accent .berc-cinfo-card__icon {
    background: linear-gradient(180deg, var(--berc-gold) 0%, #b48d47 100%);
}

.berc-cinfo-card__title {
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--berc-navy);
    margin-bottom: 10px;
}

.berc-cinfo-card__text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #5a6773;
    margin-bottom: 0;
}

.berc-cinfo-card__text a { color: inherit; font-weight: 600; }
.berc-cinfo-card__text a:hover { color: var(--berc-teal-dark); }

/* ---------------------------------------------------------
   Main panel — form + map/verse
--------------------------------------------------------- */
.berc-contact-main { background: #fff; padding: 50px 0 100px; }

.berc-contact-panel {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -24px rgba(16, 31, 54, 0.32);
    border: 1px solid rgba(16, 31, 54, 0.06);
}

/* ---- Form side ---- */
.berc-contact-form-wrap { padding: 56px 52px; background: #fff; }
.berc-contact-form-wrap__lead { margin: 4px 0 30px; }

.berc-form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--berc-navy);
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.berc-form-input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid rgba(16, 31, 54, 0.12);
    background: #f8fafb;
    font-size: 0.88rem;
    font-family: 'Poppins', sans-serif;
    color: var(--berc-text-dark);
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.berc-form-input::placeholder { color: #9aa5b1; }

.berc-form-input:focus {
    outline: none;
    border-color: var(--berc-teal);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(18, 160, 182, 0.12);
}

.berc-form-input--area { resize: vertical; min-height: 120px; }

.berc-contact-form__submit {
    margin-top: 26px;
    padding: 14px 36px;
    box-shadow: 0 14px 26px -12px rgba(13, 132, 150, 0.7);
}

/* ---- Side (map + verse) ---- */
.berc-contact-side {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--berc-navy);
}

.berc-contact-side__map {
    height: 260px;
    width: 100%;
    filter: grayscale(0.15) contrast(1.05);
}

.berc-contact-side__map iframe { display: block; }

.berc-contact-side__panel {
    flex: 1;
    padding: 40px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--berc-navy-2) 0%, var(--berc-navy) 100%);
}

.berc-contact-side__icon {
    color: var(--berc-gold);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.berc-contact-side__verse {
    font-family: 'Merriweather', serif;
    font-style: italic;
    font-size: 1.02rem;
    line-height: 1.7;
    color: #f2f5f8;
    margin-bottom: 8px;
}

.berc-contact-side__verse-ref {
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--berc-gold);
    margin-bottom: 28px;
}

.berc-contact-side__social {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.berc-contact-side__social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(201, 163, 92, 0.5);
    color: #fff;
    font-size: 1rem;
    transition: all .2s ease;
}

.berc-contact-side__social a:hover {
    background: var(--berc-gold);
    border-color: var(--berc-gold);
    color: var(--berc-navy);
    transform: translateY(-3px);
}

@media (max-width: 991.98px) {
    .berc-contact-form-wrap { padding: 42px 30px; }
    .berc-contact-side__map { height: 220px; }
}
