:root {
    --green: #007a3d;
    --green-dark: #045c30;
    --gold: #c99a2e;
    --ink: #24272c;
    --muted: #69727d;
    --soft: #f3f3f3;
    --line: #e7e7e7;
    --white: #fff;
    --shadow: 0 14px 35px rgba(36, 39, 44, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0;
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

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

[hidden] {
    display: none !important;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 20px rgba(36, 39, 44, .08);
}

.site-header__inner {
    width: min(1140px, calc(100% - 32px));
    min-height: 86px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 18px;
    align-items: center;
}

.site-logo img {
    width: 112px;
    height: auto;
}

.site-nav > ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--green);
    transition: transform .2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    left: 50%;
    top: calc(100% + 12px);
    min-width: 210px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    transform: translateX(-50%) translateY(8px);
    opacity: 0;
    visibility: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu a {
    display: block;
    padding: 9px 18px;
    color: var(--ink);
    font-size: 13px;
}

.submenu a:hover {
    color: var(--green);
    background: #f7faf8;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    min-height: 42px;
    padding: 12px 28px;
    border: 0;
    border-radius: 999px;
    color: var(--white);
    background: var(--green);
    font-weight: 500;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.header-cta:hover,
.btn:hover {
    transform: translateY(-1px);
    background: var(--green-dark);
    box-shadow: 0 10px 24px rgba(0, 122, 61, .18);
}

.btn-secondary {
    color: var(--green);
    background: var(--white);
    border: 1px solid rgba(0, 122, 61, .25);
}

.btn-secondary:hover {
    color: var(--white);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 3px;
    margin: 5px 0;
    border-radius: 3px;
    background: var(--ink);
}

.hero-carousel {
    position: relative;
    width: min(1140px, calc(100% - 32px));
    margin: 30px auto 10px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.hero-slide {
    display: none;
    margin: 0;
}

.hero-slide.is-active {
    display: block;
}

.hero-slide img {
    width: 100%;
    aspect-ratio: 1920 / 720;
    object-fit: cover;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 9px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
}

.carousel-dots button.is-active {
    background: var(--green);
}

.section {
    padding: 50px 0;
}

.section--soft {
    background: var(--soft);
}

.section-title {
    margin: 0 0 28px;
    color: var(--ink);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.25;
    text-align: center;
    font-weight: 600;
}

.section-title--green {
    color: var(--green);
}

.section-title--left {
    text-align: left;
}

.section-subtitle {
    max-width: 760px;
    margin: -16px auto 28px;
    color: var(--muted);
    text-align: center;
}

.product-grid {
    display: grid;
    gap: 22px;
}

.product-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
    min-width: 0;
    overflow: hidden;
    padding: 16px;
    border: 1px solid #d7d7d7;
    border-radius: 18px;
    background: #f7f7f7;
    box-shadow: 0 14px 32px rgba(36, 39, 44, .08);
}

.product-card__image {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #e8ecea;
}

.product-card__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .25s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.04);
}

.product-card__body {
    padding: 20px 8px 2px;
}

.product-card h3 {
    min-height: 60px;
    margin: 0 auto 18px;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    text-align: center;
}

.product-card h3 a:hover {
    color: var(--green);
}

.product-card__meta {
    display: grid;
    gap: 9px;
}

.product-card__row {
    display: grid;
    grid-template-columns: minmax(118px, 1fr) minmax(0, 1.05fr);
    gap: 12px;
    align-items: center;
}

.product-card__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.product-card__label svg {
    display: block;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    flex: 0 0 18px;
    color: var(--ink);
    fill: currentColor;
}

.product-card__meta strong {
    min-width: 0;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    overflow-wrap: anywhere;
}

.rating-stars {
    display: inline-flex;
    justify-content: flex-end;
    gap: 1px;
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0;
}

.rating-stars .is-filled {
    color: #ffb321;
}

.product-card__price {
    margin: 16px 0 0;
    color: var(--green);
    font-size: 19px;
    font-weight: 800;
    text-align: center;
}

.center-actions {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.program-tile {
    display: block;
    text-align: center;
}

.program-tile img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.program-tile h3 {
    margin: 12px 0 0;
    color: var(--green);
    font-size: 18px;
    font-weight: 600;
}

.why-section {
    background: #fafafa;
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.4fr;
    gap: 34px;
    align-items: start;
}

.why-grid h3 {
    margin: 0 0 22px;
    font-size: 28px;
    line-height: 1.3;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.benefit-grid article,
.mission-grid article,
.contact-panel,
.contact-form,
.empty-state {
    padding: 24px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .07);
}

.benefit-grid h4,
.mission-grid h3 {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 18px;
}

.benefit-grid p,
.mission-grid p {
    margin: 0;
    color: var(--muted);
}

.people-grid,
.testimonial-grid,
.article-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.people-grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.person-card,
.testimonial-card,
.article-card {
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .08);
}

