:root {
    --kunyit: #D4A017;
    --kunyit-light: #F0C040;
    --kunyit-dark: #A07810;
    --hitam: #111009;
    --hitam-dof: #1A1810;
    --hitam-card: #201E14;
    --hijau: #2E5E3A;
    --hijau-light: #3D7A4D;
    --krem: #F5EDD6;
    --abu: #2C2A1E;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--hitam-dof);
    color: var(--krem);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--hitam);
}

::-webkit-scrollbar-thumb {
    background: var(--kunyit);
    border-radius: 3px;
}

/* ══════════════════════════════
NAVBAR
══════════════════════════════ */
.navbar-custom {
    background: rgba(17, 16, 9, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.18);
    padding: 0.7rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled {
    background: rgba(17, 16, 9, 0.98);
    border-bottom-color: rgba(212, 160, 23, 0.35);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    color: var(--kunyit) !important;
    text-decoration: none;
}

.nav-logo span {
    color: var(--krem);
}

.navbar-custom .nav-link {
    color: rgba(245, 237, 214, 0.75) !important;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.4rem 1rem !important;
    transition: color 0.2s;
}

.navbar-custom .nav-link:hover {
    color: var(--kunyit) !important;
}

.btn-nav-cta {
    background: var(--kunyit);
    color: var(--hitam) !important;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 1.2rem !important;
    border-radius: 2px;
    transition: all 0.25s;
}

.btn-nav-cta:hover {
    background: var(--kunyit-light);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid rgba(212, 160, 23, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 160, 23, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════
HERO
══════════════════════════════ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1800&q=80&auto=format&fit=crop') center/cover no-repeat;
    filter: brightness(0.18) saturate(0.6);
    transform: scale(1.04);
    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(17, 16, 9, 0.96) 0%,
            rgba(17, 16, 9, 0.7) 45%,
            rgba(46, 94, 58, 0.15) 100%);
}

.hero-line-deco {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--kunyit), transparent);
}

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

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--kunyit);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.8s 0.2s both;
}

.hero-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--kunyit);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--krem);
    margin-bottom: 0.3rem;
    animation: fadeUp 0.8s 0.4s both;
}

.hero-title em {
    font-style: normal;
    color: var(--kunyit);
    display: block;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(245, 237, 214, 0.6);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.7;
    margin-top: 1.4rem;
    margin-bottom: 2.4rem;
    animation: fadeUp 0.8s 0.6s both;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.8s both;
}

.btn-primary-gold {
    background: var(--kunyit);
    color: var(--hitam);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary-gold:hover {
    background: var(--kunyit-light);
    color: var(--hitam);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 160, 23, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--krem);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.83rem 2rem;
    border: 1px solid rgba(245, 237, 214, 0.35);
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    border-color: var(--kunyit);
    color: var(--kunyit);
}

.hero-stats {
    position: absolute;
    right: 0;
    bottom: 60px;
    display: flex;
    gap: 2px;
    animation: fadeLeft 0.9s 1s both;
}

.stat-box {
    background: rgba(26, 24, 16, 0.88);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 1.2rem 1.6rem;
    text-align: center;
    backdrop-filter: blur(8px);
}

.stat-box:first-child {
    border-left: 3px solid var(--kunyit);
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--kunyit);
    line-height: 1;
}

.stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 237, 214, 0.5);
    margin-top: 4px;
}

/* ══════════════════════════════
SECTION SHARED
══════════════════════════════ */
section {
    padding: 6rem 0;
}

.section-tag {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--kunyit);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--kunyit);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.9rem);
    font-weight: 700;
    color: var(--krem);
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: var(--kunyit);
}

.divider-gold {
    width: 48px;
    height: 2px;
    background: var(--kunyit);
    margin: 1.2rem 0;
}

/* ══════════════════════════════
ABOUT / LAYANAN SECTION
══════════════════════════════ */
.bg-section-dark {
    background: var(--hitam);
}

.bg-section-darker {
    background: var(--hitam-dof);
}

.about-img-wrap {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: saturate(0.75);
    transition: filter 0.4s;
}

