:root {
    --bg: #f4efe4;
    --bg-soft: #fbf7ef;
    --surface: #fffdf8;
    --surface-2: #f8f1e3;
    --text: #1f1a14;
    --text-muted: #6c604e;
    --text-soft: #8b7d67;
    --line: rgba(97, 74, 26, 0.12);
    --primary: #b68400;
    --primary-dark: #8b6800;
    --dark: #18130d;
    --white: #ffffff;
    --shadow-sm: 0 8px 20px rgba(82, 62, 17, 0.05);
    --shadow-md: 0 16px 40px rgba(82, 62, 17, 0.08);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --container: 1180px;
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.home-page section {
    position: relative;
    padding: 72px 0;
}

.section-heading {
    margin-bottom: 32px;
}

.section-heading.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
}

.section-heading h2 {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    color: #19150f;
}

.section-heading p {
    margin: 0;
    max-width: 760px;
    color: var(--text-muted);
}

.section-heading.text-center p {
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--dark);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: #000;
    transform: translateY(-1px);
}

.btn-light {
    background: rgba(255,255,255,0.95);
    color: var(--dark);
    border-color: rgba(0,0,0,0.06);
}

.btn-light:hover {
    background: #f7f2e7;
    transform: translateY(-1px);
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 239, 228, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 0;
}

.site-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.site-brand-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
    text-transform: uppercase;
    white-space: nowrap;
}

.site-brand-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 4px;
    line-height: 1;
}

.brand-sub-main {
    font-size: 11px;
    font-weight: 700;
    color: #5f5445;
    white-space: nowrap;
}

.brand-sub-separator {
    font-size: 8px;
    color: var(--primary);
    line-height: 1;
}

.brand-sub-small {
    font-size: 9px;
    font-weight: 700;
    color: #8a7b66;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 600;
    color: #3f3423;
}

.site-nav a:hover {
    color: var(--primary);
}

.nav-login {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--dark);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    background: var(--dark);
    border-radius: 12px;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(0,0,0,0.06);
    background: var(--bg);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 0 20px;
}

.mobile-login {
    width: fit-content;
}

/* HERO */
.hero-section {
    overflow: hidden;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(207,154,5,0.72) 0%, rgba(218,174,47,0.56) 30%, rgba(244,239,228,0.2) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../slide1.png') center center / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28,20,10,0.30) 0%, rgba(28,20,10,0.10) 55%, rgba(28,20,10,0.02) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    padding: 56px 0;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.18);
    color: #fff7e3;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.97;
    letter-spacing: -0.04em;
    color: #fffdf8;
    text-shadow: 0 10px 24px rgba(65, 44, 5, 0.14);
}

.hero-text {
    max-width: 620px;
    margin: 20px 0 26px;
    font-size: 18px;
    color: #fff4de;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255,255,255,0.18);
    color: #fff8ea;
    font-weight: 700;
    font-size: 14px;
}

.hero-card {
    display: flex;
    justify-content: flex-end;
}

.hero-card-inner {
    width: 100%;
    max-width: 390px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.84);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255,255,255,0.35);
}

.hero-card-label,
.mini-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card-inner h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    color: #1f190f;
}

.hero-card-inner p {
    margin: 0 0 16px;
    color: #5f5548;
}

.hero-card-list {
    margin: 0;
    padding-left: 18px;
    color: #403423;
}

.hero-card-list li + li {
    margin-top: 10px;
}

/* GRID CARDS */
.why-crb-grid,
.facilities-grid,
.steps-grid,
.partner-grid {
    display: grid;
    gap: 20px;
}

.why-crb-grid {
    grid-template-columns: repeat(4, 1fr);
}

.facilities-grid {
    grid-template-columns: repeat(4, 1fr);
}

.steps-grid {
    grid-template-columns: repeat(4, 1fr);
}

.partner-grid {
    grid-template-columns: repeat(4, 1fr);
}

.why-card,
.step-card,
.commission-card,
.partner-item,
.facility-item,
.faq-item,
.commission-side-box,
.cta-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.why-card,
.step-card,
.commission-card,
.partner-item,
.facility-item {
    padding: 24px;
}

