/* ── HOMEPAGE PAGE SHELL ── */
html.page-public-root,
body.page-public {
    width: 100%;
    overflow-x: clip;
}

body.page-home {
    background: var(--ds-page-bg-alt);
    background-attachment: fixed;
    width: 100%;
    margin: 0;
}

body.page-home main {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Subtle dot pattern overlay on page */
body.page-home main::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(43, 79, 146, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
}

body.page-home main > * {
    position: relative;
    z-index: 1;
}

/* ── HOMEPAGE SECTIONS ── */
section {
    scroll-margin-top: calc(var(--navbar-height, 76px) + 12px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-block {
    padding: var(--ds-space-lg) 0;
    position: relative;
    overflow-x: clip;
}

.section-block--alt {
    background: var(--ds-section-tint-blue);
}

.section-block--alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ds-primary), var(--ds-accent));
    opacity: 0.35;
}

.section-block--muted {
    background: var(--ds-section-tint-teal);
}

#program.section-block {
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 55%, #eef7f6 100%);
    overflow: hidden;
}

#program.section-block::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 186, 181, 0.12) 0%, transparent 70%);
    top: 10%;
    right: -80px;
    pointer-events: none;
}

#dokumentasi.section-block {
    background: var(--ds-section-tint-cool);
}

#review.section-block {
    background: var(--ds-section-tint-warm);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--ds-space-md);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: var(--ds-font-weight-bold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ds-primary);
    background: linear-gradient(135deg, rgba(43, 79, 146, 0.12), rgba(10, 186, 181, 0.1));
    border: 1px solid rgba(43, 79, 146, 0.12);
    border-radius: var(--ds-radius-btn);
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.65rem;
}

.section-title {
    color: var(--ds-dark);
    font-weight: var(--ds-font-weight-bold);
    letter-spacing: -0.3px;
    font-size: clamp(1.2rem, 2.4vw, 1.65rem);
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    margin: 0.55rem auto 0;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--ds-primary), var(--ds-accent));
}

.section-subtitle {
    color: var(--ds-text-muted);
    font-size: clamp(0.85rem, 2vw, 0.92rem);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Container homepage — lebar mengikuti viewport */
.container.container-xl {
    max-width: min(var(--ds-max-width), 100%);
    width: 100%;
    padding-left: clamp(0.75rem, 3vw, 1.5rem);
    padding-right: clamp(0.75rem, 3vw, 1.5rem);
    overflow-x: clip;
}

/* ── HERO SECTION ── */
#home {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(145deg, #1e3a6e 0%, var(--ds-primary) 38%, var(--ds-accent) 100%);
    /* Offset fixed navbar agar eyebrow/judul hero tidak tertutup */
    padding-top: calc(var(--navbar-height, 76px) + clamp(2.5rem, 5vw, 4rem));
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* Soft wave transition ke section berikutnya */
#home::before {
    content: '';
    position: absolute;
    width: min(620px, 90vw);
    height: min(620px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    top: -220px;
    right: -120px;
    pointer-events: none;
    z-index: 0;
}

#home::after {
    content: '';
    position: absolute;
    width: min(400px, 70vw);
    height: min(400px, 70vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 243, 241, 0.14) 0%, transparent 70%);
    bottom: -160px;
    left: -120px;
    pointer-events: none;
    z-index: 0;
}

#home .hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 48' preserveAspectRatio='none'%3E%3Cpath fill='%23eef4fc' d='M0,32 C360,64 720,0 1080,24 C1260,36 1380,40 1440,32 L1440,48 L0,48 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    max-width: var(--ds-max-width);
    margin: 0 auto;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

.hero-wrap {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding: 0.35rem 0.85rem;
    border-radius: var(--ds-radius-btn);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.74rem;
    font-weight: var(--ds-font-weight-semibold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    color: #fff;
    letter-spacing: -0.6px;
    font-size: clamp(1.55rem, 3.4vw, 2.35rem);
    font-weight: var(--ds-font-weight-bold);
    line-height: 1.25;
    margin: 0;
}

.hero-title .accent {
    color: #a5f3f1;
    display: inline;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.9rem, 1.5vw, 1.02rem);
    line-height: 1.7;
    margin: 0;
    max-width: 34rem;
    font-weight: var(--ds-font-weight-normal);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.78rem;
    border-radius: var(--ds-radius-btn);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 0.78rem;
    font-weight: var(--ds-font-weight-semibold);
    line-height: 1.2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-pill i {
    color: #a5f3f1;
    font-size: 0.82rem;
}

.hero-accreditation {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--ds-radius);
    padding: 0.7rem 0.9rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: fit-content;
    max-width: 100%;
}