.about-img-wrap:hover img {
    filter: saturate(1);
}

.about-img-badge {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--kunyit);
    color: var(--hitam);
    padding: 1rem 1.4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
}

.about-img-line {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    pointer-events: none;
}

.about-text p {
    color: rgba(245, 237, 214, 0.65);
    line-height: 1.85;
    font-size: 0.94rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1rem;
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kunyit);
    font-size: 0.95rem;
    border-radius: 2px;
}

.about-feature-text strong {
    color: var(--krem);
    font-size: 0.88rem;
    display: block;
    margin-bottom: 2px;
}

.about-feature-text span {
    color: rgba(245, 237, 214, 0.5);
    font-size: 0.8rem;
}

/* ══════════════════════════════
LAYANAN CARDS
══════════════════════════════ */
.service-card {
    background: var(--hitam-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 3px;
    padding: 2rem 1.6rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kunyit), var(--hijau));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.service-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kunyit);
    font-size: 1.35rem;
    border-radius: 2px;
    margin-bottom: 1.2rem;
}

.service-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--krem);
    margin-bottom: 0.7rem;
}

.service-card p {
    color: rgba(245, 237, 214, 0.55);
    font-size: 0.84rem;
    line-height: 1.75;
    margin-bottom: 1.2rem;
}

.service-link {
    color: var(--kunyit);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 12px;
    color: var(--kunyit-light);
}

.service-num {
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: rgba(212, 160, 23, 0.05);
    line-height: 1;
    pointer-events: none;
}

/* ══════════════════════════════
TEAM / PROFIL
══════════════════════════════ */
.team-section {
    background: var(--hitam);
}

.team-card {
    background: var(--hitam-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 160, 23, 0.3);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
}

.team-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(30%) saturate(0.8);
    transition: all 0.5s;
}

.team-card:hover .team-img-wrap img {
    filter: grayscale(0%) saturate(1);
    transform: scale(1.04);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 16, 9, 0.95) 0%, transparent 60%);
}

.team-socials {
    position: absolute;
    bottom: 14px;
    left: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s;
}

.team-card:hover .team-socials {
    opacity: 1;
    transform: translateY(0);
}

.team-socials a {
    width: 30px;
    height: 30px;
    background: rgba(212, 160, 23, 0.9);
    color: var(--hitam);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s;
}

.team-socials a:hover {
    background: var(--kunyit-light);
}

.team-info {
    padding: 1.3rem 1.4rem;
}

.team-info h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--krem);
    margin-bottom: 3px;
}

.team-info span {
    font-size: 0.76rem;
    color: var(--kunyit);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-info p {
    font-size: 0.82rem;
    color: rgba(245, 237, 214, 0.5);
    margin-top: 0.6rem;
    line-height: 1.6;
}

/* ══════════════════════════════
PROSES / TIMELINE
══════════════════════════════ */
.process-section {
    background: var(--hitam-dof);
}

.process-step {
    display: flex;
    gap: 1.4rem;
    margin-bottom: 2.2rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 48px;
    bottom: -22px;
    width: 1px;
    background: rgba(212, 160, 23, 0.2);
}

.step-num-wrap {
    min-width: 46px;
}

.step-num {
    width: 46px;
    height: 46px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.15rem;
    color: var(--kunyit);
    border-radius: 50%;
}

.step-body h6 {
    font-family: 'Playfair Display', serif;
    color: var(--krem);
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
}

.step-body p {
    color: rgba(245, 237, 214, 0.52);
    font-size: 0.83rem;
    line-height: 1.7;
}

.process-img {
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.process-img img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.7);
}

.process-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(17, 16, 9, 0.8));
}

.process-img-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem;
    border-top: 2px solid var(--kunyit);
}

.process-img-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.08rem;
    font-style: italic;
    color: var(--krem);
    line-height: 1.5;
}

.process-img-quote cite {
    display: block;
    font-style: normal;
    font-size: 0.72rem;
    color: var(--kunyit);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ══════════════════════════════
TESTIMONIALS
══════════════════════════════ */
.testi-section {
    background: var(--hitam);
}

.testi-card {
    background: var(--hitam-dof);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 3px;
    padding: 2rem;
    position: relative;
    height: 100%;
    transition: border-color 0.3s;
}

.testi-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
}

