/* Sistem desain halaman publik: warna, tipografi, layout, dan komponen bersama. */
:root {
    --primary: #0f5132;
    --primary-2: #146c43;
    --accent: #c08b2c;
    --accent-soft: #f5e7c8;
    --soft: #f6f8f5;
    --soft-2: #eef4ee;
    --white: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f7faf7, #f2f7f2);
    color: var(--text);
}

a {
    text-decoration: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    padding: 16px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 800;
    font-size: 16px;
    line-height: 1.25;
    max-width: 520px;
}

.brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    transition: 0.25s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.25s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    padding: 88px 7% 70px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 50px;
    align-items: center;
    min-height: 86vh;
    background:
        radial-gradient(circle at top left, rgba(20,108,67,0.10), transparent 35%),
        radial-gradient(circle at bottom right, rgba(192,139,44,0.12), transparent 30%);
}

.badge-top {
    display: inline-block;
    background: #e9f8ef;
    color: var(--primary);
    border: 1px solid #cfe8d7;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: 56px;
    line-height: 1.08;
    color: var(--primary);
    letter-spacing: -1px;
}

.hero p {
    margin: 0;
    max-width: 680px;
    font-size: 18px;
    line-height: 1.8;
    color: #425466;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: 0.25s ease;
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(20, 108, 67, 0.22);
}

.btn-outline {
    background: white;
    color: var(--primary);
    border: 2px solid rgba(15, 81, 50, 0.18);
}

.btn-outline:hover {
    transform: translateY(-3px);
    background: #f7fbf8;
    border-color: var(--primary-2);
}

.hero-visual {
    position: relative;
}

.hero-frame {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15,81,50,0.12), rgba(192,139,44,0.12));
    padding: 16px;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;
    height: 560px;
    border-radius: 28px;
    background:
        linear-gradient(to top, rgba(15, 81, 50, 0.20), rgba(15, 81, 50, 0.08)),
        url("../img/hero-pondok.png");
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

.hero-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,139,44,0.28), rgba(192,139,44,0.05));
    top: -30px;
    right: -35px;
    z-index: -1;
}

/* ==================================================
   HERO BERANDA MODEL MODERN PONDOK
   ================================================== */

.hero-pondok-modern {
    position: relative;
    padding: 82px 7% 58px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.80) 45%, rgba(240, 253, 244, 0.46) 100%),
        linear-gradient(135deg, #ffffff 0%, #f7fbf8 54%, #eaf7ee 100%);
    overflow: hidden;
}

.hero-pondok-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
    gap: 52px;
    align-items: center;
}

.hero-pondok-content {
    position: relative;
    z-index: 2;
}

.hero-small-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d9f99d;
    color: #0f5132;
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(15, 81, 50, 0.06);
    margin-bottom: 22px;
}

.hero-small-badge span {
    width: 22px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #a3e635 0%, #0f5132 100%);
    display: inline-block;
}

.hero-pondok-content h1 {
    margin: 0;
    color: #052e1b;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-pondok-content h1 span,
.hero-pondok-content h1 strong {
    display: block;
}

.hero-pondok-content h1 strong {
    color: #65a30d;
    font-weight: 950;
}

.hero-pondok-content p {
    max-width: 610px;
    margin: 22px 0 30px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.85;
}

.hero-pondok-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 28px;
}

.hero-btn-primary,
.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    transition: 0.25s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #0f5132, #166534);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 81, 50, 0.20);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(15, 81, 50, 0.25);
}

.hero-btn-outline {
    background: #ffffff;
    color: #0f5132;
    border: 2px solid #0f5132;
}

.hero-btn-outline:hover {
    background: #0f5132;
    color: #ffffff;
    transform: translateY(-3px);
}

.hero-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 81, 50, 0.08);
    box-shadow: 0 14px 34px rgba(15, 81, 50, 0.07);
    max-width: 720px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 176px;
    flex: 1 1 176px;
}

.hero-feature-item span {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f5132;
    border: 1px solid #bbf7d0;
    font-size: 13px;
    font-weight: 950;
}

.hero-feature-item strong {
    display: block;
    color: #0f5132;
    font-size: 13px;
    font-weight: 950;
}

.hero-feature-item small {
    display: block;
    color: #64748b;
    font-size: 12px;
    margin-top: 2px;
}

.hero-pondok-image-area {
    position: relative;
    min-height: 520px;
}

.hero-photo-card {
    position: relative;
    isolation: isolate;
    min-height: 520px;
    border-radius: 8px;
    overflow: hidden;
    border: 10px solid #ffffff;
    box-shadow: 0 24px 55px rgba(15, 81, 50, 0.18);
}