.hero-accred-item {
    font-size: clamp(0.74rem, 1.3vw, 0.84rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

.hero-accred-item strong {
    font-weight: var(--ds-font-weight-semibold);
    color: #fff;
}

.hero-accred-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: var(--ds-font-weight-bold);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.hero-accred-label i {
    color: #a5f3f1;
}

.hero-accred-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 0.15rem;
}

.hero-logo-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: clamp(1rem, 3vw, 2rem);
}

.hero-logo-ring {
    position: absolute;
    width: min(100%, 380px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 68%);
}

.hero-logo-ring::before {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.hero-logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
    transition: var(--ds-transition);
}

.hero-logo:hover {
    transform: scale(1.02);
}

.hero-img {
    border-radius: var(--ds-radius-lg);
    border: 6px solid #ffffff;
    box-shadow: var(--ds-shadow-hero);
    object-fit: cover;
}

.badge-soft {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: var(--ds-font-weight-semibold);
}

.hero-meta small {
    color: rgba(255, 255, 255, 0.75);
}

.hero-meta i {
    color: rgba(255, 255, 255, 0.9);
}

/* ── TENTANG SECTION ── */
.info-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-sm);
    padding: 2rem;
}

.about-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 240, 252, 0.65) 100%);
    border: 1px solid rgba(43, 79, 146, 0.12);
    border-left: 4px solid var(--ds-primary);
    border-radius: var(--ds-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 8px 24px rgba(43, 79, 146, 0.08);
}

.howto-panel {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(230, 247, 246, 0.55) 100%);
    border: 1px solid rgba(10, 186, 181, 0.15);
    border-left: 4px solid var(--ds-accent);
    border-radius: var(--ds-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 8px 24px rgba(10, 186, 181, 0.08);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.facilities-title {
    font-size: 0.88rem;
    font-weight: var(--ds-font-weight-bold);
    color: var(--ds-dark);
    margin: 1rem 0 0.65rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(43, 79, 146, 0.1);
    font-size: 0.78rem;
    color: #334155;
    line-height: 1.35;
    transition: var(--ds-transition);
}

.facility-item:hover {
    transform: translateY(-1px);
    border-color: rgba(10, 186, 181, 0.25);
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.1);
}

.facility-item--highlight {
    background: rgba(10, 186, 181, 0.08);
    border-color: rgba(10, 186, 181, 0.18);
    font-weight: var(--ds-font-weight-semibold);
    color: var(--ds-dark);
}

.facility-icon {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(10, 186, 181, 0.12);
    color: var(--ds-accent);
    font-size: 0.82rem;
}

.facility-item--highlight .facility-icon {
    background: var(--ds-accent);
    color: #fff;
}

/* how to register steps */
.howto-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(43, 79, 146, 0.1);
    height: 100%;
    transition: var(--ds-transition);
}

.howto-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 79, 146, 0.08);
    border-color: rgba(10, 186, 181, 0.22);
}

.howto-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: var(--ds-font-weight-bold);
    color: #fff;
    flex-shrink: 0;
}

.howto-step-title {
    font-weight: var(--ds-font-weight-semibold);
    font-size: 0.85rem;
    color: var(--ds-dark);
    margin-bottom: 0.15rem;
}

.howto-step-desc {
    font-size: 0.78rem;
    color: var(--ds-text-muted);
    margin: 0;
    line-height: 1.45;
}

.howto-path-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: var(--ds-font-weight-bold);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ds-primary);
    background: rgba(43, 79, 146, 0.1);
    border-radius: var(--ds-radius-btn);
    padding: 0.3rem 0.7rem;
    margin-bottom: 0.75rem;
}

.howto-alt {
    background: var(--ds-light);
    border: 1px dashed var(--ds-border);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
    color: #475569;
    line-height: 1.5;
}

/* ── PROGRAM SECTION ── */
.program-preview-card {
    border: 1px solid rgba(43, 79, 146, 0.1);
    border-radius: var(--ds-radius);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 4px 16px rgba(43, 79, 146, 0.07);
    transition: var(--ds-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.program-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ds-primary), var(--ds-accent));
    opacity: 0.85;
}

.program-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(43, 79, 146, 0.14);
    border-color: rgba(10, 186, 181, 0.28);
}

.program-preview-card .icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
}

.program-preview-card .tag-paket {
    background: rgba(10, 186, 181, 0.1);
    color: var(--ds-accent);
    font-size: 0.72rem;
    font-weight: var(--ds-font-weight-semibold);
    border-radius: var(--ds-radius-btn);
    padding: 0.25em 0.7em;
}

