@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


body {
    font-family: "Rubik", sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    background-image: url(image/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 250px;
    width: 450px;
    border-radius: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    color: #fff;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.social-icons {
    color: #25d366;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-right: 10px;
    background-color: #ccc;
    object-fit: cover;
}

.logo:hover img {
    background-color: #ffffff;
}

.logo-text h1 {
    font-size: 1.2em;
    margin: 0;
    color: #fff;
}

.logo-text p {
    font-size: 0.6em;
    margin: 0;
    color: #b9b9b9;
    font-style: bold;
}

.logo-text:hover h1 {
    color: #c91f1f;
    transform: scale(1.05);
    transition: 0.5s;
}

.social-icons a {
    color: #c51818;
    font-size: 1.2em;
    margin-left: 10px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #dbdbdb;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
}

main button {
    background-color: #f9f9f9;
    color: #333;
    border: none;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

main button:hover {
    background-color: #c91f1f;
}

main button i {
    margin-right: 15px;
    font-size: 2em;
    color: #c91f1f;
}

.button strong {
    display: block;
    font-size: 1.4em;
    margin-bottom: -2px;
    /* Perbaikan kecil pada nilai margin */
}

.button small {
    color: #777;
    font-size: 0.8em;
}

.new-arrival-btn {
    background: #35097c;
    color: #c91f1f;
    border: 3px solid #d3d618;
    border-radius: 15px;
    padding: 0.8rem 2rem;
    font: 24px "Margarine", sans-serif;
    outline: none;
    cursor: pointer;
    width: 100%;
    height: 75px;
    position: relative;
    transition: 0.2s ease-in-out;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 0 20px #d3d618;
    transition: all 0.3s linear;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-name: shaker;
}

@keyframes shaker {
    0% {
        transform: rotate(0deg);
    }

    29% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(1deg);
    }

    31% {
        transform: rotate(2deg);
    }

    33% {
        transform: rotate(1deg);
    }

    35% {
        transform: rotate(0deg);
    }

    37% {
        transform: rotate(-1deg);
    }

    39% {
        transform: rotate(-2deg);
    }

    41% {
        transform: rotate(-1deg);
    }

    43% {
        transform: rotate(0deg);
    }

    45% {
        transform: rotate(1deg);
    }

    47% {
        transform: rotate(2deg);
    }

    49% {
        transform: rotate(1deg);
    }

    51% {
        transform: rotate(0deg);
    }

    53% {
        transform: rotate(-1deg);
    }

    55% {
        transform: rotate(-2deg);
    }

    57% {
        transform: rotate(-1deg);
    }

    59% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.button-hand {
    position: relative;
    display: flex;
    padding-top: 50px;
    z-index: 1;
    cursor: pointer;
}

.button-hand button:before {
    content: "👇";
    font-size: 60px;
    transform: scaleX(-1);
    position: absolute;
    right: 0;
    top: -68px;
    animation: up-down 1s infinite;

    transform: scaleX(-1) !important;
    animation: up-down 1s infinite !important;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.lock-icon,
.unlock-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    transition: opacity 0.3s ease;
}

.unlock-icon {
    opacity: 0;
}

.new-arrival-btn:hover .lock-icon {
    opacity: 0;
}

.new-arrival-btn:hover .unlock-icon {
    opacity: 1;
}



.new-arrival-btn strong {
    color: #dbdbdb;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.new-arrival-btn:hover strong {
    color: #ffffff;
    text-shadow:
        0 0 5px #1f8bc9,
        0 0 10px #1f47c9,
        0 0 20px #1f47c9;
}

/* Style untuk ikon lock/unlock */
.new-arrival-btn .icon-lock {
    position: relative;
    z-index: 2;
    font-size: 24px;
    transition: all 0.3s ease;
}

.new-arrival-btn:hover .icon-lock {
    opacity: 0;
}

.new-arrival-btn .hands:before,
.new-arrival-btn .hands:after {
    content: "👇";
    font-size: 40px;
    opacity: 0;
    transition: 0.4s ease-in-out;
    position: absolute;
}

.new-arrival-btn .hands:before {
    transform: rotate(-60deg);
    left: -45px;
    top: -10px;
}

.new-arrival-btn .hands:after {
    transform: rotate(170deg);
    right: 30px;
    top: 50px;
}

.new-arrival-btn:hover .hands:before {
    opacity: 1;
    left: -35px;
}

.new-arrival-btn:hover .hands:after {
    opacity: 1;
    top: 40px;
}

@keyframes up-down {
    50% {
        margin-top: -20px;
    }
}



/* Gaya hover umum untuk beberapa tombol */
.button-instagram:hover i,
.button-instagram:hover strong,
.button-website:hover i,
.button-website:hover strong,
.button-compro:hover i,
.button-compro:hover strong,
.button-catalog:hover i,
.button-catalog:hover strong,
.button-wa:hover i,
.button-wa:hover strong,
.button-wa:hover small {
    color: #dbdbdb;
    transition: color 0.3s ease;
}

.button-web-kami {
    background-color: #ffffff;
    color: transparent;
    border: none;
    height: 100px;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    overflow: hidden;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Set latar belakang logo */
.button-web-kami:nth-child(1) {
    background-image: url('image/bumata-logo.png');
}

.button-web-kami:nth-child(2) {
    background-image: url('image/jayastainless-logo.png');
}

.button-web-kami:nth-child(3) {
    background-image: url('image/xsago-logo.png');
}

.button-web-kami:nth-child(4) {
    background-image: url('image/jayaoffice-logo.png');
}

.button-web-kami:nth-child(5) {
    background-image: url('image/jayakitchen-logo.png');
}

.button-web-kami:nth-child(6) {
    background-image: url('image/bumakonstruksi-logo.png');
}

.button-web-kami:nth-child(7) {
    background-image: url('image/jayastainlesshospital-logo.png');
}

.button-web-kami a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: transparent;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.button-web-kami i {
    font-size: 2em;
    color: #dbdbdb;
    margin-right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.button-web-kami strong {
    font-weight: bold;
    color: #dbdbdb;
    font-size: 1.5em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Overlay hitam bergerak dari kiri ke kanan saat hover */
.button-web-kami::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    transition: left 0.3s ease-in-out;
    z-index: 1;
}

.button-web-kami:hover::before {
    left: 0;
}

.button-web-kami:hover {
    color: #fff;
}

.button-web-kami:hover a {
    color: #fff;
}

.button-web-kami:hover i,
.button-web-kami:hover strong {
    opacity: 1;
}

.button-contact-sales {
    background-color: #f9f9f9;
    color: #333;
    border: none;
    border-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-contact-sales:hover {
    background-color: #c91f1f;
}

.button-contact-sales a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.button-contact-sales a>div:first-child {
    display: flex;
    align-items: center;
}

.button-contact-sales img {
    background-color: #c91f1f;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button-contact-sales:hover img {
    transform: scale(1.2);
    background-color: #f4f4f4;
}

.button-contact-sales:hover strong {
    color: #dbdbdb;
    transition: color 0.3s ease;
}

.button-contact-sales a>div:last-child {
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.button-contact-sales a>div:last-child span {
    margin-right: 5px;
}

.button-contact-sales:hover a>div:last-child {
    color: #dbdbdb;
}

.button-contact-sales a>div:last-child i {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 2em;
    color: #25d366;
}

.button-contact-operator {
    background-color: #ffeb3b;
    color: #333;
    border: 2px solid #fdd835;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-contact-operator:hover {
    background-color: #f0c808;
    transform: scale(1.05);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.button-contact-operator i {
    margin-right: 15px;
    font-size: 2em;
    color: #c91f1f;
}

.button-contact-operator strong {
    font-size: 1.6em;
    font-weight: bold;
}

.catalog-download {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;

    align-items: center;
}

.catalog-item {
    position: relative;
    aspect-ratio: 1 / 1.41;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.catalog-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* new product */
.new-product {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;

    align-items: center;
}

.new-product-item {
    position: relative;
    aspect-ratio: 1 / 1.41;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.new-product-item:hover {
    transform: translateY(-5px);
}

.new-product-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style untuk daftar produk */
.new-product {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.new-product-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.new-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.new-product-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* .title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
} */

/* Style untuk sub page */
.sub-page {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sub-page.active {
    display: block;
}

.sub-page-header {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;

    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.sub-page-header h2 {
    color: #222222;
    text-align: center;
    font-weight: 800;
    margin: 5%;


}

.sub-page-header h2 span {
    color: #222222;
    text-align: center;
    font-size: 18px;
    font-weight: 500;

}

.sub-page-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sub-page-video {
    /* position: relative; */
    /* padding-bottom: 56.25%; */
    /* 16:9 aspect ratio */
    height: 100%;
    width: 100%;
    /* overflow: hidden; */
    border-radius: 10px;
}

.sub-page-video iframe {
    aspect-ratio: 9/16;
    width: 100%;
}

.sub-page-catalog {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

.sub-page-catalog img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.download-button {
    background: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.download-button:hover {
    background: #555;
}

.back-button {
    background: #ff0000;
    /* Warna merah */
    color: white;
    /* Warna teks putih */
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.back-button i {
    color: white;
    /* Warna ikon putih */
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #333;
    /* Warna abu-abu saat hover */
}

.back-button:hover i {
    color: #ff0000;
    /* Warna ikon merah saat hover */
}

.back-button:hover {
    color: white;
    /* Pastikan teks tetap putih saat hover */
}

/* Transisi untuk daftar produk */
.product-container {
    transition: all 0.3s ease-in-out;
}

.product-container.hidden {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin-bottom: 0;
}

/*  */

.title-overlay {
    position: absolute;
    align-items: center;
    left: 0px;
    right: 0px;
    bottom: 0;
    width: 91%;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.295) 100%);
    color: #222222;
    padding: 20px 10px 10px;
    text-align: center;
    font-size: 1em;
    font-weight: bold;
}

.title-overlay strong {
    text-align: center;
    color: #222222;
}

.button-promo-special {
    background-color: #ffeb3b;
    /* Warna kuning cerah */
    color: #333;
    /* Warna teks gelap */
    border: 2px solid #fdd835;
    /* Border yang lebih tebal */
    border-radius: 15px;
    /* Lebih bulat */
    padding: 20px;
    margin-bottom: 15px;
    /* Sedikit lebih besar margin bawah */
    display: flex;
    align-items: center;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Efek bayangan */
    animation: pulse 0.8s infinite alternate;
    /* Menerapkan animasi */
}

@keyframes pulse {
    0% {
        transform: scale(0.98);
    }

    /* 50% {
        transform: scale(1.05);
    } */
    100% {
        transform: scale(1.08);
    }
}

.button-promo-special:hover {
    background-color: #f0c808;
    /* Sedikit lebih gelap saat hover */
    transform: scale(1.05);
    /* Efek membesar saat hover */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    /* Bayangan lebih kuat saat hover */
}

.button-promo-special i {
    margin-right: 15px;
    font-size: 2em;
    color: #ffc107;
    /* Warna ikon api */
}

.button-promo-special strong {
    font-size: 1.6em;
    /* Ukuran teks lebih besar */
    font-weight: bold;
}

.button-promo-special:hover i,
.button-promo-special:hover strong {
    color: #333;
    /* Mengubah warna menjadi hitam saat hover */
    transition: color 0.3s ease;
    /* Efek transisi warna yang halus */
}

.main-maps {
    display: flex;
    justify-content: center;
    /* Membuat tombol rata tengah horizontal */
    width: 100%;
    /* Pastikan div ini mengambil lebar penuh container */
    /*padding: 20px;  Optional: Padding di sekitar tombol */
    box-sizing: border-box;
    /* Agar padding tidak menambah lebar total */
}

.button-location {
    background-color: #f9f9f9;
    color: #c91f1f;
    border: none;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Ikon di atas teks dan peta */
    align-items: center;
    /* Membuat konten rata tengah horizontal */
    text-align: center;
    /* Membuat teks di dalam tombol rata tengah */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    /* Biarkan tombol mengambil lebar penuh parent */
    max-width: 600px;
    /* Optional: Batasi lebar maksimum tombol */
    box-sizing: border-box;
    /* Agar padding tidak menambah lebar total */
}

.button-location:hover {
    background-color: #c91f1f;
}

.button-location i {
    font-size: 2em;
    color: #c91f1f;
    margin-bottom: 10px;
    /* Beri jarak antara ikon dan link/judul */
}

.button-location a {
    text-decoration: none;
    color: inherit;
    display: flex;
    /* Gunakan flex untuk mengatur posisi strong */
    align-items: center;
    /* Membuat strong rata tengah vertikal */
    justify-content: center;
    /* Membuat strong rata tengah horizontal */
    width: 100%;
}

.button-location a strong {
    font-size: 1.4em;
    font-weight: bold;
    text-align: center;
    /* Pastikan teks di dalam strong juga rata tengah */
}

.button-location:hover a strong {
    color: #f4f4f4;
    transition: color 0.3s ease;
}

.maps {
    width: 100%;
    /* Pastikan div maps mengambil lebar penuh tombol */
    padding: 20px;
    /* Padding di semua sisi peta */
    box-sizing: border-box;
    /* Agar padding tidak menambah lebar/tinggi total */
}

.maps iframe {
    border-radius: 10px;
    border-width: 3px;
    border-color: #c51818;
    width: 100%;
    /* Pastikan iframe mengisi lebar div maps */
    height: 400px;
    /* Tetapkan tinggi iframe */
    display: block;
    /* Mencegah spasi ekstra di bawah iframe */
}

.info-jam {
    text-align: center;
    /* Membuat teks di dalam div menjadi rata tengah */
    margin-top: 2px;
    /* Berikan sedikit jarak dari elemen sebelumnya */
    margin-bottom: 10px;
    /* Berikan sedikit jarak dari elemen berikutnya */
    color: #dbdbdb;
    /* Warna teks info jam */
    font-size: 1em;
    /* Ukuran font info jam */
}

.info-jam strong {
    font-weight: bold;
    /* Membuat teks "JAM KERJA..." menjadi tebal */
}



.maps {
    padding-top: 20px;
}

.button-location iframe {
    border-radius: 10px;
    border-width: 3px;
    border-color: #c51818;
}

footer {
    text-align: center;
    margin-top: 20px;
    color: #dbdbdb;
    font-weight: bold;
}

footer p {
    font-size: 1.1em;
}

/* Responsive untuk mobile */
@media (max-width: 600px) {
    .container {
        width: 85%;
        margin: 10px auto;
        border-radius: 1rem;
        padding: 1rem;
    }

    header {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
        text-align: center;
    }

    .logo {
        margin-bottom: 10px;
    }

    .logo img {
        width: 70px;
        height: 70px;
        margin-right: 10px;
    }

    .logo-text h1 {
        font-size: 1.5em;
    }

    .logo-text p {
        font-size: 0.75em;
    }

    .social-icons {
        margin-top: 10px;
    }

    .social-icons a {
        font-size: 1.5em;
        margin-left: 20px;
    }

    main {
        margin-top: 10px;
    }

    main button,
    .button-location {
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 10px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    main button i,
    .button-location i {
        font-size: 2.5em;
        margin-right: 10px;
    }

    .button strong {
        font-size: 2em;
    }

    .button small {
        font-size: 0.7em;
    }

    .new-arrival-btn {
        font-size: 1.3em;

    }

    .button-contact-sales {
        padding: 10px 15px;
    }

    .button-contact-sales img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .button-contact-sales a>div:last-child {
        font-size: 0.8em;
    }

    .button-contact-sales a>div:last-child i {
        font-size: 2em;
        margin-right: 10px;
    }

    .button-promo-special {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 10px;
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .button-promo-special i {
        font-size: 1.5em;
        margin-right: 10px;
    }

    .button-promo-special strong {
        font-size: 1.3em;
    }

    .button-promo-special span {
        font-size: 0.8em;
        margin-left: 5px;
    }

    .info-jam {
        margin-top: 15px;
        margin-bottom: 15px;
        font-size: 0.8em;
    }

    .button-contact-operator strong {
        font-size: 1.2em;
    }

    .button-location {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .button-location i {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .button-location iframe {
        height: 300px;
    }

    .maps {
        padding-top: 20px;
        /* Pastikan ini ada di dalam media query jika perlu */
    }

    .catalog-download {
        grid-template-columns: 2fr;
        /* Satu kolom di layar kecil */
    }

    .new-product {
        grid-template-columns: 2fr;
        /* Satu kolom di layar kecil */
    }

    .title-overlay {
        width: 95%;
        height: auto;
    }

    footer {
        font-size: 0.9em;
        padding: 10px;
    }

    footer p {
        font-size: 0.9em;
    }
}

/* Responsive untuk layar yang lebih kecil */
@media (max-width: 400px) {
    .logo img {
        width: 40px;
        /* Ukuran logo lebih kecil */
        height: 40px;
        margin-right: 5px;
    }

    .logo-text h1 {
        font-size: 1.1em;
        /* Ukuran heading lebih kecil */
    }

    .logo-text p {
        font-size: 0.55em;
        /* Ukuran paragraf lebih kecil */
    }

    .social-icons a {
        font-size: 1em;
        /* Ukuran ikon sosial lebih kecil */
        margin-left: 5px;
    }

    main button,
    .button-location {
        padding: 10px;
        /* Padding tombol lebih kecil */
    }

    main button i,
    .button-location i {
        font-size: 2em;
        /* Ukuran ikon tombol lebih kecil */
        margin-right: 15px;
    }

    .button strong {
        font-size: 1.6em;
        /* Ukuran teks tebal tombol lebih kecil */
    }
}