.hero-photo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 44%, rgba(5, 46, 27, 0.72) 100%),
        linear-gradient(90deg, rgba(5, 46, 27, 0.18), transparent 44%);
}

.hero-photo-card img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-photo-caption {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
    color: #ffffff;
    max-width: 430px;
}

.hero-photo-caption strong {
    display: block;
    font-size: 26px;
    font-weight: 950;
    margin-bottom: 6px;
}

.hero-photo-caption span {
    display: block;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
}

.hero-round-badge {
    position: absolute;
    left: 0;
    bottom: 120px;
    width: 130px;
    height: 130px;
    border-radius: 999px;
    background: #0f5132;
    color: #ffffff;
    border: 8px solid #ffffff;
    box-shadow: 0 18px 35px rgba(15, 81, 50, 0.22);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: center;
}

.hero-round-badge span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #bef264;
    color: #0f5132;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
}

.hero-round-badge small {
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-spark {
    position: absolute;
    z-index: 6;
    color: #a3e635;
    font-size: 60px;
    line-height: 1;
    text-shadow: 0 10px 22px rgba(163, 230, 53, 0.25);
}

.spark-1 {
    right: -20px;
    bottom: 120px;
}

.spark-2 {
    right: 26px;
    bottom: 78px;
    font-size: 34px;
}

.hero-stat-card {
    max-width: 1040px;
    margin: 48px auto 0;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 81, 50, 0.08);
    border-radius: 30px;
    box-shadow: 0 18px 42px rgba(15, 81, 50, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 28px;
    border-right: 1px solid #dbe7dd;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item span {
    font-size: 34px;
}

.stat-item strong {
    display: block;
    color: #052e1b;
    font-size: 26px;
    font-weight: 950;
}

.stat-item small {
    display: block;
    color: #64748b;
    font-size: 13px;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-pondok-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .hero-pondok-content {
        text-align: center;
    }

    .hero-pondok-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-pondok-buttons,
    .hero-feature-list {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-pondok-image-area {
        min-height: auto;
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .hero-photo-card,
    .hero-photo-card img {
        min-height: 460px;
    }

    .hero-stat-card {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid #dbe7dd;
    }
}

@media (max-width: 700px) {
    .hero-pondok-modern {
        padding: 48px 6% 40px;
    }

    .hero-pondok-content h1 {
        font-size: 38px;
        line-height: 1.12;
    }

    .hero-pondok-content p {
        font-size: 15px;
    }

    .hero-feature-list {
        padding: 10px;
        text-align: left;
    }

    .hero-feature-item {
        min-width: 100%;
    }

    .hero-photo-card {
        border-width: 6px;
    }

    .hero-photo-card,
    .hero-photo-card img {
        min-height: 320px;
    }

    .hero-photo-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .hero-photo-caption strong {
        font-size: 22px;
    }

    .hero-round-badge,
    .hero-spark {
        display: none;
    }

    .hero-stat-card {
        grid-template-columns: 1fr;
        border-radius: 22px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #dbe7dd;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

.section {
    padding: 75px 7%;
}

.section-title {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-title h2 {
    margin: 0 0 14px;
    font-size: 38px;
    color: var(--primary);
}

.section-title p {
    margin: 0;
    line-height: 1.8;
    color: var(--muted);
}

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

.card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(15,81,50,0.08);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: 0.28s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.step-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 10px 20px rgba(20,108,67,0.18);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 22px;
}

.card p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
}

.gallery-section {
    padding: 60px 0 30px;
    overflow: hidden;
}

.gallery-wrapper {
    margin-top: 35px;
    overflow: hidden;
    position: relative;
}

.gallery-wrapper::before,
.gallery-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-wrapper {
    margin-top: 35px;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.gallery-wrapper::before,
.gallery-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f7faf7, rgba(247,250,247,0));
}

.gallery-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f7faf7, rgba(247,250,247,0));
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollGallery 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 auto;
    width: 360px;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15,81,50,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

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

.cta {
    margin: 60px 7% 75px;
    padding: 56px 28px;
    border-radius: 30px;
    text-align: center;
    color: white;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(135deg, #0f5132, #1d7b4f);
    box-shadow: var(--shadow);
}

.cta h2 {
    margin: 0 0 14px;
    font-size: 38px;
}

.cta p {
    max-width: 760px;
    margin: 0 auto 28px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.cta .btn-outline {
    border-color: rgba(255,255,255,0.35);
    color: white;
    background: transparent;
}

.cta .btn-outline:hover {
    background: rgba(255,255,255,0.10);
}

.footer {
    background: #0d3f28;
    color: white;
    text-align: center;
    padding: 28px 7%;
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 55px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image {
        height: 420px;
    }

    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        width: 220px;
        height: 280px;
    }

    .section,
    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .cta {
        margin-left: 6%;
        margin-right: 6%;
    }
}

@media (max-width: 600px) {
    .brand {
        font-size: 15px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image {
        height: 300px;
    }
}

    @media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        width: 300px;
        height: 190px;
    }

    .section,
    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .cta {
        margin-left: 6%;
        margin-right: 6%;
    }
}

@media (max-width: 600px) {
    .brand {
        font-size: 15px;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image {
        height: 300px;
    }

    .gallery-item {
        width: 240px;
        height: 150px;
    }

    .cta h2,
    .section-title h2 {
        font-size: 30px;
    }

    .cta h2,
    .section-title h2 {
        font-size: 30px;
    }
}

    /* =========================
   PUBLIC PAGE STYLE
========================= */

.page-hero {
    padding: 90px 7% 70px;
    background:
        radial-gradient(circle at top left, rgba(20,108,67,0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(192,139,44,0.14), transparent 35%);
    text-align: center;
}

.page-hero .badge-top {
    margin-bottom: 18px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 auto 18px;
    font-size: 48px;
    line-height: 1.15;
    color: var(--primary);
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #425466;
}

.info-page-section {
    padding: 65px 7%;
}

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

.info-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15,81,50,0.08);
    border-radius: 26px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: 0.28s ease;
}

.info-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.info-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(20,108,67,0.18);
}

.info-card h2 {
    margin: 0 0 12px;
    color: var(--primary);
    font-size: 26px;
}

.info-card p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 12px;
}

