@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@700;900&display=swap');

:root {
    --a: #AEC9E7;
    --b: #EDCCF7;
    --c: #EAE9EF;
    --d: #E3F2EF;
    --e: #E3E7F0;
    --f: #FFFFFF;
    --g: #2D2D2D;
    --h: #F5F5F5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--f);
    color: var(--g);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -60px;
    padding: 20px 80px 15px 80px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px solid #ddd;
}

.wrapper {
    padding: 22px 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.005em;
}

#menu-toggle {
    display: none;
    /* sembunyikan hamburger */
    font-size: 24px;
    cursor: pointer;
}

nav {
    display: flex;
    gap: 40px;
    font-weight: 500;
    font-size: 15px;
}

nav a {
    color: #000000;

}

nav.active {
    display: flex;
    gap: 5px;
    /* misalnya */
}

nav.active a {
    color: #ffffff;
    border-radius: 6px;
    padding: 6px 14px;
    transition: background-color 0.3s ease;
    font-size: 13.5px;
}

nav.active a:hover {
    background-color: var(--g);
}

.btn-signin {
    font-size: 14px;
    font-weight: 500;
    padding: 6px 20px;
    border-radius: 20px;
    border: 1px solid var(--g);
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    display: block;
}

.btn-signin:hover {
    background-color: var(--g);
    color: #fff;
}

.mobile-only {
    display: none;
}

/* Konten utama */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-section img {
    width: 100%;
}

.contact-info {
    max-width: 600px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--g);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 2px solid var(--g);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 23px;
    /* ukuran ikon */
    color: var(--g);
}


.info-item .text .label {
    font-size: 14px;
    color: #555;
    margin-bottom: 3px;
}

.info-item .text .value {
    font-size: 18px;
    font-weight: 600;
    color: var(--g);
    line-height: 1.4;
}

.map {
    margin: 30px 0;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* FOOTER */
footer {
    background-color: var(--f);
    padding: 20px 60px;
    border-top: 1px solid #ddd;
    margin-top: auto;
    /* Memastikan footer selalu di bawah */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* biar responsif di layar kecil */
}

.footer-left {
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 20px;
    /* top right bottom left */
    font-size: 12px;
    color: #333;
}

.footer-logo {
    width: 40px;
    height: 30px;
    padding-right: 10px;
}

.footer-right {
    display: flex;
    align-items: center;
    padding: 0px 20px 0px 0px;
    /* top right bottom left */
    font-size: 12px;
    color: #333;
}

.social-icons a {
    margin-left: 8px;
    color: var(--g);
    text-decoration: none;
}

.social-icons a i {
    font-size: 20px;
}

.header .fa-bars {
    display: none;
    font-size: 21px;
    color: white;
    cursor: pointer;
    margin-right: 10px;
    /* Tambah jarak dari logo */
    order: -1;
    /* Letakkan di sisi kiri */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    nav {
        display: none;
        flex-direction: column;
        gap: 3px;
        background: #111;
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 15px;
        border-radius: 8px;
        z-index: 999;

    }

    nav.active {
        display: flex;
    }

    #menu-toggle {
        display: block;
        /* hamburger muncul */
        cursor: pointer;
    }

    .btn-signin {
        display: none;
        /* tombol sign in bisa disembunyikan */
    }

    .mobile-only {
        display: block;
    }

    header {
        margin: 0 auto;
        padding-left: 40px;
        padding-right: 40px;
        max-width: 100%;
    }

    .wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    nav {
        gap: 30px;
        font-size: 14px;
    }


    footer {
        padding: 20px 40px;
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        gap: 12px;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        font-size: 12px;
        width: 100%;
    }
}

/* Responsif */
@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .contact-info h2 {
        padding-left: 20px;
        font-size: 28px;
    }

    .info-item {
        justify-content: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .info-item .icon {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
        font-size: 20px;
    }

    .info-item .text .value {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    header {
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

    .wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    nav {
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #111;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        border-radius: 8px;
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    #menu-toggle {
        display: block;
        /* hamburger muncul */
    }

    .btn-signin {
        display: none;
        /* tombol sign in bisa disembunyikan */
    }

    .mobile-only {
        display: block;
    }

    footer {
        padding: 15px 20px;
    }

    .footer-left,
    .footer-right {
        font-size: 11px;
    }

    .social-icons a i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    header {
        margin: 0 auto;
        padding: 15px 15px 15px 15px;
        max-width: 100%;
    }

    .wrapper {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    nav {
        display: none;
    }

    .logo {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 18px;
        letter-spacing: 0.005em;
    }

    .btn-signin {
        display: none;
        /* tombol sign in bisa disembunyikan */
    }

    .mobile-only {
        display: block;
    }

    .header .fa-bars {
        display: block;
        color: var(--g);
    }

    footer {
        padding: 10px 15px;
    }

    .footer-container {
        flex-direction: column;
        gap: 8px;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        font-size: 10px;
        flex-wrap: wrap;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        gap: 8px;
    }

    .social-icons a i {
        font-size: 14px;
    }

}

