/* === HS Contact Section === */
:root {
    --hs-color-point: #d32978;
}

.hs-contact {
    padding: 100px 0;
    background: #f8f3e8;
}

.hs-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.hs-contact__header {
    text-align: center;
    margin-bottom: 56px;
}

.hs-contact__label {
    display: inline-block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--hs-color-point);
    margin-bottom: 12px;
}

.hs-contact__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a2025;
    margin-bottom: 8px;
}

.hs-contact__subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    color: #999;
    font-weight: 300;
}

/* Body */
.hs-contact__body {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Map */
.hs-contact__map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 8px 32px rgba(211, 41, 120, 0.08);
}

.hs-contact__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
}

/* Info */
.hs-contact__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hs-contact__info-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(211, 41, 120, 0.06);
    display: flex;
    flex-direction: column;
    gap: 28px;
    flex: 1;
}

.hs-contact__info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.hs-contact__info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(211, 41, 120, 0.1), rgba(211, 41, 120, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--hs-color-point);
}

.hs-contact__info-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--hs-color-point);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.hs-contact__info-text {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #555;
}

.hs-contact__closed {
    color: var(--hs-color-point);
    font-weight: 600;
    font-size: 0.82rem;
}

/* CTA Button */
.hs-contact__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 16px 36px;
    background: var(--hs-color-point);
    color: #fff;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(211, 41, 120, 0.25);
}

.hs-contact__cta:hover {
    background: #ab2062;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 41, 120, 0.35);
}

/* Social Icons */
.hs-contact__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.hs-contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: #888;
    box-shadow: 0 4px 12px rgba(211, 41, 120, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hs-contact__social-link:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 41, 120, 0.25);
}

.hs-contact__social-link:nth-child(1):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.hs-contact__social-link:nth-child(2):hover {
    background: #FF0000;
}

.hs-contact__social-link:nth-child(3):hover {
    background: #03C75A;
}

.hs-contact__social-link:nth-child(4):hover {
    background: #1877F2;
}

/* Responsive */
@media (max-width: 900px) {
    .hs-contact__body {
        grid-template-columns: 1fr;
    }

    .hs-contact__map {
        min-height: 300px;
    }

    .hs-contact__map iframe {
        min-height: 300px;
    }

    .hs-contact__cta {
        width: 100%;
    }

    .hs-contact__title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hs-contact {
        padding: 60px 0;
    }

    .hs-contact__inner {
        padding: 0 20px;
    }

    .hs-contact__title {
        font-size: 1.5rem;
    }

    .hs-contact__subtitle {
        font-size: 0.88rem;
    }

    .hs-contact__label {
        font-size: 0.7rem;
    }

    .hs-contact__info-text {
        font-size: 0.85rem;
    }

    .hs-contact__header {
        margin-bottom: 36px;
    }
}