.program-preview-card .paket-chip {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: var(--ds-font-weight-semibold);
    color: #475569;
    background: #f1f5f9;
    border-radius: var(--ds-radius-btn);
    padding: 0.2em 0.55em;
    margin: 0 0.25rem 0.25rem 0;
}

.program-preview-card .program-meta-line {
    font-size: 0.75rem;
    color: var(--ds-text-muted);
    line-height: 1.45;
}

.program-cta-banner {
    background: linear-gradient(135deg, var(--ds-primary) 0%, var(--ds-accent) 100%);
    border-radius: var(--ds-radius);
    color: #fff;
    box-shadow: 0 8px 24px rgba(43, 79, 146, 0.18);
}

.program-cta-banner h4 {
    font-size: 1.05rem;
    font-weight: var(--ds-font-weight-bold);
}

.program-cta-banner p {
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ── SISTEM BELAJAR ── */
#sistem-belajar .section-header {
    margin-bottom: 2.25rem;
}

.system-card {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(43, 79, 146, 0.12);
    border-radius: var(--ds-radius-lg);
    background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
    transition: var(--ds-transition);
    box-shadow: 0 6px 20px rgba(43, 79, 146, 0.07);
}

.system-card:hover {
    border-color: rgba(10, 186, 181, 0.35);
    box-shadow: 0 14px 32px rgba(10, 186, 181, 0.14);
    transform: translateY(-3px);
}

.system-card--featured {
    border-color: rgba(10, 186, 181, 0.45);
    background: linear-gradient(165deg, #ffffff 0%, rgba(10, 186, 181, 0.08) 100%);
    box-shadow: 0 12px 32px rgba(10, 186, 181, 0.15);
}

.system-card--featured:hover {
    transform: translateY(-5px);
}

.system-card-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.system-card-icon-wrap--reguler {
    background: rgba(43, 79, 146, 0.1);
    color: var(--ds-primary);
}

.system-card-icon-wrap--semi {
    background: rgba(10, 186, 181, 0.15);
    color: var(--ds-accent);
}

.system-card-icon-wrap--private {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}

.system-card-title {
    font-weight: var(--ds-font-weight-bold);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--ds-dark);
    margin-bottom: 0.35rem;
}

.system-card-tag {
    display: inline-block;
    font-size: 0.72rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: rgba(43, 79, 146, 0.08);
    color: var(--ds-text-muted);
}

.system-card-tag--featured {
    background: rgba(10, 186, 181, 0.12);
    color: var(--ds-accent);
    font-weight: var(--ds-font-weight-semibold);
}

.system-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.system-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: clamp(0.82rem, 2vw, 0.88rem);
    color: var(--ds-text-muted);
    padding: 0.45rem 0;
    line-height: 1.5;
    border-bottom: 1px dashed rgba(43, 79, 146, 0.08);
    word-break: break-word;
}

.system-feature-list li:last-child {
    border-bottom: none;
}

.system-feature-list li i {
    color: var(--ds-accent);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.82rem;
}

/* ── DOKUMENTASI SLIDER ── */
.doc-carousel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.doc-carousel-title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: var(--ds-font-weight-bold);
    font-size: 1rem;
    color: var(--ds-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.doc-carousel-title::before {
    content: '';
    width: 4px;
    height: 1.35rem;
    border-radius: var(--ds-radius-btn);
    background: var(--ds-primary);
    flex-shrink: 0;
}

.doc-carousel-nav {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.doc-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--ds-border);
    background: #fff;
    color: var(--ds-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--ds-transition);
    box-shadow: var(--ds-shadow-sm);
}

.doc-nav-btn:hover:not(:disabled) {
    background: var(--ds-accent);
    border-color: var(--ds-accent);
    color: #fff;
}

.doc-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.doc-carousel-wrap {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.doc-carousel-track {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0.25rem 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.doc-carousel-track::-webkit-scrollbar {
    display: none;
}

.doc-slide {
    flex: 0 0 calc(33.333% - 0.75rem);
    min-width: 280px;
    scroll-snap-align: start;
}

.doc-slide-card {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
    background: #fff;
    border-radius: var(--ds-radius);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(43, 79, 146, 0.1);
    border: 1px solid rgba(43, 79, 146, 0.08);
    transition: var(--ds-transition);
    cursor: pointer;
    text-align: left;
}

.doc-slide-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: var(--ds-shadow-hover);
}

.doc-slide-img {
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.doc-slide-img img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.doc-slide-card:hover .doc-slide-img img {
    transform: scale(1.08);
}

.doc-slide-img img.is-contain {
    object-fit: contain;
    height: 220px;
    padding: 0.35rem;
}

.doc-slide-img img.is-cover {
    object-fit: cover;
    height: 220px;
}

.doc-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 42, 0.35);
    color: #fff;
    font-size: 1.35rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.doc-slide-card:hover .doc-zoom {
    opacity: 1;
}

.doc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.doc-lightbox.is-open {
    display: flex;
}

.doc-lightbox img {
    max-width: min(92vw, 900px);
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--ds-radius);
    box-shadow: var(--ds-shadow-hero);
}

