/*!********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./resources/css/queen-emas.css ***!
  \********************************************************************************/
/* ==========================================================================
       1. Global Reset & Variables
       ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #f5f5f0;
    --surface: #ffffff;
    --text: #161616;
    --text-muted: #3c3c43;
    --gold: #a6810c;
    --gold-primary: #a3831a;
    --gold-light: #e9c551;
    --gold-border: #b88d00;
    --border-dark: #161616;
    --border-light: #cdd6da;
    --header-bg: #f7f7f7;
    --header-border: #473c23;
    --footer-bg: #333333;
    --max-width: 1440px;

    /* 3D Flip Card Calculator Theme */
    --color-surface: #ffffff;
    --color-gold-accent: #c99800;
    --color-gold-light: #f7eed7;
    --color-gold-hover: #b88d00;
    --color-border: #e2e8f0;
    --color-result-bg: #fffaf4;
    --color-text-muted: #8b7964;
    --radius-card: 18px;
    --radius-input: 12px;
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.07);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Afacad", sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ==========================================================================
       2. Site Header & Navigation (Typography: Afacad 400 Regular)
       ========================================================================== */
.site-header {
    width: 100%;
    min-height: 102px;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
}

.header-container {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.nav-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #161616;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-item:hover {
    color: var(--gold);
}

.logo-wrap {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px;
    flex-shrink: 0;
}

.logo {
    max-width: 107px;
    height: auto;
    object-fit: contain;
}

.logo-fallback {
    width: 107px;
    height: 48px;
    background: linear-gradient(135deg, #a3831a, #a6810c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Afacad", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
}

/* WhatsApp Icon styled in theme gold circle badge (matching VIP lounge mockup) */
.wa-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b88d00 0%, #8f6e07 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(166, 129, 12, 0.35);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
    margin-left: 6px;
    flex-shrink: 0;
}

.wa-wrap:hover {
    transform: translateY(-1px) scale(1.06);
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(166, 129, 12, 0.5);
    color: #ffffff;
}

.wa-wrap i {
    color: #ffffff;
}

/* WhatsApp Sticky Button — same gold gradient as header WhatsApp button */
.whatsapp-sticky {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b88d00 0%, #8f6e07 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(166, 129, 12, 0.4);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.whatsapp-sticky:hover {
    transform: translateY(-1px) scale(1.06);
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(166, 129, 12, 0.5);
    color: #ffffff;
}

.whatsapp-sticky i {
    color: #ffffff;
}

@media (max-width: 640px) {
    .whatsapp-sticky {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* Mobile actions container - strictly hidden on desktop */
.header-actions-mobile {
    display: none;
}

.lang-wrap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Afacad", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #161616;
    padding: 6px 12px;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    background: var(--header-bg);
    display: flex;
    align-items: center;
}

.lang-wrap a:hover {
    color: var(--gold);
}

.lang-wrap .sep {
    margin: 0 4px;
    opacity: 0.5;
}

/* Hamburger Button (Hidden on Desktop) */
.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #161616;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.hamburger-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--gold);
}

/* Mobile Drawer Overlay */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer Aside */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 360px);
    height: 100%;
    background: #ffffff;
    z-index: 210;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #fbfbfa;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #161616;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.drawer-close:hover {
    background: rgba(0, 0, 0, 0.06);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}

.drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 500;
    color: #161616;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition:
        background-color 0.15s,
        color 0.15s;
}

.drawer-link:hover {
    background-color: #f7f7f4;
    color: var(--gold);
}

.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #fdfdfd;
}

.drawer-lang {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #666;
}

.drawer-lang a {
    font-weight: 600;
    color: #161616;
    padding: 4px 8px;
    border-radius: 4px;
}

.drawer-lang a.active {
    background: var(--gold);
    color: #ffffff;
}

/* ==========================================================================
       3. Hero Section Typography & Layout
       ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    background: #1e1913;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85);
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(14, 11, 7, 0.88) 0%,
        rgba(14, 11, 7, 0.72) 48%,
        rgba(14, 11, 7, 0.4) 100%
    );
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    min-height: 610px;
    margin: 0 auto;
    padding: 60px 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-left {
    max-width: 520px;
}

.hero-left h1 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 37px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    margin-top: 24px;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #f1f1ed;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 10px 20px;
    background: #a3831a;
    color: #ffffff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(163, 131, 26, 0.25);
    transition:
        background-color 0.2s,
        transform 0.1s;
}

.btn-primary:hover {
    background: #8b6e14;
    transform: translateY(-1px);
}

.btn-outline {
    padding: 10px 20px;
    border: 1px solid #b88d00;
    background: rgba(255, 255, 255, 0.9);
    color: #a6810c;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition: background-color 0.2s;
}

.btn-outline:hover {
    background: #ffffff;
    border-color: #a6810c;
}

/* Calculator Card */
.calc-card {
    width: 100%;
    max-width: 480px;
    background: var(--surface);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    justify-self: end;
}

