/* AWAL */

/* General */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: #f9f6f1;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: "Poppins", "Scheherazade New", serif;
    background: #111; /* fallback warna dasar */
}

/* Carousel */
.carousel {
    position: relative;
    height: 100%;
    width: 100%;
    filter: brightness(100%);
}

.carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(78, 52, 46, 0.6),
        /* cokelat tua transparan */ rgba(0, 0, 0, 0.6)
    );
    pointer-events: none;
    z-index: 11;
}

.slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(65%);
}

/* Navigation Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.7); /* emas transparan */
    color: #4e342e; /* cokelat tua */
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    padding: 12px;
    border-radius: 50%;
    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background: #4e342e; /* cokelat tua */
    color: #ffd700; /* emas */
}

.prev {
    left: 20px;
    z-index: 12;
}
.next {
    right: 20px;
    z-index: 12;
}

/* Hero Text */
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 11;

    opacity: 0;
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-text h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    color: #ffd700; /* emas */
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
}

.hero-text h2 {
    font-size: 2.4rem;
    margin-bottom: 15px;
    color: #f8f5e9; /* putih gading */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #e6e6e6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(
        135deg,
        #4e342e,
        /* cokelat tua */ #6d4c41 /* cokelat hangat */
    );
    color: #ffd700; /* teks emas */
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.cta-button:hover {
    background: #ffd700;
    color: #4e342e; /* cokelat tua */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

/* AWAL */

/* TENTANG KAMI */
/* About Section */
.about {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #fdfaf6, #f5f0e8, #e0d6cc);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif; /* font modern */
}

/* pola samar */
.about::before,
.about::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: url("pattern.svg") no-repeat center/cover;
    opacity: 0.06;
}
.about::before {
    top: -50px;
    left: -50px;
}
.about::after {
    bottom: -50px;
    right: -50px;
}

.about .container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #5a3825; /* cokelat tua */
    font-weight: 800; /* lebih bold */
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15); /* shadow lembut */
}
.about h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37; /* emas klasik */
    margin: 14px auto 0;
    border-radius: 2px;
}

.about p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 25px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.08); /* shadow halus */
}

.about .highlight {
    color: #a47148; /* cokelat emas */
    font-weight: 700;
    text-shadow: 1px 1px 6px rgba(212, 175, 55, 0.4); /* glow emas samar */
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.about-card {
    background: linear-gradient(145deg, #ffffffd9, #fdfaf6d9);
    padding: 35px 25px;
    border-radius: 14px;
    border-top: 4px solid #d4af37;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.about-card h3 {
    font-size: 1.45rem;
    color: #5a3825;
    margin-bottom: 12px;
    font-weight: 700; /* lebih bold */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.12);
}

.about-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    text-shadow: 0.5px 0.5px 3px rgba(0, 0, 0, 0.06); /* halus banget */
}

/* Animasi fade-up */
.about h2,
.about p,
.about .about-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about h2.show,
.about p.show,
.about .about-card.show {
    opacity: 1;
    transform: translateY(0);
}
/* TENTANG KAMI */

