/* ── Contact page — page-specific styles only ──────────────────
 * Shared form styles (form-label, form-input, btn-submit, etc.)
 * live in css/components/forms.css.
 * ──────────────────────────────────────────────────────────────────── */

/* ── Channel cards — one clickable card per contact method ── */
.ba-contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ba-contact-channel {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.ba-contact-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
    text-decoration: none;
}

.ba-contact-channel:active {
    transform: translateY(-1px) scale(0.99);
}

.ba-contact-channel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 999px;
    background: rgba(91, 156, 234, 0.12);
    color: var(--color-primary);
    font-size: 1.25rem;
    line-height: 1;
}

.ba-contact-channel__icon--whatsapp {
    background: color-mix(in srgb, var(--color-green) 12%, transparent);
    color: var(--color-green);
}

.ba-contact-channel__icon--messenger {
    background: rgba(91, 156, 234, 0.12);
    color: var(--color-primary);
}

.ba-contact-channel__text {
    min-width: 0;
    flex: 1;
}

.ba-contact-channel__text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
}

.ba-contact-channel__text span {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ba-contact-channel__arrow {
    flex-shrink: 0;
    color: #c3c9d1;
    font-size: 1rem;
    transition: color 0.2s, transform 0.2s;
}

.ba-contact-channel:hover .ba-contact-channel__arrow {
    color: var(--color-primary);
    transform: translateX(3px);
}

/* ── Hours + social under the channels ────────────────────── */
.ba-contact-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* WhatsApp response-time note under the channels */
.ba-contact-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Saved-list hint under the contact form */
.ba-contact-savedlist-note {
    margin: 0.9rem 0 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.ba-contact-hours .bi {
    color: var(--color-primary);
}

.ba-contact-social {
    margin-top: 2rem;
}

.ba-contact-social p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* ── Official social icon buttons ─────────────────────────── */
.ba-contact-socials {
    display: flex;
    gap: 0.65rem;
}

.ba-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-dark);
    font-size: 1.25rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}

.ba-social-btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ba-social-btn--facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.ba-social-btn--instagram:hover {
    background: radial-gradient(circle at 30% 107%,
        #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border-color: transparent;
}

.ba-social-btn--youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* ── Form card — mirrors the booking card style ───────────── */
.ba-contact-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

@media (max-width: 575.98px) {
    .ba-contact-card {
        padding: 1.5rem;
    }
}

.ba-contact-card__title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.4rem;
}

.ba-contact-card__sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.75rem;
}

/* ── Map ──────────────────────────────────────────────────── */
.ba-contact-map iframe {
    display: block;
    width: 100%;
}