.why-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #f6ecd2;
    font-size: 24px;
}

.why-card h3,
.step-card h3,
.commission-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #18140f;
}

.why-card p,
.step-card p,
.commission-card p,
.partner-section p,
.commission-note,
.partner-item {
    margin: 0;
    color: #675b49;
}

.facility-item {
    text-align: center;
    font-weight: 700;
    color: #3e321f;
}

.step-number {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #d5a10a 0%, #b88500 100%);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 20px;
    font-weight: 800;
}

/* KOMISI */
.commission-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: start;
}

.commission-points {
    display: grid;
    gap: 16px;
    margin: 26px 0;
}

.commission-action {
    margin-bottom: 14px;
}

.commission-note {
    font-size: 14px;
}

.commission-side-box {
    padding: 24px;
}

.commission-side-box ul {
    margin: 0;
    padding-left: 18px;
    color: #4c3d29;
}

.commission-side-box li + li {
    margin-top: 10px;
}

/* PARTNER */
.partner-item {
    text-align: center;
    font-weight: 800;
    color: #80631e;
}

/* FAQ */
.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    position: relative;
    width: 100%;
    padding: 20px 52px 20px 22px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-weight: 700;
    color: var(--text);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: #655947;
}

.faq-item.active .faq-answer {
    display: block;
}

/* CTA */
.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 34px;
    background: linear-gradient(135deg, #d0a121 0%, #b58300 100%);
    color: var(--white);
}

.cta-box h2 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
}

