/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 120px 0;

    background: var(--background);
}

.contact-container {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* =========================================
   CONTENT
========================================= */

.contact-description {
    max-width: 580px;

    margin-bottom: 35px;

    color: var(--text);

    font-size: 15px;

    line-height: 1.85;
}


/* =========================================
   CONTACT LIST
========================================= */

.contact-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 18px;

    background: #ffffff;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

a.contact-item:hover {
    transform: translateY(-4px);

    border-color: rgba(47, 167, 160, 0.4);

    box-shadow:
        0 15px 35px rgba(32, 54, 109, 0.08);
}

.contact-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 14px;

    background: rgba(47, 167, 160, 0.1);

    color: var(--secondary);

    font-size: 14px;
    font-weight: 700;
}

.contact-item div:last-child {
    display: flex;

    flex-direction: column;
}

.contact-item span {
    margin-bottom: 3px;

    color: var(--text);

    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-item strong {
    color: var(--heading);

    font-size: 12px;
    font-weight: 600;
}


/* =========================================
   MAP
========================================= */

.contact-map {
    width: 100%;
    height: 100%;
    overflow: hidden;

    border-radius: 28px;

    background: #ffffff;

    padding: 12px;

    box-shadow:
        0 20px 50px rgba(32, 54, 109, 0.10);
}

.google-map {
    display: block;

    width: 100%;
    height: 100%;
    min-height: 476px;

    border: 0;
    border-radius: 20px;
}

.map-placeholder {
    width: 100%;
    height: 100%;

    min-height: 476px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 40px;

    text-align: center;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at center,
            rgba(47, 167, 160, 0.12),
            transparent 50%
        ),
        #eef3f9;
}

.map-placeholder > span {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 18px;

    background: var(--primary);

    color: #ffffff;

    font-size: 23px;
}

.map-placeholder h3 {
    margin-bottom: 8px;

    color: var(--heading);

    font-size: 22px;
}

.map-placeholder p {
    margin-bottom: 18px;

    color: var(--text);

    font-size: 13px;
}

.map-placeholder a {
    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

.map-placeholder a:hover {
    color: var(--secondary);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }
}

@media (max-width: 600px) {

    .contact-section {
        padding: 80px 0;
    }

    .contact-list {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 400px;
    }

    .map-placeholder {
        min-height: 376px;
    }
}