.doc-lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--ds-transition);
}

.doc-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ── REVIEW CAROUSEL ── */
.review-section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-section-head .section-header {
    margin: 0;
    text-align: left;
    max-width: 560px;
}

.review-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(245, 158, 11, 0.12);
    color: #b45309;
    border-radius: var(--ds-radius-btn);
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: var(--ds-font-weight-semibold);
    margin-top: 0.5rem;
}

.review-carousel-wrap {
    max-width: 100%;
    overflow: hidden;
}

.review-carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0.25rem 0.75rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.review-carousel-track::-webkit-scrollbar {
    display: none;
}

.review-slide {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 340px;
    scroll-snap-align: start;
}

.review-card {
    background: linear-gradient(165deg, #ffffff 0%, #fffdf8 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--ds-radius);
    padding: 1.6rem 1.8rem;
    height: 100%;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.08);
    transition: var(--ds-transition);
}

.review-card:hover {
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.14);
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.28);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--ds-font-weight-bold);
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.review-text {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0.75rem 0 0;
}

.review-meta {
    font-size: 0.78rem;
    color: var(--ds-text-muted);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(66, 133, 244, 0.08);
    color: #4285f4;
    border-radius: var(--ds-radius-btn);
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    font-weight: var(--ds-font-weight-semibold);
}

/* ── WHY US & CONTACT ── */
.why-item {
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    background: #fff;
    padding: 1.25rem;
    height: 100%;
    transition: var(--ds-transition);
}

.why-item:hover {
    box-shadow: var(--ds-shadow-hover);
    border-color: rgba(10, 186, 181, 0.2);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius-lg);
    box-shadow: var(--ds-shadow-sm);
    padding: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1rem;
}

.contact-item {
    border: 1px solid var(--ds-border);
    border-radius: var(--ds-radius);
    background: #fff;
    transition: var(--ds-transition);
    height: 100%;
    padding: 0.95rem !important;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--ds-shadow-hover);
    border-color: rgba(10, 186, 181, 0.22);
}

.contact-link {
    color: var(--ds-accent);
    text-decoration: none;
    font-weight: var(--ds-font-weight-semibold);
    font-size: 0.82rem;
    word-break: break-word;
}

.contact-link:hover {
    text-decoration: underline;
}

.map-wrap {
    border-radius: var(--ds-radius);
    overflow: hidden;
    border: 1px solid var(--ds-border);
    box-shadow: var(--ds-shadow-sm);
}

.contact-split .map-wrap {
    height: 100%;
    min-height: 280px;
}

.map-wrap iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.contact-split .map-wrap iframe {
    height: 100%;
    min-height: 280px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.contact-side-title {
    font-size: 0.95rem;
    font-weight: var(--ds-font-weight-bold);
    color: var(--ds-dark);
    margin-bottom: 0.75rem;
}

/* ── HELPER DESIGN SYSTEM CLASSES ── */
.about-subtitle {
    font-size: 0.88rem;
}

.about-legal-card {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.1), rgba(43, 79, 146, 0.06));
    border: 1px solid rgba(10, 186, 181, 0.18);
}

.text-dark-ds {
    color: var(--ds-dark) !important;
}

.text-primary-ds {
    color: var(--ds-primary) !important;
}

.text-accent-ds {
    color: var(--ds-accent) !important;
}

.program-desc {
    font-size: 0.82rem;
    line-height: 1.5;
}

.system-card-badge {
    font-size: 0.68rem;
    padding: 0.35rem 0.75rem;
    z-index: 2;
}

.bg-dark-ds {
    background-color: var(--ds-dark) !important;
}

.bg-accent-ds {
    background-color: var(--ds-accent) !important;
}

.review-name {
    font-size: 0.95rem;
    color: var(--ds-dark);
}

.text-gray-900 {
    color: #111827 !important;
}

.visit-map-wrap {
    height: 380px;
    border-radius: var(--ds-radius);
    overflow: hidden;
    border: 1px solid var(--ds-border);
    box-shadow: var(--ds-shadow-sm);
}

.visit-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}