.cta-box p {
    margin: 0;
    color: rgba(255,255,255,0.88);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* FOOTER */
/* FOOTER */
.site-footer {
    background: #f6f1e8; /* cream global untuk area bawah */
    color: #241c12;
    margin-top: 40px;
}

/* Bagian atas footer tetap hitam */
.site-footer-top {
    padding: 48px 0 30px;
    background: #1a140d;
    color: #f5ead1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr;
    gap: 32px;
}

.footer-col h3,
.footer-col h4 {
    margin: 0 0 14px;
    color: #fff9ec;
}

.footer-col p,
.footer-links {
    color: rgba(255,255,255,0.78);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

/* Bar cream full width untuk logo */
.footer-bottom {
    padding: 14px 0 18px;
    background: #f6f1e8; /* cream */
    border-top: 1px solid rgba(114, 87, 27, 0.18);
}

.footer-bottom-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.footer-logo img {
    display: block;
    max-height: 32px;
    width: auto;
}

.footer-copy {
    max-width: 1080px;
    margin: 10px auto 0;
    text-align: center;
    font-size: 13px;
    color: #6f624f;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .hero-inner,
    .commission-wrap {
        grid-template-columns: 1fr;
    }

    .hero-card {
        justify-content: flex-start;
    }

    .why-crb-grid,
    .facilities-grid,
    .steps-grid,
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .site-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .home-page section {
        padding: 56px 0;
    }

    .site-header-inner {
        min-height: 74px;
    }

    .site-logo {
        width: 48px;
        height: 48px;
    }

    .site-brand {
        gap: 10px;
        max-width: calc(100% - 62px);
    }

    .site-brand-title {
        font-size: 11px;
        letter-spacing: 0.05em;
    }

    .brand-sub-main {
        font-size: 9px;
    }

    .brand-sub-small {
        font-size: 8px;
    }

    .brand-sub-separator {
        font-size: 7px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-inner {
        padding: 44px 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .why-crb-grid,
    .facilities-grid,
    .steps-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
.partner-logo-grid {
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
    gap: 20px;
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    padding: 20px;
    background: #fffdf8;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-logo-item {
        min-height: 90px;
        padding: 14px;
    }

    .partner-logo-img {
        max-height: 40px;
    }
}


.package-page .page-hero {
    padding: 72px 0 32px;
    background: linear-gradient(180deg, #f5edd8 0%, #f4efe4 100%);
}

.page-hero-content {
    max-width: 760px;
}

.page-hero-content h1 {
    margin: 0 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    color: #1c160f;
}

.page-hero-content p {
    margin: 0;
    color: #665a49;
    font-size: 17px;
}

.package-list-section {
    padding-top: 28px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.package-card {
    overflow: hidden;
    border-radius: 28px;
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
}

.package-card.featured {
    transform: translateY(-8px);
    box-shadow: 0 20px 42px rgba(97, 74, 26, 0.12);
}

.package-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(24, 19, 13, 0.86);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-card-body {
    padding: 24px;
}

.package-card-body h3 {
    margin: 0 0 8px;
    font-size: 26px;
    color: #1d170f;
}

.package-meta {
    margin: 0 0 18px;
    color: #756957;
    font-size: 14px;
}

.package-feature-list {
    margin: 0 0 22px;
    padding-left: 18px;
    color: #4e4232;
}

.package-feature-list li + li {
    margin-top: 10px;
}

.package-price-wrap {
    margin-bottom: 18px;
}

.package-price-label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: #8a7c67;
}

.package-price {
    font-size: 30px;
    line-height: 1.1;
    color: #b68400;
}

.package-card .btn {
    width: 100%;
}

.package-info-section {
    padding-top: 20px;
}

.package-info-box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
    padding: 30px;
    border-radius: 28px;
    background: #fff9eb;
    border: 1px solid rgba(182,132,0,0.14);
}

.package-info-box h2 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.12;
    color: #1b150d;
}

.package-info-box p {
    margin: 0;
    color: #6d604d;
}

.package-info-points {
    display: grid;
    gap: 12px;
}

.info-pill {
    padding: 14px 18px;
    border-radius: 999px;
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    color: #4e412d;
    font-weight: 700;
}

@media (max-width: 1100px) {
    .package-grid {
        grid-template-columns: 1fr 1fr;
    }

    .package-info-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .package-page .page-hero {
        padding: 56px 0 22px;
    }

    .page-hero-content h1 {
        font-size: 34px;
    }

    .package-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card-image {
        height: 220px;
    }

    .package-card-body h3 {
        font-size: 22px;
    }

    .package-price {
        font-size: 26px;
    }

    .package-info-box {
        padding: 22px;
    }

    .package-info-box h2 {
        font-size: 28px;
    }
}

.detail-package-page .page-hero {
    padding: 72px 0 28px;
    background: linear-gradient(180deg, #f8f1e2 0%, #f4efe4 100%);
}

.detail-package-section {
    padding-top: 24px;
}

.detail-package-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: start;
}

.detail-package-image-box {
    overflow: hidden;
    border-radius: 28px;
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
    padding: 14px;
}

.detail-package-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

.detail-package-content {
    padding: 8px 0;
}

.detail-package-content h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.08;
    color: #1b150d;
}

.detail-package-text {
    margin: 0 0 22px;
    color: #675b49;
    font-size: 16px;
}

.detail-package-badge-wrap {
    margin-bottom: 14px;
}

.detail-package-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.detail-meta-item {
    padding: 16px 18px;
    border-radius: 20px;
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
}

.meta-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9b8b72;
}

.detail-meta-item strong {
    color: #2c2419;
    font-size: 16px;
}

.detail-price-box {
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 24px;
    background: #fff7e4;
    border: 1px solid rgba(182,132,0,0.16);
}

.detail-price-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #8f7e64;
}

.detail-price {
    display: block;
    font-size: 36px;
    line-height: 1.1;
    color: #b68400;
}

.detail-dp {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #5f5445;
    font-weight: 700;
}

.detail-package-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.package-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.package-feature-item {
    padding: 18px 20px;
    border-radius: 20px;
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    box-shadow: 0 10px 24px rgba(97, 74, 26, 0.05);
    font-weight: 700;
    color: #413524;
}

.package-flow-section {
    padding-top: 20px;
}

