html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Home */
/* Styling header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    /* background: transparent; */
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    position: fixed;
    height: 80px;
    background-color: #ffffff !important;

}


/* Styling logo */
.logo img {
    height: 58px;
    width: 171px;
    margin-right: 0;
}

/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

/* Styling navigasi */
nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: normal;
    transition: color 0.3s ease-in-out;
    font-family: "Inter Display", sans-serif;
}

nav a:hover,
nav a.active {
    color: #333;
    font-weight: bold;
}

:root {
    --vh: 1vh;
}

.hero {
    height: calc(var(--vh, 1vh) * 100);
}

.panel-header {
    display: flex;
    height: 541px;
    padding: 0px 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--grdn, linear-gradient(90deg, #C7E1E8 0%, #F9D9BB 100%));
    margin-top: 100px;
    margin-bottom: -130px;

}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Sesuaikan tinggi agar konten benar-benar di tengah */
    text-align: center;
    /* Memastikan semua teks di dalamnya rata tengah */
    position: relative;

}

.hero-text {
    position: relative;

}

.hero-text h5,
.hero-text h6,
.hero-text p {
    margin: 0 0 15px 0;
    /* Memberi jarak antar elemen */
}

.hero-text h5 {
    color: var(--Greyscale-0, #030303);
    font-family: "Inter Display", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.hero-text h6 {
    color: var(--Greyscale-0, #0c0c0c);
    text-align: center;
    font-family: 'Rufina', serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.hero-text p {
    color: var(--Greyscale-0, #0c0c0c);
    font-family: "Inter Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

/* style about */
.about-section {
    text-align: center;
    padding: 50px 20px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 350px;
}

.about-icon img {
    width: 80px;
    /* Sesuaikan ukuran ikon */
    margin-bottom: 20px;
}

.about-title {
    font-family: 'Rufina', serif;
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-top: 250px;
    text-align: center;
    margin-bottom: 40px;
}

.project {
    font-family: 'Rufina', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-top: 100px;
    text-align: center;
}

.price h3 {
    font-family: 'Rufina', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #222;
    margin-top: 100px;
    text-align: center;
}

.price p {
    color: var(--Black, #0A102F);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin-top: 10px;

}

.button-desain {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 332px;
    height: 48px;
    padding: 0;
    gap: 8px;
    border-radius: 37px;
    background: var(--Greyscale-800, #1A1B25);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
    color: white;
}

.button-arsitek {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 332px;
    height: 48px;
    padding: 0;
    gap: 8px;
    border-radius: 37px;
    border: 1px solid var(--Greyscale-800, #1A1B25);
    background: var(--Greyscale-0, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
}

.price-desain {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 332px;
    height: 48px;
    padding: 0;
    gap: 8px;
    border-radius: 37px;
    background: var(--Greyscale-800, #1A1B25);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);

}

.price-arsitek {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 332px;
    height: 48px;
    padding: 0;
    gap: 8px;
    border-radius: 37px;
    border: 1px solid var(--Greyscale-800, #1A1B25);
    background: var(--Greyscale-0, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
}

/* Untuk memastikan teks tetap terpusat */
.button-desain p,
.button-arsitek p {
    margin: 0;
    line-height: 1;
}

.price-desain p,
.price-arsitek p {
    margin: 0;
    line-height: 1;
}

.about-text {
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    color: #444;
    line-height: 30px;
}

/* Style Tentang kami*/
.team {
    display: flex;
    height: 40px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    font-family: "Inter Display", sans-serif;
    border-radius: 12px;
    border: 1px solid var(--Greyscale-800, #1A1B25);
    background: var(--Greyscale-0, #FFF);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
}

/* end */

/* style promo */
.panel-promo {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    width: 1130px;
    height: 288px;
    padding: 0px 50px;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 16px;
    background: #1A1B25;
}

.panel-promo .row {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    /* Mengatur supaya konten tidak terpusat */
    align-items: center;
    /* Menyelaraskan elemen-elemen di baris secara vertikal */
}

.panel-promo h5 {
    color: var(--Greyscale-0, #FFF);
    font-family: "Inter Display ", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;

}

.panel-promo h4 {
    color: var(--Greyscale-0, #FFF);
    font-family: "Rufina", sans-serif;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    width: 500px;
}

.panel-promo p {
    color: var(--Greyscale-0, #FFF);
    font-family: "Inter Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;

}

.panel-promo button {
    background-color: white;
}

/* end */

/* Style footer */
.panel-footer {
    height: 395px;
    padding: 30px 50px;
    align-self: stretch;
    border-radius: 16px;
    background: #C8E1E7;
}

.panel-footer h5 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: 'Rufina', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;

}
.panel-footer p {
    color: var(--Greyscale-800, #1A1B25);
    font-family: 'Rufina', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;

}

.panel-footer h6 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin-top: 20px;
}

.icon-container {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;

}

.layanan h5 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-left: 25px;

}

.layanan p {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin-left: 25px;
    margin-top: 25px;
}

/* end */


/* Service */
.service-desain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #DDF3EF;
    width: 550px;
    height: 232px;
}

.service-desain h5 {
    color: var(--Alert-Success-200, #28806F);
    font-family: "Inter Display", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;

}

.service-desain h6 {
    color: var(--Alert-Success-200, #28806F);
    font-family: 'Rufina', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    text-align: center;
}

.service-desain button {
    height: 48px;
    padding: 8px 16px;
    border-radius: 10px;
    background: var(--Alert-Success-200, #28806F);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
    color: white;
    font-family: "Inter Display", sans-serif;
}

.service-arsitek {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: #FAEDCC;
    width: 550px;
    height: 232px;
}

.service-arsitek h5 {
    font-family: "Inter Display", sans-serif;
    color: var(--Alert-Warning-200, #966422);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.service-arsitek h6 {
    font-family: 'Rufina', sans-serif;
    color: var(--Alert-Warning-200, #966422);
    font-size: 32px;
    font-style: normal;
    text-align: center;
    font-weight: 400;
    line-height: 130%;
}

.service-arsitek button {
    height: 48px;
    padding: 8px 16px;
    color: white;
    font-family: "Inter Display", sans-serif;
    border-radius: 10px;
    background: var(--Alert-Warning-200, #966422);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
}

.panel-penawaran {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 168px;
    width: 550px;
    border-radius: 16px;
    background: var(--Greyscale-800, #1A1B25);
}

.panel-penawaran h6 {
    color: var(--Greyscale-0, #FFF);
    font-family: 'Rufina', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-left: 20px;
}

.panel-pengalaman {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 168px;
    width: 550px;
    border-radius: 16px;
    border: 1px solid var(--Greyscale-800, #1A1B25);
    background: var(--Greyscale-0, #FFF);
}

.panel-pengalaman .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.pengalaman-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.panel-pengalaman h1 {
    color: var(--Greyscale-800, #1A1B25);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.panel-pengalaman p {
    color: var(--Greyscale-800, #1A1B25);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin: 0;
}

.panel-tawaran {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 168px;
    padding: 20px;
    gap: 8px;
    flex: 1 0 0;
    border-radius: 16px;
    background: var(--Greyscale-50, #ECEFF3);
}

.panel-tawaran h4 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-top: 15px;
}

.panel-tawaran p {
    color: var(--Greyscale-400, #818898);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

/* Detail Arsitek */

.header-panel-arsitek {
    display: flex;
    height: 370px;
    padding: 0px 50px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--gradient, linear-gradient(90deg, #C7E1E8 0%, #F9D9BB 100%));
}

.header-panel-arsitek h5 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

.header-panel-arsitek h6 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Rufina", sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.header-panel-arsitek p {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;

}

.header-panel-arsitek img {
    display: flex;
    justify-content: flex-start;
    width: 353px;
    height: 353px;
    aspect-ratio: 1/1;
}

.detail-arsitek {
    margin-top: 150px;
    margin-bottom: 100px;

}

.pengalaman {
    margin-top: 80px;

}

.panel-detail-arsitek {
    display: flex;
    width: 600px;
    height: 544px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    gap: 61px;
    align-self: stretch;
    border-radius: 16px;
    background: #C8E1E7;

}

.panel-detail-arsitek img {
    width: 366px;
    height: 350px;
    margin-left: 30px;
}

.panel-detail-arsitek h1 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-left: 70px;
    margin-top: 20px;
}

.panel-detail-arsitek p {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
    margin-left: 70px;
}

.service-panel {
    display: flex;
    height: 168px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--Greyscale-50, #ECEFF3);
    margin-left: 80px;

}

.service-panel h5 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.service-panel p {
    color: var(--Greyscale-400, #818898);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.section-rumah {
    margin-top: 80px;

}

.section-rumah h6 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Rufina", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;

}

.section-rumah p {
    color: var(--Black, #0A102F);
    font-family: "Inter Display", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155%;
}

.service-pilihan {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    flex: 1 0 0;
    border-radius: 16px;
    background: var(--Alert-Success-0, #EFFEFA);
}

.service-pilihan h2 {
    color: var(--Greyscale-800, #1A1B25);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.service-pilihan h6 {
    color: var(--Greyscale-800, #1A1B25);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.service-pilihan p {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background-color: #28806F;
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 14px;
}

.interior-price {
    display: flex;
    padding: 20px;
    width: 275px;
    height: 515px;
    flex-direction: column;
    text-align: left;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid var(--Greyscale-100, #DFE1E7);
    background: var(--Shades-White, #FFF);
}

.interior-price h2 {
    color: var(--Alert-Success-200, #28806F);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.interior-price h6 {
    color: var(--Greyscale-300, #A4ACB9);
    font-family: "Inter Display", sans-serif;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-top: -10px;
}

.interior-price h5 {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    margin-top: -10px;
}

.interior-price p {
    color: var(--Greyscale-800, #1A1B25);
    font-family: "Inter Display", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #DDF3EF;
    color: #28806F;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 8px;
    flex-shrink: 0
}

.interior-price-pesan {
    display: flex;
    padding: 20px;
    width: 275px;
    height: 515px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 20px;
    border: 1px solid var(--Alert-Success-100, #40C4AA);
    background: var(--Alert-Success-0, #EFFEFA);
}

.interior-price-pesan h2 {
    color: var(--Alert-Success-200, #28806F);
    font-family: "Rufina", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 126%;
}

.mulai-dari {
    display: flex;
    padding: 30px 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 16px;
    background: var(--Alert-Success-25, #DDF3EF);
    width: 235px;
    height: 148px;
}

.mulai-dari h6 {
    color: var(--Alert-Success-200, #28806F);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 155%;
}

.mulai-dari h5 {
    color: var(--Alert-Success-200, #28806F);
    text-align: center;
    font-family: "Inter Display", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

.interior-price-pesan button {
    display: flex;
    height: 52px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    background: var(--Alert-Success-200, #28806F);
    box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
    color: white;
    margin-top: 10px;
}

.footer {
    background: url('image/sajeeva_land.png') no-repeat center center;
    background-size: contain;
    height: 150px;
    /* Sesuaikan tinggi */
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    max-width: 100%;
    height: auto;
}


/* end */

/* RESPONSIF UNTUK MOBILE */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5px;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background-color: #ffffff !important;
        z-index: 1000;
    }

    .navbar-brand {
        margin-left: 0;
        padding-left: 0;
        /* Pastikan tidak ada padding tambahan */
    }

    .navbar-brand img {
        display: block;
        max-height: 34px;
    }

    .navbar-toggler {
        margin-left: auto;
        margin-right: 120px;
    }


    /* end */
    .panel-header {
        display: flex;
        padding: 20px;
        width: 390px;
        height: 320px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: 80px;
        gap: 16px;
        align-self: stretch;
        border-radius: 16px;
        background: var(--grdn, linear-gradient(90deg, #C7E1E8 0%, #F9D9BB 100%));
    }

    .hero-content {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        /* Sesuaikan tinggi agar konten benar-benar di tengah */
        text-align: center;
        /* Memastikan semua teks di dalamnya rata tengah */
        position: relative;

    }

    .hero-text h5,
    .hero-text h6,
    .hero-text p {
        margin: 0 0 15px 0;
        /* Memberi jarak antar elemen */
    }

    .hero-text h5 {
        color: #1A1B25;
        font-family: "Inter Display", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
    }

    .hero-text h6 {
        color: #1A1B25;
        text-align: center;
        font-family: "Rufina", sans-serif;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

    .hero-text p {
        color: #1A1B25;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;
    }

    /* about */
    .about-title {
        font-family: 'Rufina', serif;
        font-size: 36px;
        font-weight: 600;
        color: #222;
        margin-top: 50px;
        text-align: center;
        margin-bottom: 40px;
    }

    /* end */
    /* Service */
    .service-desain {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: #DDF3EF;
        width: 390px;
        height: 232px;
    }

    .service-desain h5 {
        color: var(--Alert-Success-200, #28806F);
        font-family: "Inter Display", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;

    }

    .service-desain h6 {
        color: var(--Alert-Success-200, #28806F);
        font-family: 'Rufina', sans-serif;
        font-size: 30px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        text-align: center;
    }

    .service-desain button {
        height: 48px;
        padding: 8px 16px;
        border-radius: 10px;
        background: var(--Alert-Success-200, #28806F);
        box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
        color: white;
        font-family: "Inter Display", sans-serif;
    }

    .service-arsitek {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        background: #FAEDCC;
        width: 390px;
        height: 232px;
    }

    .service-arsitek h5 {
        font-family: "Inter Display", sans-serif;
        color: var(--Alert-Warning-200, #966422);
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
    }

    .service-arsitek h6 {
        font-family: 'Rufina', sans-serif;
        color: var(--Alert-Warning-200, #966422);
        font-size: 30px;
        font-style: normal;
        text-align: center;
        font-weight: 400;
        line-height: 130%;
    }

    .service-arsitek button {
        height: 48px;
        padding: 8px 16px;
        color: white;
        font-family: "Inter Display", sans-serif;
        border-radius: 10px;
        background: var(--Alert-Warning-200, #966422);
        box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
    }

    .panel-penawaran {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 168px;
        width: 390px;
        border-radius: 16px;
        background: var(--Greyscale-800, #1A1B25);
        margin-top: -50px;
    }

    .panel-penawaran h6 {
        color: var(--Greyscale-0, #FFF);
        font-family: 'Rufina', sans-serif;
        font-size: 35px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin-left: 20px;
    }

    .panel-pengalaman {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 362px;
        width: 390px;
        border-radius: 16px;
        border: 1px solid var(--Greyscale-800, #1A1B25);
        background: var(--Greyscale-0, #FFF);
    }

    .panel-pengalaman h1 {
        color: var(--Greyscale-800, #1A1B25);
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 48px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
    }

    .panel-pengalaman p {
        color: var(--Greyscale-800, #1A1B25);
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 165%;
        margin: 0;
    }

    /* Style Tentang kami*/
    .team {
        display: flex;
        height: 52px;
        width: 372px;
        padding: 8px 16px;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px;
        font-family: "Inter Display", sans-serif;
        border-radius: 12px;
        border: 1px solid var(--Greyscale-800, #1A1B25);
        background: var(--Greyscale-0, #FFF);
        box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
    }

    /* style promo */
    .panel-promo {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 288px;
        padding: 0px  40px 2px;
        align-items: center;
        gap: 16px;
        flex-shrink: 0;
        border-radius: 16px;
        background: #1A1B25;
    }

    .button-container {
        display: none;
    }

    .panel-promo h5 {
        color: var(--Greyscale-0, #FFF);
        font-family: "Inter Display ", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        margin-left: -55px;

    }

    .panel-promo h4 {
        color: var(--Greyscale-0, #FFF);
        font-family: "Rufina", sans-serif;
        font-size: 40px;
        margin-left: -55px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin-top: -20px;

    }

    .panel-promo p {
        color: var(--Greyscale-0, #FFF);
        font-family: "Inter Display", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 155%;
        margin-left: -55px;
        width: 380px;

    }

    .panel-promo button {
        background-color: white;
        margin-left: -45px;
        width: 350px;
        height: 50px;
        text-align: center;

    }
    /* Style footer */
    .panel-footer {
        height: 860px;
        padding: 10px 30px;
        width: auto;
        border-radius: 16px;
        background: #C8E1E7;
    }

    .panel-footer h5 {
        color: var(--Greyscale-800, #1A1B25);
        font-family: 'Rufina', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin-bottom: 10px;

    }
    .panel-footer p {
        color: var(--Greyscale-800, #1A1B25);
        font-family: 'Rufina', sans-serif;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;  
        margin-bottom: 15px;
        margin-left: -2px;
    }

    .panel-footer h6 {
        color: var(--Greyscale-800, #1A1B25);
        font-family: "Inter Display", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 155%;
        margin-top: 20px;
       
    }
    .layanan h5 {
        color: var(--Greyscale-800, #1A1B25);
        font-family: "Inter Display", sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        margin-left: -2px;
    }

    /* detail interior */
    .header-panel-arsitek {
        display: flex;
        padding: 20px;
        width: 390px;
        height: 541px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
        margin-top: 80px;
        gap: 16px;
        align-self: stretch;
        border-radius: 16px;
        background: var(--grdn, linear-gradient(90deg, #C7E1E8 0%, #F9D9BB 100%));
    }

    .header-panel-arsitek h5 {
        color: #1A1B25;
        font-family: "Inter Display", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%;
        text-align: center;
    }
    

    .header-panel-arsitek h6 {
        color: #1A1B25;
        text-align: center;
        font-family: "Rufina", sans-serif;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
    }

    .header-panel-arsitek p {
        color: #1A1B25;
        text-align: center;
        font-family: "Inter Display", sans-serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 160%;

    }
    .detail-arsitek {
        margin-top: 50px;
        margin-bottom: 100px;

    }
    .panel-detail-arsitek {
        display: flex;
        width: auto;
        margin: 0 auto;
        height: auto;
        flex-direction: column;
        text-align: center;
        align-self: stretch;
        border-radius: 16px;
        background: #C8E1E7;
        margin-bottom: 30px;

    }

    .panel-detail-arsitek img {
        width: 220px;
        height: 234px;
        margin: 0 auto;
        margin-top: 10px;
    }

    .panel-detail-arsitek h1 {
        color: var(--Greyscale-800, #1A1B25);
        font-family: "Inter Display", sans-serif;
        font-size: 48px;
        margin: 0 auto;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
    }

    .panel-detail-arsitek p {
        color: var(--Greyscale-800, #1A1B25);
        font-family: "Inter Display", sans-serif;
        font-size: 18px;
        margin: 0 auto;
        font-style: normal;
        font-weight: 400;
        line-height: 155%;
    }
    .service-panel {
        display: flex;
        margin: 0 auto;
        height: 168px;
        border-radius: 16px;
        background: var(--Greyscale-50, #ECEFF3);
    }
    .section-rumah h6 {
        color: var(--Greyscale-800, #1A1B25);
        font-family: "Rufina", sans-serif;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        margin-bottom: 10px;
    }
    .section-rumah p {
        color: var(--Black, #0A102F);
        font-family: "Inter Display", sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 155%;
    }
    .interior-price {
        display: flex;
        padding: 20px;
        width: auto;
        height: auto;
        flex-direction: column;
        text-align: left;
        margin: 0 auto;
        gap: 20px;
        flex: 1 0 0;
        align-self: stretch;
        border-radius: 20px;
        border: 1px solid var(--Greyscale-100, #DFE1E7);
        background: var(--Shades-White, #FFF);
    }

    .interior-price-pesan {
        display: flex;
        padding: 20px;
        width: auto;
        height: auto;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        gap: 20px;
        flex: 1 0 0;
        align-self: stretch;
        border-radius: 20px;
        border: 1px solid var(--Alert-Success-100, #40C4AA);
        background: var(--Alert-Success-0, #EFFEFA);
    }
    .mulai-dari {
        display: flex;
        padding: 30px 0px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        border-radius: 16px;
        background: var(--Alert-Success-25, #DDF3EF);
        width: auto;
        height: auto;
    }
    .interior-price-pesan button {
        display: flex;
        width: 332px;
        height: 52px;
        padding: 8px 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        border-radius: 12px;
        background: var(--Alert-Success-200, #28806F);
        box-shadow: 0px 1px 2px 0px rgba(13, 13, 18, 0.06);
        color: white;
        margin-top: 10px;
    }

    /* end */

    @media (min-width: 1440px) {
        .container {
            max-width: 1200px;
        }
    }
}