.testi-card::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: rgba(212, 160, 23, 0.12);
    position: absolute;
    top: 8px;
    left: 18px;
    line-height: 1;
}

.testi-stars {
    color: var(--kunyit);
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.testi-text {
    color: rgba(245, 237, 214, 0.65);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 160, 23, 0.35);
}

.testi-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--krem);
    line-height: 1.2;
}

.testi-case {
    font-size: 0.74rem;
    color: var(--kunyit);
    letter-spacing: 0.06em;
}

/* ══════════════════════════════
GALERI / DOKUMENTASI
══════════════════════════════ */
.gallery-section {
    background: var(--hitam-dof);
}

/* Filter tabs (reuse blog-filter style) */
.gallery-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.8rem;
}

/* Masonry-style grid using CSS columns */
.gallery-masonry {
    column-count: 3;
    column-gap: 10px;
}

@media (max-width: 991px) {
    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 600px) {
    .gallery-masonry {
        column-count: 2;
    }
}

.gallery-item {
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    margin-bottom: 10px;
    display: block;
    cursor: zoom-in;
    border: 1px solid rgba(212, 160, 23, 0.06);
    transition: border-color 0.3s;
}

.gallery-item:hover {
    border-color: rgba(212, 160, 23, 0.35);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.6) brightness(0.82);
    transition: filter 0.45s ease, transform 0.5s ease;
}

.gallery-item:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.04);
}

/* Hover overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(17, 16, 9, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.35s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 44px;
    height: 44px;
    background: var(--kunyit);
    color: var(--hitam);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    border-radius: 50%;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay-icon {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay-caption {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--krem);
    line-height: 1.3;
}

.gallery-overlay-cat {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kunyit);
    margin-bottom: 3px;
}

/* Counter badge */
.gallery-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    color: var(--kunyit);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* "Lihat semua" row */
.gallery-load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 2.5rem;
}

.gallery-load-more::before,
.gallery-load-more::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 160, 23, 0.12);
}

/* ══════════════════════════════
CTA BANNER
══════════════════════════════ */
.cta-section {
    background: var(--hitam);
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--kunyit-dark) 0%, var(--kunyit) 50%, var(--kunyit-light) 100%);
    border-radius: 4px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -100px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--hitam);
    font-weight: 900;
    line-height: 1.15;
}

.cta-box p {
    color: rgba(17, 16, 9, 0.7);
    font-size: 0.95rem;
    max-width: 420px;
}

.btn-cta-dark {
    background: var(--hitam);
    color: var(--kunyit);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.btn-cta-dark:hover {
    background: var(--hitam-card);
    color: var(--kunyit-light);
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: var(--hitam);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.88rem 2rem;
    border: 2px solid rgba(17, 16, 9, 0.35);
    border-radius: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.btn-cta-outline:hover {
    border-color: var(--hitam);
    color: var(--hitam);
}

/* ══════════════════════════════
FAQ
══════════════════════════════ */
.faq-section {
    background: var(--hitam-dof);
}

.faq-item {
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    color: var(--krem);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--kunyit);
}

.faq-question.active {
    color: var(--kunyit);
}

.faq-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kunyit);
    font-size: 0.9rem;
    border-radius: 50%;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1.2rem 0;
    color: rgba(245, 237, 214, 0.58);
    font-size: 0.88rem;
    line-height: 1.8;
}

.faq-answer.open {
    display: block;
}

/* ══════════════════════════════
KONTAK
══════════════════════════════ */
.contact-section {
    background: var(--hitam);
}

.contact-form-wrap {
    background: var(--hitam-card);
    border: 1px solid rgba(212, 160, 23, 0.12);
    border-radius: 3px;
    padding: 2.5rem;
}

.form-label-custom {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 237, 214, 0.55);
    margin-bottom: 0.45rem;
}