@media (max-width: 1100px) {
    .detail-package-layout {
        grid-template-columns: 1fr;
    }

    .package-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .detail-package-page .page-hero {
        padding: 56px 0 24px;
    }

    .detail-package-content h2 {
        font-size: 32px;
    }

    .detail-package-meta {
        grid-template-columns: 1fr;
    }

    .detail-package-actions {
        flex-direction: column;
    }

    .detail-package-actions .btn {
        width: 100%;
    }

    .package-feature-grid {
        grid-template-columns: 1fr;
    }

    .detail-price {
        font-size: 30px;
    }
}
.package-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #f8f1e3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.package-hero.compact {
    padding: 56px 0 24px;
}

.package-filter-section {
    padding: 0 0 18px;
}

.package-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tab {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(114, 87, 27, 0.12);
    border-radius: 999px;
    background: #fffdf8;
    color: #5f5445;
    font-weight: 700;
    transition: 0.25s ease;
}

.filter-tab.active,
.filter-tab:hover {
    background: #18130d;
    color: #fff;
}

.package-list-section.revised {
    padding-top: 12px;
}

.revised-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.revised-card {
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(114, 87, 27, 0.10);
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
    padding: 0;
}

.revised-image {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #e6d3aa;
    padding: 0;
    line-height: 0;
}

.revised-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.revised-body {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 24px 22px 22px;
}

.package-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-brand-line {
    margin-bottom: 10px;
    font-size: 13px;
    color: #8b7d67;
    font-weight: 600;
}

.revised-body h3 {
    margin: 0 0 14px;
    font-size: 28px;
    color: #1a140d;
    letter-spacing: 0.04em;
}

.package-spec-list {
    margin: 0 0 20px;
    padding-left: 18px;
    color: #4f4333;
}

.package-spec-list li + li {
    margin-top: 8px;
}

.package-badge.gold {
    background: linear-gradient(135deg, #d4a11b 0%, #b68400 100%);
}

.package-badge.silver {
    background: linear-gradient(135deg, #9da4ad 0%, #7d8792 100%);
}

.package-badge.bronze {
    background: linear-gradient(135deg, #b87a45 0%, #8f5930 100%);
}

@media (max-width: 1100px) {
    .revised-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .revised-grid {
        grid-template-columns: 1fr;
    }

    .revised-image {
        height: 300px;
    }

    .revised-body h3 {
        font-size: 24px;
    }
}

.booking-page .page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: start;
}

.booking-form-box,
.booking-summary-box {
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
    overflow: hidden;
}

.booking-form {
    padding: 28px;
    display: grid;
    gap: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #3b3122;
}

.form-group select {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(114, 87, 27, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #2b2419;
}

.booking-note-box {
    padding: 18px;
    border-radius: 18px;
    background: #fbf6ea;
    border: 1px solid rgba(182,132,0,0.10);
}

.booking-note-box p {
    margin: 0;
    color: #665a49;
}

.booking-summary-image {
    background: #f5ead1;
    padding: 12px;
}

.booking-summary-image img {
    width: 100%;
    height: auto;
    display: block;
}

.booking-summary-content {
    padding: 24px;
}

.booking-summary-content h2 {
    margin: 0 0 8px;
    font-size: 30px;
    color: #1a140d;
}

.booking-summary-price {
    margin: 0 0 18px;
    font-size: 28px;
    font-weight: 800;
    color: #b68400;
}

.booking-summary-list {
    margin: 0 0 22px;
    padding-left: 18px;
    color: #4f4333;
}

.booking-summary-list li + li {
    margin-top: 8px;
}

.booking-summary-dp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff7e4;
    border: 1px solid rgba(182,132,0,0.16);
}

.booking-summary-dp span {
    color: #776a57;
    font-weight: 600;
}

.booking-summary-dp strong {
    font-size: 22px;
    color: #8b6800;
}

@media (max-width: 991px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
}
.register-page .page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.register-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: start;
}

.register-form-box,
.register-summary-box {
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
}

.register-form {
    padding: 28px;
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #3b3122;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(114, 87, 27, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #2b2419;
    padding: 14px 16px;
}

.register-summary-box {
    padding: 24px;
}

.register-summary-box h2 {
    margin: 0 0 18px;
    font-size: 28px;
    color: #1a140d;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(114, 87, 27, 0.08);
}

.summary-item span {
    color: #796d5b;
}

.summary-item strong {
    color: #2a2318;
    text-align: right;
}

.register-note-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
    background: #fbf6ea;
    border: 1px solid rgba(182,132,0,0.10);
}