.person-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.person-card h2,
.person-card h3 {
    margin: 16px 18px 8px;
    color: var(--green);
    font-size: 18px;
}

.person-card p {
    margin: 0 18px 20px;
    color: var(--muted);
    font-size: 14px;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    padding: 24px;
}

.testimonial-card p {
    margin: 0 0 20px;
    color: var(--muted);
}

.testimonial-card div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 0 12px;
    align-items: center;
}

.testimonial-card img {
    grid-row: span 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card strong {
    font-size: 14px;
}

.testimonial-card span {
    color: var(--muted);
    font-size: 12px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-grid--large {
    margin-top: 34px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #e8ecea;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .25s ease;
}

.gallery-item span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--white);
    background: rgba(36, 39, 44, .72);
    font-size: 13px;
    font-weight: 500;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.site-footer {
    color: var(--white);
    background: #1f2124;
}

.footer-inner {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 34px;
    display: grid;
    grid-template-columns: 1.35fr .7fr 1fr;
    gap: 34px;
}

.footer-brand img {
    width: 96px;
    margin-bottom: 18px;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: rgba(255, 255, 255, .82);
}

.footer-links,
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.contact-list li {
    margin-bottom: 8px;
}

.footer-bottom {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    font-size: 13px;
}

.social-links--dark a {
    color: var(--green);
    background: #eef8f2;
}

.page-hero {
    padding: 64px 0;
    color: var(--white);
    background: linear-gradient(rgba(31, 33, 36, .58), rgba(31, 33, 36, .58)), url("https://adhiyatravel.co.id/wp-content/uploads/2024/11/Slide-2-scaled.webp") center/cover;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
}

.page-hero p {
    max-width: 680px;
    margin: 10px 0 0;
    font-size: 18px;
}

.content-narrow {
    max-width: 900px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--green);
    font-weight: 600;
}

.content-narrow h2 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.35;
}

.content-narrow p {
    color: var(--muted);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 30px 0;
}