.form-control-custom {
    background: rgba(17, 16, 9, 0.7);
    border: 1px solid rgba(212, 160, 23, 0.18);
    color: var(--krem);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--kunyit);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.12);
    background: rgba(17, 16, 9, 0.85);
    color: var(--krem);
}

.form-control-custom::placeholder {
    color: rgba(245, 237, 214, 0.25);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 1.6rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kunyit);
    font-size: 1rem;
    border-radius: 2px;
}

.contact-info-label {
    font-size: 0.72rem;
    color: var(--kunyit);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-info-value {
    color: var(--krem);
    font-size: 0.9rem;
}

/* ══════════════════════════════
FOOTER
══════════════════════════════ */
.footer {
    background: var(--hitam);
    border-top: 1px solid rgba(212, 160, 23, 0.12);
    padding: 3.5rem 0 1.5rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--kunyit);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-logo span {
    color: var(--krem);
}

.footer p {
    font-size: 0.83rem;
    color: rgba(245, 237, 214, 0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kunyit);
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(245, 237, 214, 0.5);
    font-size: 0.84rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--kunyit);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 160, 23, 0.08);
    margin-top: 3rem;
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.76rem;
    color: rgba(245, 237, 214, 0.3);
    max-width: none;
}

.footer-social a {
    color: rgba(245, 237, 214, 0.35);
    font-size: 1rem;
    margin-left: 14px;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--kunyit);
}

/* ══════════════════════════════
GREEN ACCENT ELEMENTS
══════════════════════════════ */
.tag-hijau {
    background: rgba(46, 94, 58, 0.25);
    border: 1px solid rgba(61, 122, 77, 0.4);
    color: #7EC898;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.stat-box-hijau {
    border-left: 3px solid var(--hijau) !important;
}

.step-num.hijau {
    background: rgba(46, 94, 58, 0.12);
    border-color: rgba(61, 122, 77, 0.35);
    color: #7EC898;
}

/* ══════════════════════════════
ANIMATIONS
══════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2.5s infinite;
}

.wa-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 36px rgba(37, 211, 102, 0.65);
    }
}

/* ══════════════════════════════
BLOG SECTION
══════════════════════════════ */
.blog-section {
    background: var(--hitam);
}

/* Featured post — big left card */
.blog-featured {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}

.blog-featured img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.65);
    transition: filter 0.5s, transform 0.6s;
}

.blog-featured:hover img {
    filter: brightness(0.65) saturate(0.9);
    transform: scale(1.04);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 16, 9, 0.96) 0%, rgba(17, 16, 9, 0.45) 55%, transparent 100%);
}

.blog-featured-body {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.blog-cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.blog-cat-kunyit {
    background: rgba(212, 160, 23, 0.2);
    border: 1px solid rgba(212, 160, 23, 0.45);
    color: var(--kunyit);
}

.blog-cat-hijau {
    background: rgba(46, 94, 58, 0.25);
    border: 1px solid rgba(61, 122, 77, 0.45);
    color: #7EC898;
}

.blog-featured-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    font-weight: 700;
    color: var(--krem);
    line-height: 1.25;
    margin-bottom: 0.7rem;
}

.blog-featured-body p {
    font-size: 0.84rem;
    color: rgba(245, 237, 214, 0.6);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.blog-meta-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(212, 160, 23, 0.3);
}

.blog-meta-author {
    font-size: 0.76rem;
    color: rgba(245, 237, 214, 0.55);
}

.blog-meta-author strong {
    color: var(--krem);
    font-weight: 500;
    display: block;
    font-size: 0.78rem;
}

.blog-meta-dot {
    width: 3px;
    height: 3px;
    background: rgba(245, 237, 214, 0.3);
    border-radius: 50%;
}

.blog-meta-date {
    font-size: 0.73rem;
    color: rgba(245, 237, 214, 0.4);
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--kunyit);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: gap 0.2s;
}

.blog-read-link:hover {
    gap: 12px;
    color: var(--kunyit-light);
}