.register-note-box p {
    margin: 0;
    color: #665a49;
}

@media (max-width: 991px) {
    .register-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.checkout-page .page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
}

.checkout-main-box,
.checkout-side-box {
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
}

.checkout-main-box {
    padding: 28px;
    display: grid;
    gap: 28px;
}

.checkout-group h2,
.checkout-side-box h2 {
    margin: 0 0 18px;
    font-size: 28px;
    color: #1a140d;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.summary-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(114, 87, 27, 0.10);
}

.summary-card span,
.checkout-address-box span,
.cost-row span {
    display: block;
    margin-bottom: 6px;
    color: #7b6f5d;
    font-size: 13px;
}

.summary-card strong,
.cost-row strong {
    color: #2a2318;
    font-size: 16px;
}

.checkout-address-box {
    margin-top: 18px;
    padding: 18px;
    border-radius: 18px;
    background: #fbf6ea;
    border: 1px solid rgba(182,132,0,0.10);
}

.checkout-address-box p {
    margin: 0;
    color: #665a49;
}

.checkout-side-box {
    padding: 24px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(114, 87, 27, 0.08);
}

.cost-row.total strong {
    color: #b68400;
    font-size: 22px;
}

.checkout-action-form {
    margin-top: 22px;
}

.checkout-action-form .btn {
    width: 100%;
}

@media (max-width: 991px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

.payment-page .page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.payment-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.payment-main-box,
.payment-side-box,
.bank-card,
.upload-proof-box {
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
}

.payment-main-box {
    display: grid;
    gap: 22px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.payment-status-box,
.bank-card,
.upload-proof-box,
.payment-side-box {
    padding: 24px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff3cf;
    color: #8b6800;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.payment-status-box h2,
.upload-proof-box h3,
.payment-side-box h2,
.bank-card-header h3 {
    margin: 0 0 10px;
    color: #1a140d;
}

.payment-status-box p,
.bank-row span {
    color: #6d604d;
}

.bank-card-body {
    display: grid;
    gap: 14px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(114, 87, 27, 0.08);
}

.bank-row strong {
    color: #2a2318;
}

.bank-row.total-transfer strong {
    color: #b68400;
    font-size: 24px;
}

.payment-form {
    display: grid;
    gap: 18px;
}

.payment-form input[type="text"],
.payment-form input[type="file"] {
    width: 100%;
    border: 1px solid rgba(114, 87, 27, 0.12);
    border-radius: 14px;
    background: #fff;
    color: #2b2419;
    padding: 14px 16px;
}

.payment-side-box .summary-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(114, 87, 27, 0.08);
}

.payment-side-box .summary-item span {
    color: #796d5b;
}

.payment-side-box .summary-item strong {
    color: #2a2318;
    text-align: right;
}

.payment-side-box .summary-item.highlight strong {
    color: #b68400;
    font-size: 22px;
}

@media (max-width: 991px) {
    .payment-layout {
        grid-template-columns: 1fr;
    }
}

.success-page .page-hero {
    padding: 72px 0;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.success-box {
    max-width: 820px;
    margin: 0 auto;
    padding: 36px 32px;
    border-radius: 32px;
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    box-shadow: 0 18px 40px rgba(97, 74, 26, 0.08);
    text-align: center;
}

.success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d4a11b 0%, #b68400 100%);
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.success-box h1 {
    margin: 0 0 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    color: #1a140d;
}

.success-box > p {
    margin: 0 auto 28px;
    max-width: 620px;
    color: #6a5d4b;
}

.success-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.success-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(114, 87, 27, 0.10);
}

.success-item span {
    display: block;
    margin-bottom: 6px;
    color: #7b6f5d;
    font-size: 13px;
}

.success-item strong {
    color: #2a2318;
    font-size: 16px;
}

.success-note {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 18px;
    background: #fbf6ea;
    border: 1px solid rgba(182,132,0,0.10);
}

.success-note p {
    margin: 0;
    color: #665a49;
}

.success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767px) {
    .success-box {
        padding: 28px 20px;
    }

    .success-summary {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}

.member-page .page-hero,
.dashboard-page .page-hero,
.status-page .page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.member-layout,
.dashboard-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    align-items: start;
}

.member-profile-card,
.member-menu-card,
.dashboard-stat-card,
.dashboard-panel,
.status-card {
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
}

.member-profile-card,
.member-menu-card,
.dashboard-panel,
.status-card {
    padding: 24px;
}

.member-avatar {
    width: 84px;
    height: 84px;
    margin-bottom: 16px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #d4a11b 0%, #b68400 100%);
    color: #fff;
    font-weight: 800;
    font-size: 24px;
}

.member-role {
    color: #756957;
    margin: 0 0 18px;
}

.member-status-list,
.member-menu-grid,
.dashboard-top-grid,
.status-grid {
    display: grid;
    gap: 16px;
}

.member-status-item,
.member-menu-item,
.dashboard-stat-card,
.status-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(114, 87, 27, 0.10);
}

