* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1rem;
}

.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    padding: 0.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 35px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: #0b0c2a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
}

.main-nav a:hover,
.main-nav a:focus {
    color: #f36f21;
}

/* .main-nav li:first-child a {
    color: #f36f21;
} */

.hero {
    background-color: #fff;
    padding: 4rem 1rem;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.hero .text {
    flex: 1 1 55%;
}

.hero .text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f7941e;
    margin-bottom: 1rem;
}

.hero .text h3 {
    font-weight: 400;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero .btn {
    background-color: #f7941e;
    color: #fff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.hero .btn:hover {
    background-color: #e68400;
}

.hero .image {
    flex: 1 1 40%;
    text-align: center;
}

.hero .image img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    animation: bounce 2.5s ease-in-out infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero .text,
    .hero .image {
        flex: 1 1 100%;
    }

    .hero .text h1 {
        font-size: 2rem;
    }

    .hero .text h3 {
        font-size: 1rem;
    }
}

.section-about {
    padding: 3rem 1rem;
    background: #fff;
}

.section-about .container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.section-about img {
    max-width: 100%;
    width: 400px;
    border-radius: 999px 999px 999px 999px / 80% 80% 60% 60%;
    object-fit: cover;
}

.section-about .text {
    flex: 1 1 50%;
}

.section-about .text h4 {
    font-weight: 400;
    font-size: 1.1rem;
    color: #444;
}

.section-services {
    padding: 4rem 1rem;
    background-color: #fff;
}

.section-services h2 {
    text-align: center;
    color: #f7941e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.service-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-box {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    flex: 1 1 calc(25% - 1rem);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-box h3 {
    margin-bottom: 1rem;
    color: #021048;
    font-size: 1.5rem;
}

.service-box p {
    color: #333;
    font-size: 1rem;
}
.service-box a {
    color: #000000; /* Hitam */
    text-decoration: none; /* Hilangkan underline */
}

.service-box a:hover {
    color: #f36f21; /* Warna saat hover (opsional) */
    text-decoration: none;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

/* Pricing Section */
.section-pricing {
    padding: 5rem 1rem;
    background: #fff;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.section-pricing .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f7941e;
    margin-bottom: 3rem;
}

.pricing-cards {
    display: flex;
    flex-wrap: nowrap; /* tidak membungkus ke baris berikutnya */
    justify-content: center;
    gap: 2rem;
    overflow-x: auto; /* opsional, jika ukuran layar tidak cukup */
}

.pricing-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    width: 270px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #555;
    margin: 1rem 0;
}

.price span {
    font-size: 0.9rem;
    color: #aaa;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
    text-align: left;
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
}

.pricing-card ul li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.btn-green {
    background-color: #00c851;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn-green:hover {
    background-color: #009e3e;
}

.tax-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 2rem;
}

/* ======= Dedicated: full-width card, sama seperti Partnership ======= */
.pricing-card-landscape {
    width: 100%;
    max-width: 1000px; /* sesuaikan lebar maksimal container Anda */
    margin: 3rem auto; /* jarak vertikal sama seperti partnership */
    padding: 2rem 1.5rem; /* jarak di dalam kartu */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card-landscape:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Title */
.pricing-card-landscape .title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #f7941e;
    margin-bottom: 1rem;
}

/* Price styling */
.pricing-card-landscape .price {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}
.pricing-card-landscape .price strong {
    font-size: 2rem;
    font-weight: 600;
    color: #021048;
}

/* Features list */
.pricing-card-landscape ul.features {
    list-style: none;
    padding: 0;
    margin: 1rem auto 1.5rem;
    max-width: 600px;
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}
.pricing-card-landscape ul.features li {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CTA button */
.pricing-card-landscape .cta-button {
    display: inline-block;
    background-color: #00c851;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.pricing-card-landscape .cta-button:hover {
    background-color: #0a2b17;
    transform: translateY(-2px);
}

/* ===========================
   Section “Ingin Konsultasi…”
   =========================== */
.consult-card {
    background-color: #63d471;
    border-radius: 60px;
    margin: 3rem 0;
    padding: 2rem 1.5rem;
    overflow: hidden;
}

.consult-card .consult-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.consult-card .consult-text {
    flex: 1 1 300px;
    color: #fff;
}

.consult-card .consult-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.consult-card .consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #f7941e;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.consult-card .consult-btn:hover {
    background-color: #db8600;
    transform: translateY(-2px);
}

.consult-card .consult-img {
    flex: 0 0 150px;
    max-width: 150px;
    animation: floatUpDown 3s ease-in-out infinite;
}