.calc-card h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #040404;
    text-align: center;
    margin-bottom: 24px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field label {
    display: block;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #161616;
    margin-bottom: 8px;
}

.field select,
.field input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    font-family: "Afacad", sans-serif;
    background: #fff;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color 0.2s;
}

.field select:focus,
.field input:focus {
    border-color: var(--gold);
}

.calc-result {
    margin-top: 20px;
    background: #f9f9f7;
    border: 1px solid #efeee9;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calc-result .label {
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #161616;
}

.calc-result .value {
    font-family: "Afacad", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #161616;
}

.calc-note {
    margin-top: 16px;
    font-family: "Afacad", sans-serif;
    font-size: 12px;
    line-height: 22px;
    color: #666;
}

/* ==========================================================================
       Trust Badges Bar Typography (Afacad SemiBold 600 14px)
       ========================================================================== */
.trust-bar {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 79px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px;
    white-space: nowrap;
}

.trust-item svg {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
}

.trust-item span {
    font-family: "Afacad", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
    color: #161616;
}

/* ==========================================================================
       4. Section Two (Layanan Kami Typography: 300 / 400 Regular)
       ========================================================================== */
.section-two {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    background: var(--bg);
    border-bottom: 1px solid var(--border-dark);
    min-height: 600px;
}

.left-img-wrap {
    width: 35%;
    flex-shrink: 0;
    position: relative;
}

.left-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.divider-col {
    width: 130px;
    flex-shrink: 0;
    border-left: 1px solid var(--border-dark);
    border-right: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}

.vertical-label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.17em;
    line-height: 45px;
    color: #161616;
    transform: rotate(-90deg);
    white-space: nowrap;
    text-shadow: 0 4px 7.6px rgba(233, 197, 81, 0.25);
}

.services-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-row {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 24px 48px;
    border-bottom: 1px solid var(--border-dark);
    transition: background-color 0.2s;
}

.service-row:last-child {
    border-bottom: none;
}

.service-row:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.service-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-num {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.05em;
    color: #161616;
}

.service-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 45px;
    color: #161616;
}

.service-desc {
    font-family: "Afacad", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 23px;
    color: #161616;
}

.service-desc.small {
    font-size: 14px;
}

.arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 18px;
    transition: transform 0.2s ease;
}

.service-row:hover .arrow {
    transform: translateX(6px);
    color: var(--gold);
}

/* ==========================================================================
       5. Testimonial Section Typography
       ========================================================================== */