.member-menu-grid {
    grid-template-columns: 1fr 1fr;
}

.member-menu-item strong,
.dashboard-panel h2,
.status-card h2 {
    display: block;
    margin-bottom: 6px;
    color: #1f180f;
}

.member-menu-item span,
.member-status-item span,
.status-item span,
.dashboard-stat-card span,
.summary-item span {
    color: #7b6f5d;
    font-size: 13px;
}

.dashboard-top-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 24px;
}

.dashboard-stat-card strong,
.member-status-item strong,
.status-item strong {
    color: #2a2318;
    font-size: 16px;
}

.progress-list {
    margin: 0;
    padding-left: 18px;
    color: #4f4333;
}

.progress-list li + li {
    margin-top: 10px;
}

.progress-list .done {
    color: #437a22;
    font-weight: 700;
}

.status-badge.success {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #e8f4df;
    color: #437a22;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.status-grid {
    grid-template-columns: 1fr 1fr;
    margin: 20px 0;
}

.status-note-box {
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 18px;
    background: #fbf6ea;
    border: 1px solid rgba(182,132,0,0.10);
    color: #665a49;
}

@media (max-width: 991px) {
    .member-layout,
    .dashboard-main-grid,
    .dashboard-top-grid,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .member-menu-grid {
        grid-template-columns: 1fr;
    }
}

.auth-page .page-hero {
    padding: 64px 0 24px;
    background: linear-gradient(180deg, #f7efdc 0%, #f4efe4 100%);
}

.auth-box {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.auth-card,
.auth-side-card {
    background: #fffdf8;
    border: 1px solid rgba(114, 87, 27, 0.10);
    border-radius: 28px;
    box-shadow: 0 16px 36px rgba(97, 74, 26, 0.08);
    padding: 28px;
}

.auth-card h2,
.auth-side-card h2 {
    margin: 0 0 18px;
    color: #1a140d;
    font-size: 30px;
}

.auth-form {
    display: grid;
    gap: 18px;
}

.auth-extra {
    display: flex;
    justify-content: flex-end;
    margin-top: -4px;
}

.auth-extra a,
.auth-footer-text a {
    color: #b68400;
    font-weight: 700;
}

.auth-alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fff2ef;
    border: 1px solid rgba(161, 53, 68, 0.12);
    color: #8f3440;
    font-weight: 600;
}

.auth-footer-text {
    margin-top: 18px;
    color: #6d604d;
}

.auth-feature-list {
    margin: 0;
    padding-left: 18px;
    color: #4f4333;
}

.auth-feature-list li + li {
    margin-top: 10px;
}

@media (max-width: 991px) {
    .auth-box {
        grid-template-columns: 1fr;
    }
}