.consult-card .consult-img img {
    width: 100%;
    height: auto;
    display: block;
    animation: bounce 2s infinite ease-in-out;
}

/* Animations */
@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .consult-card {
        padding: 1.5rem 1rem;
    }
    .consult-card .consult-flex {
        flex-direction: column;
        text-align: center;
    }
    .consult-card .consult-img {
        margin-top: 1rem;
    }
}

/* CSS */
/* Font Awesome for icons (pastikan sudah include) */
/* <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> */

.site-footer {
    background: #f5f8fd;
    color: #333;
    font-family: "Poppins", sans-serif;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 1rem;
}
.footer-col {
    flex: 1 1 250px;
    min-width: 200px;
}
/* Column 1 */
.contact-col .footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}
.contact-list {
    list-style: none;
    padding: 0;
    line-height: 1.6;
}
.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.contact-list i {
    color: #377dff;
}

/* Column 2 */
.nav-col h4,
.cta-col h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer-nav {
    list-style: none;
    padding: 0;
}
.footer-nav li {
    margin-bottom: 0.75rem;
}
.footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
}
.footer-nav a.active,
.footer-nav a:hover {
    color: #ff1e41;
}

/* Column 3 */
.cta-col p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f7941e;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-whatsapp:hover {
    background: #e68400;
}

/* Footer bottom */
.footer-bottom {
    background: #1b1445;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
}
@media (max-width: 768px) {
    /* Pastikan container header space-between */
    .nav-wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* Logo tetap di kiri */
    .logo {
        order: 1;
    }

    /* Tombol burger di kanan */
    .nav-toggle {
        order: 2;
        display: flex; /* muncul di mobile */
        margin-left: 0; /* reset bila ada margin auto */
    }

    /* Sembunyikan nav list sementara */
    .main-nav {
        order: 3;
    }
    .main-nav ul {
        display: none; /* hide link list */
    }
    .main-nav.open ul {
        display: flex; /* munculkan saat toggle aktif */
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
    }
}
.main-nav a {
    color: #0b0c2a; /* warna default */
    font-weight: 700;
    transition: color 0.3s;
}

.main-nav a.active,
.main-nav a:hover {
    color: #f7941e; /* oranye untuk hover & aktif */
}
.main-nav a.active {
    color: #f7941e;
}

/* Sembunyikan menu default di mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .main-nav ul {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    /* Ketika tombol burger diklik */
    .main-nav.open ul {
        display: flex;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    .footer-col {
        min-width: auto;
    }
    .contact-list li,
    .footer-nav li {
        justify-content: center;
    }
}

/* Bouncing effect */
@keyframes floatUpDown {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .consult-flex {
        flex-direction: column;
        text-align: center;
    }
    .consult-img {
        margin-top: 30px;
    }
}

/* Bounce animation */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Bounce animation */
@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 2.5s infinite;
}

@media (max-width: 768px) {
    .hero-content,
    .section-about .container,
    .service-boxes {
        flex-direction: column;
        text-align: center;
    }

    .nav-wrap {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .section-about img {
        width: 100%;
        border-radius: 2rem;
    }

    .service-box {
        flex: 1 1 100%;
    }
}
.main-nav a {
    color: #0b0c2a; /* hitam default */
    transition: color 0.3s;
}

.main-nav a.active {
    color: #f7941e; /* oranye hanya untuk yang aktif */
}
/* Footer navigation */
.footer-nav {
    list-style: none;
    padding: 0;
}
.footer-nav li {
    margin-bottom: 0.5rem;
}
.footer-nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}
.footer-nav a:hover,
.footer-nav a.active {
    color: #f7941e;
}

/* Kontainer & kolom */
.site-footer .footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 1rem;
    background: #f5f8fd;
}
.site-footer .footer-col {
    flex: 1 1 200px;
}

/* Footer bottom bar */
.footer-bottom {
    background: #1b1445;
    color: #fff;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}
/* Styles for About Us page */
.about-container {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}
.about-title {
    color: #f7941e;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.about-content {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Section Pengalaman */
.about-experience {
    padding: 6rem 1rem;
    background: #fff;
}
.exp-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.exp-left {
    position: relative;
    flex: 1 1 320px;
}
.exp-image {
    width: 100%;
    border-radius: 1rem;
    object-fit: cover;
}
.exp-card {
    position: absolute;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.customers {
    top: 5%;
    left: 3%;
}
.projects {
    bottom: 2%;
    right: 5%;
}
.exp-number1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6a1b9a; /* ungu */
}
.exp-number2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f7941e; /* ungu */
}
.exp-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #555;
}