.mission-grid ol {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.product-filter {
    display: grid;
    grid-template-columns: 1fr 280px auto;
    gap: 16px;
    align-items: end;
    margin-bottom: 22px;
    padding: 18px;
    border-radius: 8px;
    background: var(--soft);
}

.product-filter label,
.contact-form label {
    display: grid;
    gap: 7px;
}

.product-filter span,
.contact-form span {
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.product-filter input,
.product-filter select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
}

.archive-meta {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
}

.archive-meta p {
    margin: 0;
    color: var(--muted);
}

.month-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.month-pills a {
    padding: 6px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 12px;
    background: var(--white);
}

.month-pills a.is-active,
.month-pills a:hover {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.pagination a {
    min-width: 38px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    text-align: center;
}

.pagination a.is-active,
.pagination a:hover {
    color: var(--white);
    border-color: var(--green);
    background: var(--green);
}

.product-detail-hero {
    padding: 48px 0;
    background: var(--soft);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.product-detail-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--white);
}

.product-detail-grid figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-detail-summary {
    padding: 28px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.product-detail-summary h1 {
    margin: 0 0 22px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
}

.summary-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.summary-list div,
.price-panel {
    padding: 14px;
    border-radius: 8px;
    background: #f8faf9;
}

.summary-list span,
.price-panel span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.summary-list strong,
.price-panel strong {
    color: var(--ink);
    font-size: 15px;
}

.price-panel {
    margin-top: 16px;
}

.price-panel strong {
    display: block;
    color: var(--green);
    font-size: 28px;
}

.price-panel small {
    color: var(--muted);
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.detail-content {
    max-width: 960px;
}

.detail-content h2 {
    margin-top: 0;
    color: var(--green);
    font-size: 28px;
}

.rich-content {
    color: var(--muted);
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content strong {
    color: var(--ink);
}

.rich-content img {
    border-radius: 8px;
}

.rich-content ul,
.rich-content ol {
    padding-left: 22px;
}

.article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-card div {
    padding: 20px;
}

.article-card time {
    color: var(--green);
    font-size: 13px;
    font-weight: 600;
}

.article-card h2 {
    margin: 8px 0 10px;
    font-size: 20px;
    line-height: 1.35;
}

.article-card p {
    color: var(--muted);
}

.text-link {
    color: var(--green);
    font-weight: 600;
}

.article-hero {
    padding: 44px 0 0;
}

.article-hero h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.16;
}

.article-hero img {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: 8px;
}

.article-heading {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
}

.article-meta time {
    color: var(--green);
    font-weight: 600;
}

.article-content-section {
    padding-top: 32px;
}

.article-body {
    font-size: 17px;
    line-height: 1.9;
}

.article-body p,
.article-body li {
    text-align: justify;
    text-align-last: left;
}

.article-body p {
    margin: 0 0 20px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 22px;
}

.article-body li + li {
    margin-top: 8px;
}

.article-body .article-back {
    margin-top: 32px;
    text-align: left;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 26px;
    align-items: start;
}

.booking-online-layout {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.booking-online-aside {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 18px;
}

.booking-product-preview,
.booking-form-section {
    padding: 24px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .08);
}

.booking-product-preview span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.booking-product-preview__image {
    width: 100%;
    height: clamp(150px, 15vw, 210px);
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid var(--line);
    object-fit: contain;
    object-position: center;
    background: #f8faf9;
}

.booking-product-preview h2,
.booking-success h2,
.booking-form-section h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.3;
}

.booking-product-preview p {
    margin: 12px 0 0;
    color: var(--muted);
}

.booking-product-preview strong {
    display: block;
    margin-top: 8px;
    color: var(--green);
    font-size: 24px;
}

.booking-success {
    display: grid;
    gap: 8px;
}

.booking-success p {
    margin: 0;
}

.booking-online-form {
    display: grid;
    gap: 18px;
}

.booking-form-section {
    display: grid;
    gap: 16px;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.booking-form-grid__wide {
    grid-column: 1 / -1;
}

.required-mark {
    color: #9b1420;
    font-style: normal;
    font-weight: 700;
}

.booking-upload-head {
    display: grid;
    gap: 10px;
}

.booking-upload-title {
    color: var(--ink);
    font-size: 18px;
    font-weight: 700;
}

.booking-file-picker {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    min-height: 58px;
    overflow: hidden;
    border: 1px solid #cfd6df;
    border-radius: 8px;
    background: var(--white);
}

.booking-file-text {
    width: 100%;
    min-width: 0;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
}

.booking-file-text::placeholder {
    color: #3f4752;
}

.booking-file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-left: 1px solid #cfd6df;
    background: #eef1f5;
    color: #3f4752;
    font-weight: 500;
    cursor: pointer;
}

.booking-file-button:hover {
    background: #e5e9ef;
}

.booking-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.booking-ocr-panel {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px solid #dfe3e9;
    border-radius: 8px;
    background: #fafbfc;
}

.booking-ocr-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.booking-ocr-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
}

.booking-ocr-head svg {
    width: 21px;
    height: 21px;
}

.booking-ocr-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: #eef2f6;
    color: #465064;
    font-size: 14px;
    font-weight: 700;
}

.booking-ocr-preview {
    display: grid;
    place-items: center;
    min-height: clamp(260px, 36vw, 460px);
    overflow: hidden;
    border: 1px dashed #c9d5e4;
    border-radius: 8px;
    background: var(--white);
}

.booking-file-card-empty {
    display: grid;
    place-items: center;
    color: #92a0b2;
}

.booking-file-card-empty svg {
    width: 48px;
    height: 48px;
}

.ktp-preview {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

.booking-ocr-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.booking-ocr-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid #9ea7b3;
    border-radius: 4px;
    background: #f8fafc;
    color: #4d5868;
    font-weight: 500;
    cursor: pointer;
}

.booking-ocr-action svg {
    width: 18px;
    height: 18px;
}

.booking-ocr-action:disabled {
    color: #9aa3af;
    cursor: not-allowed;
    opacity: .8;
}

.booking-ocr-text {
    width: 100%;
    min-height: 120px;
    resize: vertical;
}

.booking-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.booking-check-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.booking-check-form {
    position: sticky;
    top: 110px;
}

.booking-results {
    display: grid;
    gap: 18px;
}

.booking-results__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.booking-results__head h2 {
    margin: 0;
    font-size: 24px;
}

.booking-results__head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.booking-card {
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .08);
}

.booking-card__head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.booking-card__head span,
.booking-summary-grid span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.booking-card__head strong {
    color: var(--ink);
    font-size: 18px;
}

