:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --text-950: #0f172a;
    --primary: #4fb893;
    --badge-bg: #d8f3e5;
    --badge-text: #0f3f2e;
}

* {
    box-sizing: border-box;
}

html,
body {
    background: #ffffff;
    color: var(--text-950);
    font-family: var(--body-font);
    margin: 0;
    overflow-x: hidden;
}

.contact-section {
    background: #ffffff;
    padding: 64px 0;
    width: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1420px;
    padding: 0 20px;
}

.flex-containers {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
}

.left-side {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    width: 45%;
}

.right-side {
    align-items: center;
    display: flex;
    justify-content: center;
    width: 55%;
}

.sub-title {
    background: var(--badge-bg);
    border-radius: 6px;
    color: #292929;
    display: inline-block;
    font: 600 16px/1.2 var(--body-font);
    margin-bottom: 8px;
    padding: 6px 14px;
}
.main-title {
    margin: 0;
    padding: 8px 0 24px;
    font: 700 clamp(28px, 3.2vw, 42px) / 1.2 var(--second-family);
}

.main-title {
    font: 700 clamp(28px, 3.2vw, 42px) / 1.2;
    color: #292929;
    margin: 0;
    padding: 8px 0 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Address */
.contact-info .address {
    align-items: flex-start;
    color: #161616;
    display: flex;
    font: 400 clamp(16px, 2vw, 21px) / 1.5 var(--body-font);
    margin: 0;
}

.contact-info .address i {
    align-items: center;
    color: var(--primary);
    display: flex;
    flex-shrink: 0;
    font-size: 35px;
    height: 35px;
    justify-content: center;
    margin-right: 12px;
    width: 35px;
}
.address-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.address-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Phones — one line with 3 icons */
.phone-numbers {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
    margin: 0;
}
.phone-number {
    align-items: center;
    color: #666;
    display: flex;
    font: 400 clamp(15px, 1.8vw, 21px) / 1.5 var(--body-font);
    margin: 0;
}

.phone-number i {
    align-items: center;
    color: var(--primary);
    display: flex;
    flex-shrink: 0;
    font-size: 28px;
    height: 35px;
    justify-content: center;
    margin-right: 8px;
    width: 35px;
}

.phone-number a {
    color: #161616;
    text-decoration: none;
}
.phone-number a {
    color: #161616;
    text-decoration: none;
}
.phone-number a:hover {
    text-decoration: underline;
}

.phone-number a:hover {
    text-decoration: underline;
}
.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.map-wrapper {
    align-items: center;
    aspect-ratio: 16/11;
    background: #f2f2f2;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 600px;
    overflow: hidden;
    width: 100%;
}

.map-image {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/* ===== Tablet & Mobile: teks di atas, map di bawah ===== */
@media (max-width: 1024px) {
    .flex-containers {
        align-items: stretch;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .flex-containers .left-side {
        order: 1 !important;
        width: 100% !important;
    }
    .flex-containers .right-side {
        order: 2 !important;
        width: 100% !important;
    }

    .map-wrapper {
        aspect-ratio: 16/10;
        margin-top: 8px;
        max-width: none;
        width: 100%;
    }

    .phone-numbers {
        gap: 8px 16px;
    }
    .phone-numbers {
        gap: 8px 16px;
    }
}

/* ===== Mobile kecil (≤480px) tuning ===== */
@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }

    .sub-title {
        font-size: 16px;
    }

    .main-title {
        padding-bottom: 16px;
    }

    .contact-info {
        gap: 16px;
    }

    .contact-info .address i {
        font-size: 28px;
        height: 28px;
        width: 28px;
    }

    .phone-number i {
        font-size: 24px;
        height: 28px;
        width: 28px;
    }

    .map-wrapper {
        aspect-ratio: 16/12;
    }
}