.testimonial-section {
    position: relative;
    width: 100%;
    background: #161616;
    color: #fff;
    padding: 80px 24px;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: blur(17.6px);
    transform: scale(1.05);
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.test-header {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15.13px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.posting-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 4px;
    color: #a6810c;
}

.stars i,
.card-stars i {
    font-size: 16px;
    width: 22.7px;
    height: 22.7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #a6810c;
}

.rating-text {
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
}

.btn-review {
    background: #a6810c;
    border-radius: 7.56px;
    padding: 12px 24px;
    color: #ffffff;
    font-family: "Afacad", sans-serif;
    font-size: 15.13px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-review:hover {
    opacity: 0.9;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: rgba(243, 243, 243, 0.85);
    border-radius: 15.13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 0.473px solid #56545b;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-stars {
    display: flex;
    gap: 4px;
}

.card-google i {
    font-size: 18px;
    color: #4285f4;
}

.card-text {
    font-family: "Afacad", sans-serif;
    font-size: 15.13px;
    font-weight: 400;
    line-height: 18.92px;
    color: #1a1a1a;
    flex: 1;
}

.card-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.user-profile {
    width: 37.84px;
    height: 37.84px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.89px solid #fff;
    background: #811ea1;
}

.user-name {
    font-family: "Inter", sans-serif;
    font-size: 15.13px;
    font-weight: 600;
    color: #1a1a1a;
}

/* ==========================================================================
       6. Locations Section Typography
       ========================================================================== */
.location-section {
    max-width: 1120px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 45px;
    color: #161616;
    text-align: center;
    margin-bottom: 48px;
    text-shadow:
        0 4px 7.5px rgba(32, 30, 30, 0.25),
        0 4px 7.6px rgba(233, 197, 81, 0.25);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.branch {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.branch-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.branch-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.branch-name {
    font-family: "Afacad", sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #161616;
}

.branch-desc {
    font-family: "Afacad", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #161616;
    margin-top: 6px;
}

.location-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0eb;
}

.location-row i {
    font-size: 14px;
    color: #a6810c;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-row span {
    font-family: "Afacad", sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 19px;
    color: #161616;
}

/* ==========================================================================
       7. FAQ Section (Accordion Typography: Afacad 400 & 500)
       ========================================================================== */
.faq-section {
    max-width: 1050px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.faq-title {
    font-family: "Afacad", sans-serif;
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 45px;
    color: #161616;
    text-shadow:
        0 4px 7.5px rgba(32, 30, 30, 0.25),
        0 4px 7.6px rgba(233, 197, 81, 0.25);
}

.accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-light);
}

.accordion-block {
    border-bottom: 1px solid var(--border-light);
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.accordion-header h3 {
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    color: #000000;
}

.accordion-icon {
    font-size: 12.6px;
    color: #000000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-body {
    padding: 0 0 20px 0;
    display: none;
}

.accordion-body p {
    font-family: "Afacad", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    color: rgba(60, 60, 67, 0.85);
}

.accordion-block.open .accordion-body {
    display: block;
}

.accordion-block.open .fa-plus {
    display: none;
}

.accordion-block:not(.open) .fa-xmark {
    display: none;
}

/* ==========================================================================
       8. Site Footer (Afacad 400 16px / 22px)
       ========================================================================== */
.site-footer {
    width: 100%;
    background: #333333;
    color: #ffffff;
    padding: 36px 20px;
    text-align: center;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.site-footer a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer a:hover {
    color: var(--gold-light);
}

/* ==========================================================================
       9. Responsive Media Queries
       ========================================================================== */
@media (max-width: 1024px) {
    .site-header {
        padding: 12px 20px;
    }
    .header-container {
        justify-content: space-between;
    }
    /* Hide desktop nav, desktop wa icon, & lang in topbar */
    .nav-group .nav-item,
    .nav-group .wa-wrap,
    .header-container > .lang-wrap {
        display: none !important;
    }
    .hamburger-btn {
        display: inline-flex;
    }
    .logo-wrap {
        margin: 0;
    }
    .header-actions-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 24px;
    }
    .hero-bg-gradient {
        background: linear-gradient(
            180deg,
            rgba(14, 11, 7, 0.88) 0%,
            rgba(14, 11, 7, 0.78) 100%
        );
    }
    .calc-card {
        justify-self: center;
        max-width: 100%;
    }
    .section-two {
        flex-direction: column;
    }
    .left-img-wrap {
        width: 100%;
        height: 350px;
    }
    .divider-col {
        width: 100%;
        height: 70px;
        border: none;
        border-top: 1px solid var(--border-dark);
        border-bottom: 1px solid var(--border-dark);
    }
    .vertical-label {
        transform: none;
    }
    .cards-grid,
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 16px;
    }
    .logo {
        max-width: 95px;
    }
    .hero-inner {
        padding: 36px 16px;
    }
    .cards-grid,
    .branches-grid {
        grid-template-columns: 1fr;
    }
    .service-row {
        padding: 20px 20px;
        gap: 16px;
    }
    .hero-left h1 {
        font-size: 22px;
        line-height: 32px;
    }
    .trust-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 14px 16px;
    }
}

/* 3D Flip Card — keeps original calculator UI style from qween_mass/index.html */
.card-scene {
    width: 100%;
    max-width: 410px;
    perspective: 1400px;
    justify-self: start;
}

@media (min-width: 1200px) {
    .card-scene {
        max-width: 476px;
    }
}

.flip-card {
    position: relative;
    width: 100%;
    min-height: 540px;
    transition: transform 0.75s cubic-bezier(0.34, 1.25, 0.64, 1);
    transform-style: preserve-3d;
}

.flip-card.is-flipped {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--surface);
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-face-back {
    transform: rotateY(180deg);
}

@media (max-width: 640px) {
    .card-face {
        padding: 28px 20px;
    }
    .flip-card {
        min-height: 580px;
    }
}

.flip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.flip-title {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #040404;
    text-align: center;
    flex: 1;
}

.flip-trigger-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.flip-trigger-btn:hover {
    background-color: var(--gold-light);
    color: #72500d;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (max-width: 560px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    display: block;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #161616;
    margin-bottom: 8px;
}

.field select,
.field input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    font-family: "Afacad", sans-serif;
     background: #fff;
     outline: none;
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     transition: border-color 0.2s;
 }
 
 .field select:focus,
 .field input:focus {
     border-color: var(--gold);
 }
 
 .select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 viewBox=%270 0 10 6%27%3E%3Cpath fill=%27none%27 stroke=%27%23334155%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%271.7%27 d=%27m1 1 4 4 4-4%27/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.calc-result {
    margin: 20px 0;
    background: #f9f9f7;
    border: 1px solid #efeee9;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calc-result .label {
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #161616;
}