.booking-card__main {
    padding: 20px 20px 0;
}

.booking-card__main h2 {
    margin: 0 0 6px;
    font-size: 24px;
    line-height: 1.3;
}

.booking-card__main p {
    margin: 0;
    color: var(--green);
    font-weight: 600;
}

.booking-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 20px;
}

.booking-summary-grid div {
    min-width: 0;
    padding: 13px;
    border-radius: 8px;
    background: #f8faf9;
}

.booking-summary-grid strong {
    color: var(--ink);
    overflow-wrap: anywhere;
}

.status-badge {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge--success {
    color: #155d36;
    background: #e8f7ee;
}

.status-badge--warning {
    color: #75530a;
    background: #fff5d8;
}

.status-badge--danger {
    color: #8f2d26;
    background: #fdecea;
}

.member-hero {
    background: linear-gradient(rgba(31, 33, 36, .56), rgba(31, 33, 36, .56)), url("https://adhiyatravel.co.id/wp-content/uploads/2024/11/Slide-1-scaled.webp") center/cover;
}

.member-shell {
    display: grid;
    gap: 22px;
}

.member-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .06);
}

.member-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.member-nav__link.is-active,
.member-nav__link:hover {
    color: var(--white);
    background: var(--green);
}

.member-nav__link--logout {
    margin-left: auto;
    color: #8f2d26;
    background: #fdecea;
}

.member-nav__link--logout:hover {
    color: var(--white);
    background: #8f2d26;
}

.member-auth-grid {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.member-auth-panel,
.member-panel,
.member-form-section {
    padding: 24px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .08);
}

.member-auth-panel span,
.member-panel__head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.member-auth-panel h2,
.member-panel h2,
.member-form-section h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.35;
}

.member-auth-panel p {
    margin: 12px 0 20px;
    color: var(--muted);
}

.member-auth-switch {
    display: inline-flex;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    background: #eef5f1;
}

.member-auth-switch a {
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--green);
    font-weight: 600;
}

.member-auth-switch a.is-active {
    color: var(--white);
    background: var(--green);
}

.member-auth-form {
    display: grid;
    gap: 14px;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.member-stats article {
    min-width: 0;
    padding: 20px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(36, 39, 44, .07);
}

.member-stats span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.member-stats strong {
    display: block;
    margin-top: 8px;
    color: var(--green);
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.member-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
    gap: 18px;
    align-items: start;
}

.member-panel {
    display: grid;
    gap: 16px;
}

.member-panel--wide {
    grid-row: span 2;
}

.member-panel__head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.member-panel__head a {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.member-panel__head strong {
    color: var(--green);
    font-size: 22px;
}

.member-progress {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8eee9;
}

.member-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green), var(--gold));
}

.member-profile-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.member-profile-list div {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
}

.member-profile-list dt {
    color: var(--muted);
    font-size: 12px;
}

.member-profile-list dd {
    margin: 0;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.member-list {
    display: grid;
    gap: 10px;
}

.member-list-row {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(150px, .7fr);
    gap: 14px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.member-list-row strong,
.member-list-row span {
    display: block;
    overflow-wrap: anywhere;
}

.member-list-row span {
    color: var(--muted);
    font-size: 12px;
}

.member-empty {
    padding: 18px;
    border: 1px dashed #cad7cf;
    border-radius: 8px;
    color: var(--muted);
    background: #fbfcfb;
}

.member-voucher-mini {
    display: grid;
    gap: 8px;
}

.member-voucher-mini a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(201, 154, 46, .3);
    border-radius: 8px;
    background: #fffaf0;
}

.member-voucher-mini strong {
    color: #7b4d08;
}

.member-voucher-mini span {
    color: var(--green);
    font-weight: 700;
}

.member-profile-form {
    display: grid;
    gap: 18px;
}

.member-profile-form.contact-form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.member-form-section {
    display: grid;
    gap: 16px;
    box-shadow: none;
    border: 1px solid var(--line);
}

.member-document-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.member-document-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px dashed #cfd9d2;
    border-radius: 8px;
    background: #fbfcfb;
}

.member-document-card__head {
    display: grid;
    gap: 3px;
}

.member-document-card__head strong {
    color: var(--ink);
    font-size: 16px;
}