/* Alur Section */
/* Mobile Responsive untuk Section Alur */
@media (max-width: 768px) {
    .alur {
        padding: 60px 15px;
        text-align: left; /* biar lebih natural di mobile */
    }

    .alur h2 {
        font-size: 2rem;
        text-align: center; /* judul tetap center */
    }

    .alur p {
        font-size: 1rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .alur-timeline {
        display: flex;
        flex-direction: column; /* susun kebawah */
        align-items: center;
        gap: 30px;
        position: relative;
    }

    .alur-timeline::before {
        display: none; /* hilangkan garis horizontal */
    }

    .step {
        max-width: 100%; /* full lebar */
        margin: 0;
        text-align: center; /* biar rapi di tengah */
    }

    .circle {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .step h3 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.9rem;
    }
}

.alur {
    padding: 90px 20px;
    background: linear-gradient(to bottom, #8d6e63, #5d4037, #3e2723);
    color: #f5e9dd; /* krem hangat */
    text-align: center;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.alur .container {
    max-width: 1200px;
    margin: 0 auto;
}

.alur h2 {
    font-size: 2.7rem;
    margin-bottom: 20px;
    color: #ffcc80; /* cokelat keemasan */
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.alur .intro {
    font-size: 1.15rem;
    margin-bottom: 60px;
    color: #f8f4ec; /* krem lebih terang */
    line-height: 1.6;
}

.alur .intro strong {
    color: #ffd54f; /* kuning emas lembut */
}

/* Timeline Style */
.alur-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.alur-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: #ffb74d; /* garis cokelat keemasan */
    z-index: 0;
}

.step {
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    margin: 0 10px;
    z-index: 1;
}

.circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #ffcc80;
    color: #3e2723;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff3e0;
    font-weight: 600;
}

.step p {
    font-size: 1rem;
    color: #f8f1e7;
    line-height: 1.6;
}

.step p strong {
    color: #ffca28; /* kuning emas lebih pekat */
    font-weight: 700;
}

/* Animasi Entry untuk Step */
.step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.step.show {
    opacity: 1;
    transform: translateY(0);
}

/* Bonus: Animasi zoom-in untuk lingkaran */
.circle {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step.show .circle {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

/* Animasi untuk judul dan paragraf */
.alur h2,
.alur .intro {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.alur h2.show,
.alur .intro.show {
    opacity: 1;
    transform: translateY(0);
}

/* Alur Section */

.wave-divider {
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    background: #e0d6cc; /* Bagian bawah putih */
    margin-top: -1px; /* Hilangkan celah garis putih */
    margin-bottom: -1px; /* Hilangkan celah garis putih */
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-divider .shape-fill {
    fill: #8d6e63; /* Warna atas gelombang */
}

/* === PROGRAM SECTION CLEAN STYLE === */
.program-section {
    background: linear-gradient(to bottom, #fdfaf6, #f5f0e8, #e0d6cc);
    padding: 60px 20px;
    text-align: center; /* konten rata tengah */
}

/* Section Title */
.program-section h2 {
    font-family: Georgia, serif;
    color: #4e342e; /* cokelat tua */
    font-weight: 800; /* lebih tebal */
    font-size: 2.3rem; /* sedikit lebih besar */
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* garis emas dekoratif di bawah judul */
.program-section h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #d4af37;
    margin: 12px auto 0;
    border-radius: 2px;
}

.program-section p.lead {
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #6c757d;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

/* === FILTER BUTTONS === */
.filter-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-buttons-wrapper .filter-btn {
    border: 2px solid #4e342e;
    background: transparent;
    color: #4e342e;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-buttons-wrapper .filter-btn.active,
.filter-buttons-wrapper .filter-btn:hover {
    background-color: #d4af37;
    color: #4e342e; /* teks jadi cokelat tua agar kontras */
    border-color: #d4af37; /* aksen emas */
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* === GRID === */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
    max-width: 1100px; /* biar gak terlalu melebar */
    margin-left: auto; /* center horizontal */
    margin-right: auto;
}

/* === CARD === */
.program-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: left; /* isi card tetap natural */
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.program-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.program-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.program-card:hover .program-card-img {
    transform: scale(1.05);
}

/* === BADGE === */
.program-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 8px;
    background-color: #d4af37; /* aksen emas */
    color: #fff;
    font-weight: bold;
}

/* === CARD BODY === */
.card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.program-card-title {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4e342e;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.program-card-price {
    font-family: "Trebuchet MS", Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* === DETAIL BUTTONS === */
.program-card .btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 16px; /* lebih proporsional */
    text-align: center;
    border: 2px solid #4e342e;
    color: #fff;
    background: #0f5132; /* hijau default */
    transition: all 0.3s ease;
    display: inline-block;
    max-width: 100%; /* tombol tidak lebih besar dari kontainer */
    box-sizing: border-box; /* padding ikut dihitung dalam lebar */
}

.program-card .btn:hover {
    background-color: #d4af37; /* emas */
    border-color: #d4af37;
    color: #4e342e; /* teks balik cokelat tua agar konsisten */
}

/* === RESPONSIVE UNTUK MOBILE === */
@media (max-width: 480px) {
    .program-card .btn {
        width: 100%; /* tombol full lebar container */
        padding: 12px; /* lebih nyaman untuk jari */
        font-size: 14px; /* sedikit lebih kecil agar pas */
    }
}

/* keadaan awal */
.program-section .text-center,
.program-section .filter-buttons-wrapper,
.program-section .program-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* ketika sudah terlihat */
.program-section .text-center.show,
.program-section .filter-buttons-wrapper.show,
.program-section .program-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* program */

.wave-divider2 {
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    background: #3e2723; /* Bagian bawah putih */
    margin-top: -1px; /* Hilangkan celah garis putih */
    margin-bottom: -1px; /* Hilangkan celah garis putih */
}

.wave-divider2 svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-divider2 .shape-fill2 {
    fill: #fdfaf6; /* Warna atas gelombang */
}

/* === Kontak Section === */
.kontak-section {
    background: linear-gradient(
        to bottom,
        #8d6e63,
        #5d4037,
        #3e2723
    ); /* gradasi cokelat */
    color: #ffffff;
    padding: 90px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: "Poppins", sans-serif; /* font modern */
}

/* Judul Section */
.kontak-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6); /* shadow lembut */
}

/* garis emas dekoratif di bawah judul */
.kontak-section .section-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background-color: #ffd700;
    margin: 14px auto 0;
    border-radius: 2px;
}

/* Subjudul */
.kontak-section .kontak-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #f3e5ab; /* krem lembut */
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* Info Kontak */
.kontak-section .kontak-info {
    margin-bottom: 45px;
}

.kontak-section .kontak-info p {
    margin: 14px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
}

.kontak-section .kontak-info strong {
    color: #ffd700;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

/* Link */
.kontak-section .kontak-info a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.kontak-section .kontak-info a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.9);
}

/* Maps */
.kontak-section .kontak-maps {
    margin: 30px auto 0;
    max-width: 820px;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontak-section .kontak-maps iframe {
    width: 100%;
    height: 380px;
    border: 0;
}

.kontak-section .kontak-maps:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

/* Animasi Entry */
.kontak-section .section-title,
.kontak-section .kontak-subtitle,
.kontak-section .kontak-info,
.kontak-section .kontak-maps {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.kontak-section .section-title.show,
.kontak-section .kontak-subtitle.show,
.kontak-section .kontak-info.show,
.kontak-section .kontak-maps.show {
    opacity: 1;
    transform: translateY(0);
}
/* kontak  */

.wave-divider3 {
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    background: #e0d6cc; /* Bagian bawah putih */
    margin-top: -1px; /* Hilangkan celah garis putih */
    margin-bottom: -1px; /* Hilangkan celah garis putih */
}

.wave-divider3 svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-divider3 .shape-fill3 {
    fill: #8d6e63; /* Warna atas gelombang */
}

/* footer */
footer {
    background-color: #1c1a17;
    color: #f5f5f5; /* putih tulang supaya lembut, bukan putih neon */
    text-align: center;
    padding: 18px 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.5); /* batas halus ke atas */
}

/* teks dalam footer */
footer p {
    margin: 0;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7); /* bikin teks makin jelas */
}

/* footer */
.wave-divider4 {
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    background: #3e2723; /* Bagian bawah putih */
    margin-top: -1px; /* Hilangkan celah garis putih */
    margin-bottom: -1px; /* Hilangkan celah garis putih */
}

.wave-divider4 svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-divider4 .shape-fill4 {
    fill: #1c1a17; /* Warna atas gelombang */
}

/* pamflet */
.pamflet-section {
    padding: 70px 30px 50px 30px;
    background: linear-gradient(to bottom, #8d6e63, #5d4037, #3e2723);
    color: #f8f8f8;
    text-align: left;
}

.pamflet-section .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.pamflet img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    border: 3px solid #ffd700; /* emas */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pamflet img:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.85);
}

/* animasi masuk */
.pamflet img,
.program-info {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.pamflet img.show,
.program-info.show {
    opacity: 1;
    transform: translateY(0);
}

.program-info {
    flex: 1;
    min-width: 300px;
    padding-top: 10px;
}

/* Judul utama */
.program-info h2 {
    margin: 0 0 18px 0;
    color: #ffd700;
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    display: inline-block;
    padding-bottom: 4px;
}

/* Subjudul */
.program-info h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    color: #f8f5e9;
    font-size: 1.4rem;
    font-weight: 600;
}

/* List */
.program-info ul {
    margin-left: 20px;
    list-style: disc;
}

.program-info ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.05rem;
}

.program-info strong {
    color: #ffd700;
    font-weight: bold;
}

.wave-divider5 {
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    background: #3e2723; /* Bagian bawah putih */
    margin-top: -1px; /* Hilangkan celah garis putih */
    margin-bottom: -1px; /* Hilangkan celah garis putih */
}

.wave-divider5 svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-divider5 .shape-fill5 {
    fill: #fdfaf6; /* Warna atas gelombang */
}