.calc-result .badge {
    font-family: "Afacad", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #8b7964;
}

.calc-result .value {
    font-family: "Afacad", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #161616;
}

.calc-note {
    font-family: "Afacad", sans-serif;
    font-size: 13px;
    line-height: 22px;
    color: #666;
    margin-bottom: 20px;
}

.bottom-action {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.btn-show-table {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-show-table:hover {
  background-color: var(--color-gold-light);
  color: #7b5914;
}

.search-wrap {
  position: relative;
  margin-bottom: 16px;
}

.search-wrap i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.85rem;
}

.search-input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 40px;
  font-family: 'Afacad', sans-serif;
  font-size: 0.9rem;
  color: #161616;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.search-input:focus {
  border-color: var(--gold);
}

.table-wrap {
  flex: 1;
  overflow-y: auto;
  margin: 16px 0 20px 0;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  max-height: 301px;
}

.table-wrap::-webkit-scrollbar {
    width: 6px;
}

.table-wrap::-webkit-scrollbar-track {
    background: #f8f8f6;
}

.table-wrap::-webkit-scrollbar-thumb {
    background: #d4d4d8;
    border-radius: 999px;
}

.gold-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.gold-table thead {
    position: sticky;
    top: 0;
    background-color: #fbfaf8;
    z-index: 2;
}

.gold-table th {
    padding: 12px 16px;
    font-weight: 600;
    color: #475569;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: 1px solid #e2e8f0;
}

.gold-table td {
    padding: 12px 16px;
    color: #1e293b;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
}

.gold-table tr:last-child td {
    border-bottom: none;
}

.gold-table tr:hover {
    background-color: #faf7f0;
}

.gold-table td small {
    font-size: 0.75rem;
    color: #94a3b8;
}

.gold-table .btn-pilih {
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--gold);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.gold-table .btn-pilih:hover {
    background-color: var(--gold-primary);
    transform: translateY(-1px);
}

.back-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
}

.btn-back {
    background: #f1f5f9;
    border: none;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.table-note {
    font-size: 0.72rem;
    color: #8b7964;
}

/* Kenapa Queen Emas Section */
.why-section {
    width: 100%;
    background-color: var(--bg, #f5f5f0);
    border-bottom: 1px solid var(--border-dark, #161616);
    overflow: hidden;
}

.why-inner {
    max-width: var(--max-width, 1440px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    align-items: stretch;
}

.why-content {
    padding: 72px 56px 72px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #161616;
    margin-bottom: 36px;
    line-height: 1.25;
    text-transform: uppercase;
}

.why-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.why-icon-wrap {
    flex-shrink: 0;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.why-check-svg {
    width: 19px;
    height: 19px;
    display: block;
}

.why-text {
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #161616;
    letter-spacing: 0.01em;
    margin: 0;
}

.why-media {
    position: relative;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    background-color: #e5e5dc;
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

@media (max-width: 1024px) {
    .why-inner {
        grid-template-columns: 1fr;
    }

    .why-content {
        padding: 48px 24px;
    }

    .why-heading {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .why-media {
        height: 380px;
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .why-content {
        padding: 36px 18px;
    }

    .why-heading {
        font-size: 26px;
        margin-bottom: 22px;
    }

    .why-list {
        gap: 18px;
    }

    .why-text {
        font-size: 15px;
        line-height: 1.45;
    }

    .why-media {
        height: 320px;
        min-height: 320px;
    }
}