.member-document-card__head span {
    color: var(--muted);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.member-document-preview {
    display: grid;
    place-items: center;
    min-height: 190px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.member-document-preview img,
.member-document-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.member-document-preview img {
    object-fit: contain;
}

.member-document-empty {
    padding: 14px;
    color: var(--muted);
    text-align: center;
}

.member-document-file {
    padding: 10px 12px;
    overflow-wrap: anywhere;
}

.member-file-field {
    display: grid;
    gap: 8px;
    margin: 0;
}

.member-file-field span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.member-file-field input {
    width: 100%;
}

.member-document-grid a,
.member-doc-links a {
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.member-document-open {
    width: fit-content;
}

.member-order-profile {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.member-order-profile div {
    padding: 13px;
    border-radius: 8px;
    background: #f8faf9;
}

.member-order-profile span {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.member-order-profile strong {
    overflow-wrap: anywhere;
}

.member-order-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.member-order-section-head h2 {
    margin: 0;
}

.member-order-section-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.member-order-section-head span.is-success {
    color: var(--green);
}

.member-order-section-head span.is-empty,
.member-order-section-head span.is-loading {
    color: #9a6a00;
}

.member-order-section-head span.is-error {
    color: #b42318;
}

.member-order-files {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.member-jamaah-list {
    display: grid;
    gap: 16px;
}

.member-jamaah-card {
    display: grid;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.member-jamaah-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.member-jamaah-card__head h3,
.member-order-section-head--compact h3 {
    margin: 0;
    font-size: 18px;
}

.member-jamaah-remove {
    padding: 8px 12px;
}

.member-order-success-list {
    display: grid;
    gap: 10px;
    margin: 12px 0;
}

.member-order-success-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 4px 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .68);
}

.member-order-success-list span,
.member-order-success-list strong,
.member-order-success-list small {
    overflow-wrap: anywhere;
}

.member-order-success-list small {
    grid-column: 1 / -1;
}

.member-doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 20px 20px;
}

.member-doc-links a {
    padding: 8px 12px;
    border-radius: 999px;
    background: #eef8f2;
}

.member-payment-history {
    display: grid;
    gap: 12px;
    padding: 0 20px 20px;
}

.member-payment-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}

.member-payment-head h3 {
    margin: 0;
    font-size: 18px;
}

.member-payment-head span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.member-payment-list {
    display: grid;
    gap: 10px;
}

.member-payment-row {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(150px, .7fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8faf9;
}

.member-payment-row strong,
.member-payment-row span {
    display: block;
    overflow-wrap: anywhere;
}

.member-payment-row span {
    color: var(--muted);
    font-size: 12px;
}

.member-payment-row a {
    display: inline-flex;
    margin-top: 6px;
    color: var(--green);
    font-size: 13px;
    font-weight: 700;
}

.member-voucher-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.member-voucher-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbfcfb;
}

.member-voucher-card__image {
    display: block;
    background: #f3eee5;
}

.member-voucher-card__image img {
    width: 100%;
    aspect-ratio: 1400 / 788;
    object-fit: cover;
}

.member-voucher-card__body {
    display: grid;
    gap: 8px;
    padding: 16px;
}

.member-voucher-card__body strong {
    color: var(--green);
    font-size: 20px;
}

.member-voucher-card__body span {
    color: #7b4d08;
    font-weight: 700;
}

.member-voucher-card__body p,
.member-voucher-card__body small {
    margin: 0;
    color: var(--muted);
}

.contact-panel h2 {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.35;
}

.contact-list--large li {
    margin-bottom: 12px;
    color: var(--muted);
}

.contact-list--large strong,
.contact-list--large span {
    display: block;
}

.contact-list--large strong {
    color: var(--ink);
    font-weight: 600;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-actions .btn {
    flex: 1 1 220px;
}

.btn:disabled {
    opacity: .68;
    cursor: progress;
    transform: none;
    box-shadow: none;
}

.btn.is-loading::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: wa-spin .75s linear infinite;
}

.notice {
    padding: 12px 14px;
    border-radius: 8px;
}

.notice p {
    margin: 0;
}

.notice-success {
    color: #155d36;
    background: #e8f7ee;
}

.notice-error {
    color: #8f2d26;
    background: #fdecea;
}

.wa-progress-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(12, 24, 18, .38);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .22s ease;
}

.wa-progress-overlay.is-visible {
    opacity: 1;
}

.wa-progress-card {
    width: min(360px, calc(100vw - 32px));
    padding: 26px 24px 24px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 24px 70px rgba(11, 34, 24, .22);
    text-align: center;
    transform: translateY(10px) scale(.98);
    transition: transform .22s ease;
}

.wa-progress-overlay.is-visible .wa-progress-card {
    transform: translateY(0) scale(1);
}

.wa-progress-ring {
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    border: 3px solid rgba(0, 122, 61, .14);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: wa-spin .85s linear infinite;
}

.wa-progress-title {
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 600;
}

.wa-progress-detail {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.wa-progress-bar {
    height: 4px;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 122, 61, .12);
}

.wa-progress-bar::before {
    content: "";
    display: block;
    width: 44%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    animation: wa-progress-slide 1.15s ease-in-out infinite;
}

.wa-progress-overlay.is-ready .wa-progress-ring,
.wa-progress-overlay.is-ready .wa-progress-bar {
    display: none;
}

.wa-progress-action {
    width: 100%;
    margin-top: 18px;
}

@keyframes wa-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes wa-progress-slide {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(260%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn.is-loading::before,
    .wa-progress-ring,
    .wa-progress-bar::before {
        animation: none;
    }

    .wa-progress-overlay,
    .wa-progress-card {
        transition: none;
    }
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-content: center;
    gap: 16px;
    padding: 32px;
    text-align: center;
}

@media (max-width: 1024px) {
    .site-header__inner {
        grid-template-columns: 120px auto auto;
    }

    .site-nav > ul {
        gap: 14px;
    }

    .product-grid--four,
    .program-grid,
    .people-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .member-stats,
    .member-voucher-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .site-header__inner {
        min-height: 76px;
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 8px);
        display: none;
        padding: 16px;
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: block;
    }

    .site-nav > ul {
        display: grid;
        gap: 6px;
        align-items: stretch;
    }

    .nav-link {
        min-height: 38px;
    }

    .submenu {
        position: static;
        min-width: 0;
        margin: 4px 0 10px 12px;
        padding: 5px 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-color: var(--line);
    }

    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
        transform: none;
    }

    .header-cta {
        grid-column: 1 / -1;
        justify-self: stretch;
        display: none;
    }

    .hero-carousel {
        margin-top: 20px;
    }

    .hero-slide img {
        aspect-ratio: 4 / 3;
    }

    .why-grid,
    .mission-grid,
    .product-filter,
    .archive-meta,
    .product-detail-grid,
    .contact-grid,
    .member-auth-grid,
    .member-dashboard-grid,
    .booking-check-grid,
    .booking-online-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .booking-check-form,
    .booking-online-aside {
        position: static;
    }

    .month-pills {
        justify-content: flex-start;
    }

    .summary-list,
	    .member-stats,
	    .booking-summary-grid,
	    .booking-form-grid,
	    .member-order-files,
	    .benefit-grid,
	    .testimonial-grid,
	    .article-grid {
	        grid-template-columns: 1fr;
    }

    .booking-file-picker {
        grid-template-columns: minmax(0, 1fr) 118px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .container,
    .site-header__inner,
    .footer-inner,
    .footer-bottom,
    .hero-carousel {
        width: min(100% - 22px, 1140px);
    }

    .section {
        padding: 38px 0;
    }

    .product-grid--four,
    .program-grid,
    .people-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .product-card__row {
        grid-template-columns: minmax(128px, 1fr) minmax(0, 1fr);
        gap: 10px;
    }

    .product-card__meta strong {
        text-align: right;
    }

    .product-card {
        padding: 14px;
        border-radius: 18px;
    }

    .product-card h3 {
        min-height: 0;
        font-size: 20px;
    }

    .product-card__label,
    .product-card__meta strong {
        font-size: 14px;
    }

    .rating-stars {
        justify-content: flex-end;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .member-nav__link--logout {
        margin-left: 0;
    }

    .member-document-grid,
    .member-order-profile,
    .member-voucher-grid,
    .member-list-row,
	    .member-payment-row {
	        grid-template-columns: 1fr;
	    }

	    .member-jamaah-card__head,
	    .member-order-section-head {
	        align-items: flex-start;
	        flex-direction: column;
	    }

	    .member-order-section-head span {
	        text-align: left;
	    }

	    .member-order-success-list div {
	        grid-template-columns: 1fr;
	    }

    .product-detail-summary,
    .booking-card__head,
    .booking-card__main,
    .booking-summary-grid,
    .booking-product-preview,
    .booking-form-section,
    .member-auth-panel,
    .member-panel,
    .member-form-section,
    .member-stats article,
    .benefit-grid article,
    .mission-grid article,
    .contact-panel,
    .contact-form,
    .empty-state {
        padding: 20px;
    }
}