/* Small blog cards — right column stack */
.blog-card-sm {
    background: var(--hitam-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    gap: 0;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.blog-card-sm:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateX(4px);
    box-shadow: 4px 0 0 0 var(--kunyit);
}

.blog-card-sm-img {
    width: 110px;
    min-width: 110px;
    overflow: hidden;
}

.blog-card-sm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.6);
    transition: filter 0.4s, transform 0.4s;
}

.blog-card-sm:hover .blog-card-sm-img img {
    filter: saturate(1);
    transform: scale(1.07);
}

.blog-card-sm-body {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.blog-card-sm-body h6 {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--krem);
    line-height: 1.35;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.blog-card-sm:hover h6 {
    color: var(--kunyit);
}

.blog-card-sm-body p {
    font-size: 0.78rem;
    color: rgba(245, 237, 214, 0.48);
    line-height: 1.6;
    margin-bottom: 0.7rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-sm-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read-time {
    font-size: 0.68rem;
    color: rgba(245, 237, 214, 0.35);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Bottom row — medium cards */
.blog-card-md {
    background: var(--hitam-card);
    border: 1px solid rgba(212, 160, 23, 0.1);
    border-radius: 3px;
    overflow: hidden;
    height: 100%;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.blog-card-md:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.blog-card-md::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--kunyit), var(--hijau));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

.blog-card-md:hover::after {
    transform: scaleX(1);
}

.blog-card-md-img {
    overflow: hidden;
    height: 190px;
}

.blog-card-md-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.65) brightness(0.88);
    transition: filter 0.4s, transform 0.5s;
}

.blog-card-md:hover .blog-card-md-img img {
    filter: saturate(1) brightness(1);
    transform: scale(1.06);
}

.blog-card-md-body {
    padding: 1.3rem 1.4rem 1.4rem;
}

.blog-card-md-body h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--krem);
    line-height: 1.35;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.blog-card-md:hover h5 {
    color: var(--kunyit);
}

.blog-card-md-body p {
    font-size: 0.81rem;
    color: rgba(245, 237, 214, 0.5);
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog filter tabs */
.blog-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.blog-filter-btn {
    background: rgba(212, 160, 23, 0.07);
    border: 1px solid rgba(212, 160, 23, 0.18);
    color: rgba(245, 237, 214, 0.55);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: var(--kunyit);
    border-color: var(--kunyit);
    color: var(--hitam);
}

/* Newsletter strip */
.blog-newsletter {
    background: var(--hitam-card);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-left: 3px solid var(--kunyit);
    border-radius: 3px;
    padding: 1.5rem 2rem;
    margin-top: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.blog-newsletter h6 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--krem);
    margin-bottom: 3px;
}

.blog-newsletter p {
    font-size: 0.8rem;
    color: rgba(245, 237, 214, 0.45);
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    flex: 1;
    max-width: 380px;
}

.newsletter-input-group input {
    flex: 1;
    background: rgba(17, 16, 9, 0.8);
    border: 1px solid rgba(212, 160, 23, 0.22);
    border-right: none;
    color: var(--krem);
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    border-radius: 2px 0 0 2px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input-group input:focus {
    border-color: var(--kunyit);
}

.newsletter-input-group input::placeholder {
    color: rgba(245, 237, 214, 0.25);
}

.newsletter-input-group button {
    background: var(--kunyit);
    color: var(--hitam);
    border: none;
    padding: 0.65rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.newsletter-input-group button:hover {
    background: var(--kunyit-light);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero-stats {
        position: static;
        margin-top: 2.5rem;
        flex-wrap: wrap;
    }

    .cta-box {
        padding: 2rem;
    }
}

/* ── SLICK BLOG ── */
#blog-slider .blog-card-md {
    margin: 0 8px;
}

#blog-slider .slick-dots li.slick-active button:before {
    color: var(--kunyit);
}

#blog-slider .slick-prev:before,
#blog-slider .slick-next:before {
    color: var(--kunyit);
}

/* ── SLICK TESTIMONI ── */
#testi-slider .testi-card {
    margin: 0 8px;
}

#testi-slider .slick-dots li.slick-active button:before {
    color: var(--kunyit);
}

#testi-slider .slick-prev:before,
#testi-slider .slick-next:before {
    color: var(--kunyit);
}