.info-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.info-card li {
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.6;
}

.highlight-box {
    margin-top: 35px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 30%),
        linear-gradient(135deg, #0f5132, #1d7b4f);
    color: white;
    border-radius: 30px;
    padding: 45px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: center;
}

.highlight-box h2 {
    font-size: 34px;
    margin: 0 0 12px;
}

.highlight-box p {
    color: rgba(255,255,255,0.92);
    line-height: 1.8;
    margin: 0;
}

.highlight-actions {
    text-align: right;
}

.highlight-actions .btn {
    margin-left: 10px;
    margin-bottom: 10px;
}

.highlight-actions .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.45);
}

.timeline-info {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.timeline-item {
    background: white;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(15,81,50,0.08);
    box-shadow: var(--shadow-soft);
}

.timeline-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.timeline-item h3 {
    color: var(--primary);
    margin: 0 0 10px;
}

.timeline-item p {
    color: #4b5563;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 980px) {
    .page-hero h1 {
        font-size: 36px;
    }

    .info-grid,
    .highlight-box,
    .timeline-info {
        grid-template-columns: 1fr;
    }

    .highlight-actions {
        text-align: left;
    }

    .highlight-actions .btn {
        margin-left: 0;
        margin-right: 10px;
    }
}

/* =========================
   INFORMASI DETAIL
========================= */

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
    overflow: hidden;
    border-radius: 16px;
}

.fee-table th {
    background: var(--primary);
    color: white;
    padding: 14px;
    text-align: left;
}

.fee-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    color: #374151;
}

.fee-table tr:nth-child(even) {
    background: #f9fafb;
}

.total-box {
    margin-top: 18px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: var(--primary);
    padding: 18px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 20px;
}

.activity-list h3 {
    color: var(--primary);
    margin-top: 22px;
    margin-bottom: 10px;
}

.activity-list ul {
    margin-top: 8px;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    margin-top: 35px;
}

.contact-box {
    background: white;
    border: 1px solid rgba(15,81,50,0.08);
    border-radius: 26px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.contact-box h2 {
    color: var(--primary);
    margin-top: 0;
}

.contact-item {
    background: #f9fafb;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 14px;
}

.contact-item strong {
    color: var(--primary);
}

.map-box {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15,81,50,0.08);
    min-height: 420px;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

@media (max-width: 980px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   INFORMASI PAGE LAYOUT
========================= */

.info-wrapper {
    padding: 70px 7%;
}

.info-layout-title {
    margin-bottom: 28px;
}

.info-layout-title h1 {
    color: var(--primary);
    font-size: 42px;
    margin-bottom: 10px;
}

.info-layout-title p {
    color: #4b5563;
    line-height: 1.75;
    max-width: 850px;
}

.info-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.info-full {
    margin-top: 24px;
}

.info-compact-card {
    background: white;
    border: 1px solid rgba(15,81,50,0.08);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-soft);
    transition: 0.25s ease;
}

.info-compact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-compact-card h2 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
}