.exp-right {
    flex: 1 1 400px;
}
.exp-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f7941e;
    margin-bottom: 2rem;
}
.exp-bar {
    margin-bottom: 1.5rem;
}
.exp-bar span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.bar-bg {
    background: #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 12px;
}
.bar-fill {
    background: #6a1b9a; /* ungu */
    height: 100%;
    line-height: 12px;
    color: #fff;
    font-size: 0.75rem;
    text-align: right;
    padding-right: 0.5rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .exp-content {
        flex-direction: column;
    }
    .exp-card {
        position: relative;
        margin: 1rem auto;
    }
}
.payment-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}
.payment-title {
    font-size: 2rem;
    color: #f7941e;
    margin-bottom: 1rem;
}
#check-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
#check-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn-check {
    background: #00c851;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
}
.result-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.result-card.hidden {
    display: none;
}
.result-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.result-card li {
    margin-bottom: 0.5rem;
}
.btn-green {
    background-color: #f7941e;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
}
.hidden {
    display: none;
}

.payment-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1rem;
}
.btn-check {
    background: #00c851;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
}

/* Result card */
.result-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.result-card ul {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}
.hidden {
    display: none;
}

.pricing-card {
    position: relative;
    cursor: pointer;
}

.checker {
    margin-top: 1rem;
    padding: 1rem;
    border-top: 1px solid #eee;
}

.check-form {
    display: flex;
    gap: 0.5rem;
}

.check-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.check-form .btn-check {
    background: #00c851;
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
}

.result-card {
    margin-top: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
}

.btn-pay {
    margin-top: 0.5rem;
}
.loader {
    margin: 1rem 0;
    font-style: italic;
    color: #555;
}
.hidden {
    display: none;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal.hidden {
    display: none;
}
.modal-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.modal-content {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.payment-methods {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.payment-methods li {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.payment-methods li.selected {
    background: #f0f0f0;
    border-color: #00c851;
}

.tc-container {
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.8;
    color: #333;
}
.tc-container h1 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #f7941e;
    font-size: 2.5rem;
}
.tc-container h2 {
    color: #021048;
    margin-top: 2rem;
    font-size: 1.75rem;
    border-bottom: 2px solid #f7941e;
    padding-bottom: 0.5rem;
}
.tc-container p,
.tc-container li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}
.tc-container ol {
    padding-left: 1.5rem;
}
.tc-container ul {
    padding-left: 1.5rem;
    list-style-type: disc;
}
.tc-container li {
    list-style-position: inside;
}
.tc-container a {
    color: #f7941e;
    text-decoration: none;
}
.tc-container a:hover {
    text-decoration: underline;
}
.tc-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #666;
}
/* hallonet.css */

/* =========================
   Hal loNet – Kontak Kami
   ========================= */

/* Container embed Google Maps */
.map-embed {
    position: relative;
    width: 100%;
    padding-bottom: 40%; /* atur tinggi rasio, misal 40% atau 56.25% (16:9) */
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Kontrol keterangan kecil */
.map-embed + .map-hint {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

/* Info kontak */
.contact-info {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.6;
}
.contact-info h2 {
    color: #f7941e;
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.contact-info ul {
    list-style: none;
    padding: 0;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.contact-info i {
    color: #377dff;
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}
/* Form cek */
.checker-form {
    max-width: 700px;
    margin: 2rem auto;
}
.flex-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
#customer_id {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.btn-check {
    background: #00c851;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.loader {
    margin: 1rem 0;
    font-style: italic;
    color: #555;
    display: none;
}

/* Container hasil */
.result-container {
    display: flex;
    justify-content: center; /* center secara horizontal */
    margin: 1.5rem 0;
}
.result-card {
    width: 100%;
    max-width: 500px; /* lebar maksimal */
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: none; /* disembunyikan sampai JS memunculkan */
}
.result-card h2 {
    margin-top: 0;
}

/* Kartu harga */
.section-pricing {
    margin-top: 3rem;
}
.pricing-cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.pricing-card {
    flex: 1 1 calc(25% - 1rem);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.pricing-card:hover {
    transform: translateY(-4px);
}
.tax-note {
    text-align: center;
    margin-top: 1rem;
    color: #888;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal.hidden {
    display: none;
}
.modal-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.modal-content {
    position: relative;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 400px;
    width: 100%;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.payment-methods {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.payment-methods li {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.payment-methods li.selected {
    background: #f0f0f0;
    border-color: #00c851;
}