.info-total {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: var(--primary);
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 18px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.info-row span:first-child {
    color: #334155;
    font-weight: 600;
}

.info-row span:last-child {
    color: var(--primary);
    font-weight: 800;
    white-space: nowrap;
}

.activity-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.activity-clean-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
}

.activity-clean-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 12px;
}

.activity-clean-card ul {
    margin: 0;
    padding-left: 20px;
}

.activity-clean-card li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.55;
}

.contact-line {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-line strong {
    color: var(--primary);
}

.map-frame {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 18px;
    margin-top: 10px;
}

@media (max-width: 950px) {
    .info-two-column,
    .activity-grid-clean {
        grid-template-columns: 1fr;
    }

    .info-layout-title h1 {
        font-size: 32px;
    }

    .info-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* ==================================================
   MOBILE HARDENING
   ================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

.navbar.main-navbar {
    min-width: 0;
}

.navbar.main-navbar .brand,
.navbar.main-navbar .nav-links {
    min-width: 0;
}

.navbar.main-navbar .brand span {
    overflow-wrap: anywhere;
}

.nav-links a,
.btn,
.hero-btn,
.hero-btn-primary,
.hero-btn-outline {
    min-width: 0;
    text-align: center;
}

@media (max-width: 700px) {
    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }

    .navbar.main-navbar,
    .navbar {
        padding: 12px 16px;
    }

    .navbar.main-navbar .nav-links,
    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 10px;
    }

    .navbar.main-navbar .nav-links a,
    .nav-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 9px 10px;
        border-radius: 999px;
        background: #f0fdf4;
        white-space: normal;
    }

    .navbar.main-navbar .nav-links .nav-login,
    .nav-links .nav-login {
        margin-left: 0;
    }

    .hero-actions,
    .hero-pondok-buttons,
    .highlight-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .hero-pondok-buttons a,
    .highlight-actions .btn {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .section,
    .info-page-section,
    .info-wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }

    .page-hero {
        padding: 48px 16px 42px;
    }

    .page-hero h1,
    .info-layout-title h1 {
        font-size: 30px;
        line-height: 1.18;
    }

    .info-card,
    .info-compact-card,
    .contact-box,
    .timeline-item {
        padding: 20px;
        border-radius: 20px;
    }

    .info-row {
        align-items: flex-start;
    }

    .info-row span:last-child {
        white-space: normal;
    }

    .fee-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .map-box,
    .map-box iframe,
    .map-frame {
        min-height: 300px;
        height: 300px;
    }
}

@media (max-width: 420px) {
    .navbar.main-navbar .nav-links,
    .nav-links {
        grid-template-columns: 1fr;
    }

    .brand img,
    .brand-logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .card,
    .cta {
        padding: 20px;
        border-radius: 20px;
    }
}

/* ==================================================
   MOTION SYSTEM: LOAD + SCROLL REVEAL
   ================================================== */

body.motion-enabled {
    overflow-x: hidden;
}

body.motion-enabled .scroll-reveal {
    --reveal-x: 0px;
    --reveal-y: 30px;
    --reveal-scale: 0.985;
    opacity: 0;
    translate: var(--reveal-x) var(--reveal-y);
    scale: var(--reveal-scale);
    filter: blur(3px);
    transition:
        opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
        translate 760ms cubic-bezier(0.22, 1, 0.36, 1),
        scale 760ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 520ms ease;
    transition-delay: 0ms;
}

body.motion-enabled .scroll-reveal[data-reveal-style="text"] {
    --reveal-y: 22px;
    --reveal-scale: 1;
    filter: blur(2px);
}

body.motion-enabled .scroll-reveal[data-reveal-direction="from-top"] {
    --reveal-y: -28px;
}

body.motion-enabled .scroll-reveal.is-visible {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: blur(0);
    transition-delay: var(--reveal-delay, 0ms);
}

@media (max-width: 700px) {
    body.motion-enabled .scroll-reveal[data-reveal-direction="from-top"] {
        --reveal-y: -24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    body.motion-enabled .scroll-reveal,
    body.motion-enabled .scroll-reveal.is-visible,
    .reveal,
    .reveal.active {
        opacity: 1;
        translate: 0 0;
        scale: 1;
        transform: none;
        filter: none;
        animation: none;
        transition: none;
    }

    .gallery-track {
        animation-play-state: paused;
    }
}
