/* ==========================================================================
   Dwi Prass Auto - Main Stylesheet
   Automotive Blue & Orange Theme
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #07112a;
    --bg-dark2: #0c1d3e;
    --bg-section: #f2f5fa;
    --bg-card: #ffffff;

    --color-blue: #064e8e;
    --color-blue-dark: #03254c;
    --color-blue-mid: #1565c0;
    --color-blue-light: #2b80f0;
    --color-orange: #F16522;
    --color-orange-dk: #d4531a;

    /* legacy aliases so other code doesn't break */
    --color-terracotta: #064e8e;
    --color-terracotta-dark: #03254c;
    --color-terracotta-light: #1565c0;
    --bg-cream: #f2f5fa;
    --bg-cream-light: #eef1f8;
    --bg-cream-warm: #e8edf6;
    --bg-cream-card: #ffffff;
    --color-charcoal: #0d1b36;
    --color-text-body: #2c3e5a;
    --color-text-muted: #5a6a80;
    --color-gold: #F16522;
    --color-dot-inactive: #b0bdd0;

    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 4px 14px rgba(6, 78, 142, 0.08);
    --shadow-md: 0 8px 24px rgba(6, 78, 142, 0.14);
    --shadow-lg: 0 16px 40px rgba(6, 78, 142, 0.18);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   DPA Hero Section - Persis Referensi
   White background, blue diagonal strips center, car image right, dark bar bottom
   ========================================================================== */

/* ==========================================================================
   DPA Hero V3 - Full Height Exact Reference
   ========================================================================== */
.dpa-hero-v3 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    padding-top: 80px;
    /* Space for fixed header */
}

/* Base background with overlay */
.dpa-v3-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.dpa-v3-overlay {
    position: absolute;
    inset: 0;
    /* Electric vibrant blue on left fading to deep royal blue on right */
    background: linear-gradient(120deg, rgba(0, 120, 235, 0.42) 0%, rgba(10, 65, 175, 0.58) 45%, rgba(3, 20, 75, 0.78) 100%);
}

/* Diagonal shapes - distinct slants and multi-layered translucency */
.dpa-v3-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.dpa-shape-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 1. Main Right-Side Deep Royal Blue Wedge */
.dpa-shape-base-right {
    background: linear-gradient(140deg, rgba(6, 42, 125, 0.75) 0%, rgba(2, 18, 65, 0.88) 100%);
    clip-path: polygon(56% 0, 100% 0, 100% 100%, 33% 100%);
}

/* 2. Bright Translucent Diagonal Beam */
.dpa-shape-beam-main {
    background: linear-gradient(135deg, rgba(30, 140, 255, 0.38) 0%, rgba(10, 80, 210, 0.48) 100%);
    clip-path: polygon(48% 0, 68% 0, 48% 100%, 28% 100%);
    mix-blend-mode: screen;
}

/* 3. Luminous Sharp Glass Edge */
.dpa-shape-beam-glow {
    background: linear-gradient(180deg, rgba(160, 225, 255, 0.5) 0%, rgba(40, 150, 255, 0.25) 100%);
    clip-path: polygon(47.5% 0, 50% 0, 29.5% 100%, 27% 100%);
    mix-blend-mode: screen;
}

/* 4. Top-Right Corner Wedge (Steeper Angle!) */
.dpa-shape-top-wedge {
    background: linear-gradient(165deg, rgba(2, 14, 50, 0.85) 0%, rgba(5, 35, 105, 0.65) 100%);
    clip-path: polygon(74% 0, 100% 0, 100% 62%);
}

/* 5. Rear Dark Wedge (Different Angular Cut Behind Car) */
.dpa-shape-rear-dark {
    background: linear-gradient(135deg, rgba(1, 10, 40, 0.8) 0%, rgba(4, 25, 80, 0.6) 100%);
    clip-path: polygon(82% 25%, 100% 45%, 100% 100%, 62% 100%);
}

/* 6. Road Perspective Light Streak */
.dpa-shape-road-lines {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(120, 190, 255, 0.2) 100%);
    clip-path: polygon(46% 54%, 50% 54%, 24% 100%, 18% 100%);
    mix-blend-mode: overlay;
}


/* ==========================================================================
   AUTOMOTIVE SECTION STYLES
   ========================================================================== */

/* --- Global heading overrides for automotive look --- */
h1,
h2,
h3,
.auto-heading,
.v3-main-title,
section-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.auto-p,
.v3-sub-title,
.v3-price-label,
.auto-subtext,
p {
    font-family: var(--font-body);
}

.auto-tag,
.section-tag,
.v3-special-offer {
    font-family: var(--font-sub);
    font-weight: 700;
    letter-spacing: 2px;
}

/* ==========================================================================
   LIGHTWEIGHT STAGGERED SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/* Base hidden state — cannot be clobbered by later component transitions */
.dpa-reveal,
.dpa-reveal-left,
.dpa-reveal-right,
.dpa-reveal-scale {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dpa-reveal {
    transform: translateY(45px);
}

.dpa-reveal-left {
    transform: translateX(-55px);
}

.dpa-reveal-right {
    transform: translateX(55px);
}

.dpa-reveal-scale {
    transform: scale(0.88);
}

/* Active Reveal State — triggered when element enters viewport */
.dpa-reveal.dpa-is-revealed,
.dpa-reveal-left.dpa-is-revealed,
.dpa-reveal-right.dpa-is-revealed,
.dpa-reveal-scale.dpa-is-revealed,
.dpa-is-revealed {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Staggered Delay for grid items */
.dpa-is-revealed.dpa-delay-1 {
    transition-delay: 0.1s !important;
}

.dpa-is-revealed.dpa-delay-2 {
    transition-delay: 0.2s !important;
}

.dpa-is-revealed.dpa-delay-3 {
    transition-delay: 0.3s !important;
}

.dpa-is-revealed.dpa-delay-4 {
    transition-delay: 0.4s !important;
}

.dpa-is-revealed.dpa-delay-5 {
    transition-delay: 0.5s !important;
}

.dpa-is-revealed.dpa-delay-6 {
    transition-delay: 0.6s !important;
}

/* Hero Entrance Animations (triggered on page load, not scroll) */
@keyframes dpaFadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dpaFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dpaFadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.dpa-hero-v3 .v3-special-offer {
    animation: dpaFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.dpa-hero-v3 .v3-main-title {
    animation: dpaFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.dpa-hero-v3 .v3-sub-title {
    animation: dpaFadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.dpa-hero-v3 .v3-cta-wrap {
    animation: dpaFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.dpa-hero-v3 .dpa-v3-content-right {
    animation: dpaFadeInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.dpa-hero-v3 .dpa-v3-bottom-stats {
    animation: dpaFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

/* --- Section global --- */
.galih-section,
.auto-services-section {
    padding: 5rem 0;
}

/* --- ABOUT SECTION --- */
.about-section {
    background: #fff;
}

.auto-split-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.auto-img-col {
    flex: 0 0 44%;
    min-width: 0;
}

.auto-text-col {
    flex: 1;
    min-width: 0;
}

.auto-img-wrapper {
    position: relative;
}

.about-slider-wrapper {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 100%;
    overflow: hidden;
}

.about-swiper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    /* Constrain height so slides don't expand parent */
    max-width: 100%;
}

.about-swiper .swiper-wrapper {
    align-items: stretch;
}

.about-swiper .swiper-slide {
    overflow: hidden;
    width: 100% !important;
    flex-shrink: 0;
    /* Fixed aspect ratio container */
    aspect-ratio: 4 / 3;
    position: relative;
}

.about-swiper .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-swiper-pagination {
    bottom: 14px !important;
    text-align: center;
    z-index: 5;
}

.about-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.65);
    opacity: 1;
    width: 8px;
    height: 8px;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.about-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 4px;
}

.auto-about-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.auto-img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-blue);
    color: #fff;
    padding: 1rem 1.4rem;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.badge-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.badge-txt {
    display: block;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.85;
}

.auto-text-col {
    flex: 1;
}

.auto-tag {
    display: inline-block;
    background: rgba(6, 78, 142, 0.1);
    color: var(--color-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.auto-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: var(--color-charcoal);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
}

.auto-heading.white {
    color: #fff;
}

.auto-accent-bar {
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
    border-radius: 2px;
    margin-bottom: 1.4rem;
}

.auto-p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.auto-subtext {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.auto-subtext.white {
    color: rgba(255, 255, 255, 0.75);
}

.auto-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-blue);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 1rem;
    box-shadow: 0 6px 20px rgba(6, 78, 142, 0.3);
    transition: var(--transition);
}

.auto-btn-primary:hover {
    background: var(--color-blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(6, 78, 142, 0.35);
}

/* ==========================================================================
   SERVICES SECTION — Clean Photo Card Design
   ========================================================================== */
.dpa-services-clean-section {
    padding: 5.5rem 0 6rem;
    background: #f8fafc;
}

.dpa-services-clean-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.dpa-svc-tag {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-blue);
    background: rgba(6, 78, 142, 0.08);
    border: 1px solid rgba(6, 78, 142, 0.18);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.dpa-svc-main-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    margin: 0 0 0.8rem;
    line-height: 1.2;
}

.dpa-svc-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid: 4 kolom desktop, 2 tablet, 1 mobile */
.dpa-services-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Individual Card */
.dpa-svc-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(6, 78, 142, 0.07);
    border: 1px solid rgba(6, 78, 142, 0.06);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.dpa-svc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(6, 78, 142, 0.14);
}

/* Photo Area */
.dpa-svc-card-img {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.dpa-svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dpa-svc-card:hover .dpa-svc-card-img img {
    transform: scale(1.06);
}

/* Subtle dark overlay at bottom of photo */
.dpa-svc-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(3, 37, 76, 0.5) 100%);
    pointer-events: none;
}

/* Badge Number on photo */
.dpa-svc-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #ffffff;
    background: var(--color-orange);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    line-height: 1;
}

/* Card Body */
.dpa-svc-card-body {
    padding: 1.4rem 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Icon chip */
.dpa-svc-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.9rem;
    flex-shrink: 0;
}

.dpa-svc-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-blue-dark);
    margin: 0 0 0.55rem;
    line-height: 1.3;
}

.dpa-svc-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0 0 1.1rem;
    flex: 1;
}

.dpa-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-orange);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}

.dpa-svc-link:hover {
    gap: 0.75rem;
    color: var(--color-orange-dk);
}

/* Responsive */
@media (max-width: 1100px) {
    .dpa-services-clean-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dpa-services-clean-grid {
        grid-template-columns: 1fr;
    }

    .dpa-svc-main-title {
        font-size: 1.8rem;
    }
}



/* === KEUNGGULAN SECTION === */
.auto-unggulan-section {
    padding: 5rem 0;
    background: #f4f7fb;
}

.auto-unggulan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.auto-unggulan-card {
    display: flex;
    align-items: flex-start;
    gap: 1.4rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    box-shadow: 0 4px 20px rgba(6, 78, 142, 0.07);
    border-left: 4px solid var(--color-blue);
    transition: var(--transition);
}

.auto-unggulan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(6, 78, 142, 0.13);
    border-left-color: var(--color-orange);
}

.aug-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-blue), var(--color-blue-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 6px 16px rgba(6, 78, 142, 0.25);
}

.auto-unggulan-card:hover .aug-icon-wrap {
    background: linear-gradient(135deg, var(--color-orange), var(--color-orange-dk));
}

.aug-body {
    flex: 1;
}

.aug-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-charcoal);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.aug-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .auto-unggulan-grid {
        grid-template-columns: 1fr;
    }

    .auto-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auto-split-layout {
        flex-direction: column;
        gap: 3rem;
    }

    .auto-img-col {
        flex: unset;
        width: 100%;
    }

    .auto-img-badge {
        bottom: -1rem;
        right: -0.5rem;
    }
}

@media (max-width: 576px) {
    .auto-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero content layout - aligned with header container */
.dpa-v3-container {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    flex: 1;
    gap: 2.5rem;
}

/* Left Content - widened for optimal readability & SEO copy */
.dpa-v3-content-left {
    flex: 0 0 50%;
    max-width: 50%;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.v3-special-offer {
    font-family: var(--font-sub);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    align-self: flex-start;
    box-shadow: none;
}

.v3-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 1rem 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.v3-sub-title {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.1vw, 1.02rem);
    font-weight: 400;
    line-height: 1.68;
    margin: 0 0 1.3rem 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 500px;
}

.v3-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), rgba(255, 255, 255, 0.4));
    border-radius: 2px;
    margin-bottom: 1.1rem;
}

.v3-price-label {
    font-family: var(--font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 1.6rem 0;
}

/* CTA Buttons */
.v3-cta-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.v3-btn-order {
    background: var(--color-orange);
    color: #fff;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-sub);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 24px rgba(241, 101, 34, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.v3-btn-order:hover {
    background: var(--color-orange-dk);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 12px 28px rgba(241, 101, 34, 0.5);
}

.v3-website {
    font-family: var(--font-sub);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    text-transform: uppercase;
}

.v3-website:hover {
    color: #fff;
}

/* Right Content (Car) - Slightly smaller & elevated */
.dpa-v3-content-right {
    flex: 0 0 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    overflow: visible;
}

.v3-car-img {
    width: 100%;
    max-width: 600px;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
    transition: transform 0.4s ease;
}

/* Bottom Stats Row & Social Bar */
.dpa-v3-bottom-stats {
    position: relative;
    z-index: 5;
    width: 100%;
    background: rgba(3, 15, 50, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem 0;
}

.v3-stat-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

/* Left: Social Media Wrap */
.v3-social-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.v3-social-label {
    font-family: var(--font-sub);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.v3-social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.v3-soc-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.v3-soc-btn:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(241, 101, 34, 0.4);
}

.v3-soc-btn.v3-soc-wa:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* Right: Stats Group */
.v3-stats-group {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.v3-stat-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-t1 {
    font-family: var(--font-sub);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.stat-t2 {
    font-size: 0.55rem;
    font-weight: 500;
    opacity: 0.65;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
}

.v3-stat-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* ==========================================================================
   KELUHAN KENDARAAN (HORIZONTAL MODE)
   ========================================================================== */
.auto-keluhan-section {
    padding: 5.5rem 0;
    background: #ffffff;
    position: relative;
}

.auto-keluhan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin-top: 3rem;
}

.auto-keluhan-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.8rem 1.4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.auto-keluhan-card:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(6, 78, 142, 0.12);
    border-color: rgba(6, 78, 142, 0.25);
}

.ak-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.ak-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: rgba(6, 78, 142, 0.18);
    line-height: 1;
    transition: var(--transition);
}

.auto-keluhan-card:hover .ak-number {
    color: var(--color-orange);
}

.ak-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(6, 78, 142, 0.08);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition);
}

.auto-keluhan-card:hover .ak-icon {
    background: var(--color-blue);
    color: #fff;
    transform: scale(1.05);
}

.ak-title {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--color-charcoal);
    margin: 0 0 0.6rem;
    line-height: 1.25;
}

.ak-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.ak-card-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-blue), var(--color-orange));
    transition: width 0.4s ease;
}

.auto-keluhan-card:hover .ak-card-bar {
    width: 100%;
}

@media (max-width: 1200px) {
    .auto-keluhan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Tablet Responsive */
@media (max-width: 992px) {
    .dpa-hero-v3 {
        padding-top: 70px;
    }

    .dpa-v3-container {
        flex-direction: column-reverse;
        padding: 2rem 1.5rem;
        align-items: flex-start;
        gap: 0;
    }

    .dpa-v3-content-left {
        flex: unset;
        max-width: 100%;
        width: 100%;
        padding-top: 1rem;
        padding-bottom: 2rem;
    }

    .dpa-v3-content-right {
        flex: unset;
        width: 100%;
        height: 220px;
        align-self: unset;
    }

    .v3-car-img {
        width: 90%;
        bottom: 0;
        transform: translateX(-50%);
    }

    .dpa-v3-bottom-stats {
        padding: 0.75rem 1rem;
    }

    /* 2 Columns on Mobile: Left Social Icons, Right Experience Stat */
    .v3-stat-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        width: 100%;
        text-align: left;
    }

    .v3-social-wrap {
        justify-content: flex-start;
        align-items: center;
        border-bottom: none;
        padding-bottom: 0;
        margin: 0;
        flex: 0 0 auto;
    }

    /* Hide text label on mobile, show only icons */
    .v3-social-label {
        display: none;
    }

    .v3-social-links {
        display: flex;
        align-items: center;
        gap: 0.35rem;
    }

    .v3-soc-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .v3-stats-group {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        margin: 0;
        gap: 0;
        text-align: left;
    }

    .v3-stat-sep,
    .v3-stat-item.v3-stat-hide-mobile {
        display: none !important;
    }

    .v3-stat-item.v3-stat-exp {
        display: flex !important;
        align-items: center;
        gap: 0.45rem;
        text-align: left;
        justify-content: flex-end;
    }

    .stat-num {
        font-size: 1.25rem;
        line-height: 1;
    }

    .stat-text {
        text-align: left;
    }

    .stat-t1 {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
        line-height: 1.15;
    }

    .stat-t2 {
        font-size: 0.46rem;
        letter-spacing: 0.2px;
        line-height: 1.15;
        margin-top: 1px;
    }

    .dpa-shape-base-right {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 0.6;
    }

    .dpa-shape-beam-main,
    .dpa-shape-beam-glow,
    .dpa-shape-top-wedge,
    .dpa-shape-rear-dark,
    .dpa-shape-road-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .auto-keluhan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .auto-keluhan-grid {
        grid-template-columns: 1fr;
    }
}


/* Reset & Global */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.galih-theme-body {
    background-color: var(--bg-cream);
    color: var(--color-text-body);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-4xl {
    max-width: 860px;
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.88rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary,
.btn-hero-primary {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
    box-shadow: 0 6px 18px rgba(166, 91, 71, 0.25);
}

.btn-primary:hover,
.btn-hero-primary:hover {
    background-color: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(166, 91, 71, 0.35);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.btn-hero-secondary:hover {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: scale(1.15);
}

.btn-full {
    width: 100%;
}

.btn-cta-main {
    background-color: #FFFFFF;
    color: var(--color-terracotta);
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-main:hover {
    background-color: var(--bg-cream-light);
    color: var(--color-terracotta-dark);
    transform: translateY(-3px);
}


/* ==========================================================================
   Header (Transparent Floating Header + WP Admin Bar Support)
   ========================================================================== */
.galih-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
    padding: 0.35rem 0 0.3rem;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, top 0.3s ease;
}

.galih-header.scrolled {
    position: fixed;
    background-color: #ffffff;
    padding: 0.8rem 0 0.7rem;
    box-shadow: 0 4px 20px rgba(6, 78, 142, 0.10);
}

/* Fix Header Overlap when WordPress Admin Bar is Active */
body.admin-bar .galih-header {
    top: 32px;
}

body.admin-bar .galih-header.scrolled {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .galih-header {
        top: 46px;
    }

    body.admin-bar .galih-header.scrolled {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    body.admin-bar .galih-header.scrolled {
        top: 0;
    }
}

.header-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: max-width 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

/* Make header span full width on homepage so logo is left and menu is right */
@media screen and (min-width: 993px) {
    body.home .galih-header:not(.scrolled) .header-container {
        max-width: 1240px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.brand-logo-area {
    display: flex;
    align-items: center;
    max-width: 220px;
    flex-shrink: 0;
}

.brand-logo-area img,
.custom-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.galih-brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.galih-header.scrolled .galih-brand-text {
    color: var(--color-terracotta);
    text-shadow: none;
}

/* ==========================================================================
   Header Style for Inner Pages (Non-Home)
   Uses the Hero Blue Accent Gradient
   ========================================================================== */
body:not(.home) .galih-header {
    position: sticky;
    top: 0;
    background: linear-gradient(120deg, rgb(0, 120, 235) 0%, rgb(10, 65, 175) 45%, rgb(3, 20, 75) 100%);
    box-shadow: 0 4px 20px rgba(6, 78, 142, 0.15);
}

body:not(.home) .galih-header.scrolled {
    background: linear-gradient(120deg, rgb(0, 120, 235) 0%, rgb(10, 65, 175) 45%, rgb(3, 20, 75) 100%);
}

body:not(.home) .galih-header.scrolled .galih-brand-text {
    color: #ffffff;
}

.desktop-nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Navigation Menu Items */
.nav-links-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links-list a,
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

/* When header is scrolled, nav links go dark (only on home page) */
.galih-header.scrolled .nav-links-list a,
.galih-header.scrolled .nav-link {
    color: var(--color-charcoal);
}

/* Keep them white on inner pages */
body:not(.home) .galih-header.scrolled .nav-links-list a,
body:not(.home) .galih-header.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

body:not(.home) .galih-header.scrolled .nav-links-list a.active,
body:not(.home) .galih-header.scrolled .nav-link.active,
body:not(.home) .galih-header.scrolled .nav-links-list a:hover {
    color: #ffffff;
}

.nav-links-list a.active,
.nav-link.active,
.nav-links-list a:hover {
    color: var(--color-terracotta);
}

.nav-links-list a.active::after,
.nav-link.active::after,
.nav-links-list a:hover::after {
    display: none;
}

/* On Scroll: Hide menu background, border, and shadow so it blends seamlessly into header */
.galih-header.scrolled .nav-links-list {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.galih-header.scrolled .nav-links-list a,
.galih-header.scrolled .nav-link {
    padding: 0.5rem 1.1rem;
}

/* Hide Hamburger Menu Button on Desktop by default */
.menu-hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--color-charcoal);
    cursor: pointer;
    padding: 4px;
    align-items: center;
}

/* White hamburger for inner pages since background is blue */
body:not(.home) .menu-hamburger-btn {
    color: #ffffff;
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.75);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background-color: var(--bg-cream);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-charcoal);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-menu-wrapper {
    overflow-y: auto;
    max-height: calc(100vh - 180px);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.mobile-menu-links li {
    list-style: none;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-charcoal);
    display: inline-block;
    transition: color 0.25s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links .current-menu-item>a {
    color: var(--color-terracotta);
}

.mobile-menu-links .sub-menu {
    padding-left: 1rem;
    margin-top: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    list-style: none;
    border-left: 2px solid rgba(166, 91, 71, 0.25);
}

.mobile-menu-links .sub-menu a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-body);
}


/* ==========================================================================
   Hero Section (Split Layout)
   ========================================================================== */
.galih-hero-section.full-bg-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 55% 45%;
    background-color: #F8F6F0;
    /* Light cream from reference */
}

@media screen and (max-width: 992px) {
    .galih-hero-section.full-bg-hero {
        display: flex;
        flex-direction: column;
        height: auto;
    }
}

.hero-left-pane {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 8rem;
    padding-bottom: 5rem;
    padding-left: max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem));
    padding-right: 4rem;
}

@media screen and (max-width: 992px) {
    .hero-left-pane {
        display: contents;
    }

    .hero-text-content {
        order: 1;
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
        max-width: 100%;
        text-align: center;
    }
}

.hero-text-content {
    max-width: 580px;
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111111;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

@media screen and (max-width: 768px) {
    .hero-main-title {
        font-size: 3rem;
    }
}

.hero-description-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    max-width: 500px;
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.hero-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .hero-buttons-wrapper {
        justify-content: center;
        margin-bottom: 1rem;
        gap: 0.8rem;
    }
}

.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #dcb494;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: max(1.5rem, calc((100vw - 1240px) / 2 + 1.5rem));
    padding-right: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 992px) {
    .hero-bottom-bar {
        order: 3;
        position: relative;
        width: 100%;
        margin: 0;
        padding: 1.5rem 2rem;
    }
}

.rating-info {
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons a {
    color: #ffffff;
    margin-left: 1.2rem;
    font-size: 1.1rem;
    opacity: 0.9;
    transition: var(--transition);
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.hero-right-pane {
    position: relative;
    z-index: 1;
    height: 100vh;
}

@media screen and (max-width: 992px) {
    .hero-right-pane {
        order: 2;
        height: 50vh;
        width: 100%;
    }
}

/* Background Image Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.15s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Hero Dots */
.hero-pagination-dots {
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot-btn.active {
    background-color: #ffffff;
    transform: scale(1.2);
}


/* ==========================================================================
   Section Global Components
   ========================================================================== */
.galih-section {
    padding: 6rem 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-terracotta);
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    padding: 0.35rem 1.1rem;
    background-color: rgba(166, 91, 71, 0.08);
    border: 1px solid rgba(166, 91, 71, 0.2);
    border-radius: 50px;
}

.section-tag.light-tag {
    color: var(--color-gold) !important;
    background-color: rgba(212, 175, 55, 0.12) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-charcoal);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtext {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--color-text-muted);
    max-width: 720px;
    margin: 0 auto 3.5rem;
    font-weight: 500;
    letter-spacing: -0.15px;
}


/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: #FFFFFF;
}

.about-modern-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-bottom: 2rem;
}

.about-image-col {
    width: 50%;
}

.about-img-modern {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.about-text-col {
    width: 50%;
}

.about-text-card {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.about-text-card .about-p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1.2rem;
}

@media (max-width: 992px) {
    .about-modern-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image-col,
    .about-text-col {
        width: 100%;
    }
}


/* ==========================================================================
   Services Section (8 Items Grid)
   ========================================================================== */
.services-section {
    background-color: #F8F6F0;
}

.services-header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-title-col {
    max-width: 500px;
}

.services-desc-col {
    max-width: 450px;
}

.services-desc-col .section-subtext {
    margin: 0;
}

.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card-modern {
    background-color: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    border-top: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service-card-modern:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border-top-color: var(--color-terracotta);
}

.service-card-modern .service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.service-card-modern .service-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.service-card-modern .service-icon-box {
    order: -1;
    margin-top: 0;
    margin-bottom: 1.5rem;
    background-color: transparent;
    color: var(--color-terracotta);
    font-size: 2rem;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Why Choose Us Section (6 Items)
   ========================================================================== */
.why-section {
    background-color: #FFFFFF;
}

.why-modern-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.why-sticky-col {
    width: 40%;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.why-list-col {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.why-list-item {
    position: relative;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(166, 91, 71, 0.2);
    display: flex;
    align-items: flex-start;
}

.why-list-item:first-child {
    padding-top: 0;
}

.why-num-bg {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(166, 91, 71, 0.15);
    line-height: 1;
    margin-right: 2rem;
    min-width: 60px;
}

.why-content {
    flex: 1;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.8rem;
}

.why-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-body);
}

@media (max-width: 992px) {
    .why-modern-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .why-sticky-col,
    .why-list-col {
        width: 100%;
    }

    .why-sticky-col {
        position: relative;
        top: 0;
    }
}


/* ==========================================================================
   Process Section (5 Steps)
   ========================================================================== */
.process-section {
    background-color: #F8F6F0;
}

.process-modern-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step-modern {
    position: relative;
    padding-right: 2rem;
}

.process-step-modern::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 0;
    width: 60%;
    height: 1px;
    background-color: rgba(166, 91, 71, 0.3);
}

.process-step-modern:last-child::after {
    display: none;
}

.step-num-modern {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-terracotta);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.8rem;
}

.step-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .process-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step-modern::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-modern-grid {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Gallery Section (Filter Tabs, Load More & Lightbox Modal)
   ========================================================================== */
.gallery-section {
    background-color: #FFFFFF;
}

.gallery-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.gallery-tab-btn-modern {
    background-color: transparent;
    color: var(--color-charcoal);
    border: 1px solid rgba(166, 91, 71, 0.3);
    padding: 0.75rem 2.2rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab-btn-modern:hover,
.gallery-tab-btn-modern.active {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
}

.gallery-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item-modern {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.gallery-item-modern.hidden-by-filter,
.gallery-item-modern.hidden-by-loadmore {
    display: none !important;
}

.gallery-thumb-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item-modern:hover .gallery-thumb-modern {
    transform: scale(1.05);
}

.gallery-overlay-modern {
    position: absolute;
    inset: 0;
    background: rgba(166, 91, 71, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item-modern:hover .gallery-overlay-modern {
    opacity: 1;
}

.gallery-icon-modern {
    width: 60px;
    height: 60px;
    background-color: #FFFFFF;
    color: var(--color-terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item-modern:hover .gallery-icon-modern {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .gallery-item-modern {
        height: 200px;
    }
}

/* Always show play icon badge overlay for Video Cards by default */
.gallery-item-card[data-category="video"] .gallery-overlay-caption {
    opacity: 1 !important;
    background: rgba(26, 26, 26, 0.25);
}

.gallery-item-card[data-category="video"] .gallery-zoom-btn {
    transform: scale(1) !important;
    box-shadow: 0 8px 25px rgba(166, 91, 71, 0.5);
}

.gallery-item-card[data-category="video"]:hover .gallery-overlay-caption {
    background: rgba(26, 26, 26, 0.5) !important;
}

.gallery-item-card[data-category="video"]:hover .gallery-zoom-btn {
    transform: scale(1.12) !important;
    background-color: var(--color-terracotta-dark);
}

.gallery-zoom-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(166, 91, 71, 0.4);
    transform: scale(0.75);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease;
}

.gallery-item-card:hover .gallery-zoom-btn {
    transform: scale(1);
}

.gallery-item-card:hover .gallery-zoom-btn:hover {
    background-color: var(--color-terracotta-dark);
}

/* Gallery Lightbox Modal */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(15, 15, 15, 0.96);
}

.lightbox-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close-btn:hover {
    color: var(--color-terracotta-light);
    transform: scale(1.15);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(26, 26, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.lightbox-nav-btn:hover {
    background: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: #FFFFFF;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev-btn {
    left: -70px;
}

.lightbox-next-btn {
    right: -70px;
}

@media screen and (max-width: 1024px) {
    .lightbox-prev-btn {
        left: 12px;
    }

    .lightbox-next-btn {
        right: 12px;
    }
}

.lightbox-body {
    width: 100%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-color: #000000;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox-video {
    width: 100%;
    max-height: 75vh;
}

.lightbox-iframe {
    width: 100%;
    height: 480px;
    max-height: 75vh;
    border: none;
}

.lightbox-caption {
    margin-top: 1.2rem;
    color: var(--bg-cream-light);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
}


/* ==========================================================================
   Area Layanan Bali
   ========================================================================== */
.area-section {
    background-color: var(--bg-cream);
}

.area-box {
    background: #FFFFFF;
    color: var(--color-charcoal);
    padding: 3.8rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.light-heading {
    color: #FFFFFF !important;
}

.area-intro {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.area-tags-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 980px;
    margin: 0 auto 2.2rem;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--bg-cream-card);
    border: 1px solid rgba(166, 91, 71, 0.2);
    color: var(--color-charcoal);
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(20% - 0.75rem);
    min-width: 140px;
    text-align: center;
}

.area-tag i {
    color: var(--color-terracotta);
    font-size: 0.88rem;
}

.area-tag:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.area-footer-text {
    font-size: 0.95rem;
    color: var(--color-terracotta);
    font-weight: 500;
}


/* ==========================================================================
   FAQ Section Accordion
   ========================================================================== */
.faq-section {
    background-color: var(--bg-cream-light);
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-cream-card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(166, 91, 71, 0.14);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question-btn {
    width: 100%;
    padding: 1.4rem 1.8rem;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
}

.faq-icon {
    font-size: 0.95rem;
    color: var(--color-terracotta);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer-content {
    max-height: 300px;
    padding: 0 1.8rem 1.4rem;
}

.faq-answer-content p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-text-body);
}


/* ==========================================================================
   CTA Banner (With Background Image Sofa3)
   ========================================================================== */
.cta-bg-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5.5rem 2rem;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

.cta-banner-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-banner-desc {
    font-size: 1.15rem;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    color: #F5EFE6;
}


/* ==========================================================================
   Articles / Blog Section
   ========================================================================== */
.articles-section {
    background-color: var(--bg-cream);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.article-card {
    background-color: var(--bg-cream-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(166, 91, 71, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-terracotta);
}

.article-img-box {
    height: 220px;
    overflow: hidden;
}

.article-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-thumb {
    transform: scale(1.06);
}

.article-content {
    padding: 1.8rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-date {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 0.6rem;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.article-excerpt {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

.article-readmore {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-terracotta);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.article-readmore:hover {
    color: var(--color-terracotta-dark);
}


/* ==========================================================================
   Showroom 2 Column Section
   ========================================================================== */
.showroom-section {
    background-color: var(--bg-cream-light);
}

.showroom-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.showroom-card {
    background-color: var(--bg-cream-card);
    padding: 2.8rem 2.2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(166, 91, 71, 0.15);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.showroom-brand-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 0.3rem;
}

.showroom-tagline {
    font-size: 0.98rem;
    color: var(--color-terracotta);
    font-weight: 600;
    margin-bottom: 2rem;
}

.showroom-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 2.2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(166, 91, 71, 0.1);
    color: var(--color-terracotta);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    color: var(--color-charcoal);
    margin-bottom: 3px;
}

.detail-text p {
    font-size: 0.92rem;
    color: var(--color-text-body);
}

.showroom-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.showroom-map-col {
    height: 100%;
    min-height: 450px;
}

.showroom-map-frame {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(166, 91, 71, 0.15);
}


/* Luxury Custom HR & Divider Lines (Fade-to-Transparent Ends) */
hr,
.hr-divider,
.page-entry-content hr,
.entry-content hr {
    border: none !important;
    height: 3px !important;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(166, 91, 71, 0.4) 15%,
            rgba(166, 91, 71, 0.9) 50%,
            rgba(166, 91, 71, 0.4) 85%,
            transparent 100%) !important;
    margin: 2.8rem 0 !important;
    opacity: 1 !important;
}

hr::after,
.hr-divider::after,
.page-entry-content hr::after,
.entry-content hr::after {
    display: none !important;
}

/* ==========================================================================
   Inner Page Design System (Page, Single, Archive, Service, Contact, Profile)
   ========================================================================== */
.inner-page-banner {
    position: relative;
    background-color: var(--bg-cream);
    padding: 4rem 0 4rem;
    border-bottom: 1px solid rgba(166, 91, 71, 0.18);
    overflow: hidden;
}

.single-post-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6.5rem 0 9.5rem;
    border-bottom: none;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 17, 42, 0.75) 0%, rgba(7, 17, 42, 0.88) 100%);
    z-index: 1;
}

.single-post-banner .inner-breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.single-post-banner .inner-breadcrumb a {
    color: #ffffff;
    font-weight: 700;
}

.single-post-banner .inner-breadcrumb .current {
    color: var(--color-orange);
    font-weight: 800;
}

/* Light Soft Warm Overlay over sofa1.webp - Not Dark, Bright & Elegant */
.inner-page-banner::before {
    display: none;
}

.inner-page-banner .container {
    position: relative;
    z-index: 2;
}

.inner-page-banner .section-tag {
    color: var(--color-terracotta) !important;
}

.inner-banner-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-terracotta);
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.inner-banner-desc {
    font-size: 1.15rem;
    color: var(--color-text-body);
    max-width: 680px;
    margin: 0 auto 1.5rem;
    font-weight: 500;
}

.inner-banner-btn {
    margin-bottom: 1.8rem;
}

.inner-banner-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-terracotta);
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.inner-breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background-color: #FAF6F0;
    padding: 0.55rem 1.6rem;
    border-radius: 50px;
    border: 1px solid rgba(166, 91, 71, 0.22);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.08);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.inner-breadcrumb a {
    color: var(--color-terracotta);
}

.inner-breadcrumb a:hover {
    color: var(--color-terracotta-dark);
}

.inner-breadcrumb .current {
    color: var(--color-charcoal);
    font-weight: 700;
}

/* Differing Background for Inner Section & Overlapping Card Editorial Layout */
body.single {
    background-color: #f1f5f9;
}

.inner-content-section {
    background-color: var(--bg-cream);
    padding: 4.5rem 0 5.5rem;
}

.inner-content-section.overlapping-section {
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
    padding-top: 0;
}

/* Single post banner is taller, so increase the overlap */
.single-post-banner + .galih-section.overlapping-section,
.single-post-banner + .overlapping-section,
body.single .inner-content-section.overlapping-section,
.single-post-content.overlapping-section {
    margin-top: -6.5rem !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 10;
    background-color: transparent !important;
}

.overlapping-section .inner-article-main,
.overlapping-section .inner-content-card {
    background-color: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-top: 4px solid var(--color-blue);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 40px rgba(6, 78, 142, 0.08), 0 4px 14px rgba(0, 0, 0, 0.04);
}

/* Inner Content Layout & Cards */
.inner-content-card {
    background-color: var(--bg-cream-card);
    border: 1px solid rgba(166, 91, 71, 0.15);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   Table of Contents (Daftar Isi Artikel) Styling
   ========================================================================== */
details.post-toc-box,
.post-toc-box {
    background-color: var(--bg-cream-card) !important;
    border: 1px solid rgba(166, 91, 71, 0.22) !important;
    border-left: 4px solid var(--color-terracotta) !important;
    border-radius: var(--radius-md) !important;
    padding: 1.2rem 1.6rem !important;
    margin: 1.8rem 0 2.5rem 0 !important;
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.05) !important;
    transition: var(--transition) !important;
    box-sizing: border-box !important;
    max-width: 100% !important;
}

details.post-toc-box[open] {
    padding-bottom: 1.5rem !important;
    box-shadow: 0 10px 30px rgba(166, 91, 71, 0.1) !important;
}

details.post-toc-box summary.toc-title {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--color-charcoal) !important;
    cursor: pointer !important;
    list-style: none !important;
    user-select: none !important;
    outline: none !important;
    padding: 0.2rem 0 !important;
    border: none !important;
    background: none !important;
}

details.post-toc-box summary.toc-title::-webkit-details-marker,
details.post-toc-box summary.toc-title::marker {
    display: none !important;
}

.toc-title-left {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-charcoal);
}

.toc-title-left i {
    color: var(--color-terracotta);
    font-size: 1rem;
}

.toc-icon {
    color: var(--color-terracotta);
    font-size: 0.95rem;
    transition: transform 0.35s ease;
}

details.post-toc-box[open] summary.toc-title .toc-icon {
    transform: rotate(180deg);
}

.toc-content-wrapper {
    margin-top: 0.9rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(166, 91, 71, 0.2);
}

ul.toc-list {
    margin: 0 !important;
    padding-left: 0.4rem !important;
    list-style: none !important;
}

ul.toc-list li {
    position: relative;
    margin-bottom: 0.55rem !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
}

ul.toc-list li.toc-h2 {
    font-weight: 700;
    padding-left: 1.3rem;
}

ul.toc-list li.toc-h2::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--color-terracotta);
    font-size: 0.85rem;
}

ul.toc-list li.toc-h3 {
    font-weight: 500;
    padding-left: 2.2rem;
}

ul.toc-list li.toc-h3::before {
    content: '•';
    position: absolute;
    left: 1.4rem;
    color: var(--color-terracotta);
    font-weight: 800;
}

ul.toc-list li a {
    color: var(--color-text-body) !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

ul.toc-list li a:hover {
    color: var(--color-terracotta) !important;
    transform: translateX(4px) !important;
}

.table-of-contents,
.table-of-contents-box,
.toc-accordion,
.toc-box,
.toc,
#toc_container,
.ez-toc-container,
#ez-toc-container,
.ez-toc-v2_0.ez-toc-container,
.simple-toc,
.lwptoc,
.lwptoc_items,
.wp-block-table-of-contents,
.entry-toc {
    background-color: var(--bg-cream-card) !important;
    border: 1px solid rgba(166, 91, 71, 0.22) !important;
    border-left: 4px solid var(--color-terracotta) !important;
    border-radius: var(--radius-md) !important;
    padding: 1.5rem 1.8rem !important;
    margin: 2.2rem 0 !important;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.04) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.table-of-contents .toc-title,
.table-of-contents-box .toc-title,
.toc-title-wrapper,
.ez-toc-title-container,
#ez-toc-container p.ez-toc-title,
#toc_container p.toc_title,
.ez-toc-title,
.lwptoc_header,
.wp-block-table-of-contents__title {
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    font-family: var(--font-heading) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    color: var(--color-charcoal) !important;
    margin: 0 0 0.6rem 0 !important;
    padding-bottom: 0.6rem !important;
    border-bottom: 2px solid rgba(166, 91, 71, 0.18) !important;
    line-height: 1.3 !important;
}

.table-of-contents .toc-title::before,
.table-of-contents-box .toc-title::before,
.toc-title-wrapper::before,
#toc_container p.toc_title::before,
#ez-toc-container p.ez-toc-title::before,
.ez-toc-title::before {
    content: '\f0ca';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-terracotta);
    font-size: 0.95rem;
}

.table-of-contents ul,
.table-of-contents ol,
.toc-box ul,
.toc-box ol,
.toc-list,
#toc_container ul,
#toc_container ol,
#ez-toc-container ul,
#ez-toc-container ol,
.ez-toc-list,
.lwptoc_items ul,
.wp-block-table-of-contents-list {
    margin: 0.8rem 0 0 0 !important;
    padding-left: 1.2rem !important;
    list-style: none !important;
}

.table-of-contents li,
.toc-box li,
.toc-list li,
#toc_container li,
#ez-toc-container ul li,
.ez-toc-list li,
.lwptoc_item,
.wp-block-table-of-contents-list li {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
    position: relative !important;
}

.table-of-contents li a,
.toc-box li a,
.toc-list li a,
#toc_container li a,
#ez-toc-container ul li a,
.ez-toc-list li a,
.lwptoc_item a,
.wp-block-table-of-contents-list li a {
    color: var(--color-text-body) !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.table-of-contents li a:hover,
.toc-box li a:hover,
.toc-list li a:hover,
#toc_container li a:hover,
#ez-toc-container ul li a:hover,
.ez-toc-list li a:hover,
.lwptoc_item a:hover,
.wp-block-table-of-contents-list li a:hover {
    color: var(--color-terracotta) !important;
    transform: translateX(4px) !important;
}

/* Related Articles Block Styling */
.inner-related-posts-block {
    margin-top: 3.5rem;
    padding-top: 2.2rem;
    border-top: 1px dashed rgba(166, 91, 71, 0.22);
}

.related-block-header {
    margin-bottom: 1.5rem;
}

.related-block-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.3px;
    margin: 0;
}

.related-block-title i {
    color: var(--color-terracotta);
    font-size: 1.1rem;
}

.page-entry-content,
.entry-content {
    color: var(--color-text-body);
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Custom Headings H1 - H6 */
.page-entry-content h1,
.page-entry-content h2,
.page-entry-content h3,
.page-entry-content h4,
.page-entry-content h5,
.page-entry-content h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: var(--font-heading);
    color: var(--color-charcoal);
    font-weight: 800;
    line-height: 1.3;
    margin: 2.2rem 0 1.1rem;
    letter-spacing: -0.3px;
    position: relative;
}

.page-entry-content h1,
.entry-content h1 {
    font-size: 2.1rem;
    color: var(--color-terracotta);
    border-bottom: 2px solid rgba(166, 91, 71, 0.2);
    padding-bottom: 0.6rem;
}

.page-entry-content h2,
.entry-content h2 {
    font-size: 1.75rem;
    padding-left: 0.9rem;
    border-left: 4px solid var(--color-terracotta);
}

.page-entry-content h3,
.entry-content h3 {
    font-size: 1.4rem;
    color: var(--color-charcoal);
    font-weight: 800;
    margin: 1.8rem 0 0.9rem;
    line-height: 1.35;
}

.page-entry-content h4,
.entry-content h4 {
    font-size: 1.2rem;
    color: var(--color-terracotta-dark);
}

.page-entry-content h5,
.entry-content h5 {
    font-size: 1.05rem;
}

.page-entry-content h6,
.entry-content h6 {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.page-entry-content p,
.entry-content p {
    margin-bottom: 1.4rem;
}

/* Custom Unordered Bullet Lists */
.page-entry-content ul,
.entry-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

.page-entry-content ul li,
.entry-content ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.page-entry-content ul li::before,
.entry-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--color-terracotta);
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(166, 91, 71, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Custom Numbered Ordered Lists */
.page-entry-content ol,
.entry-content ol {
    list-style: none !important;
    counter-reset: custom-counter;
    padding-left: 0 !important;
    margin: 1.5rem 0 !important;
}

.page-entry-content ol li,
.entry-content ol li {
    counter-increment: custom-counter;
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 0.85rem;
    line-height: 1.7;
}

.page-entry-content ol li::before,
.entry-content ol li::before {
    content: counter(custom-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.78rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(166, 91, 71, 0.3);
}

/* Custom Blockquote / Blocknote / Callout */
.page-entry-content blockquote,
.entry-content blockquote,
.wp-block-quote,
.blocknote {
    position: relative;
    background-color: var(--bg-cream-card);
    border-left: 4px solid var(--color-terracotta) !important;
    border-radius: var(--radius-md);
    padding: 1.8rem 2.2rem 1.8rem 3.2rem !important;
    margin: 2.2rem 0 !important;
    font-style: italic;
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--color-charcoal);
    box-shadow: var(--shadow-sm);
    border-top: 1px solid rgba(166, 91, 71, 0.1);
    border-right: 1px solid rgba(166, 91, 71, 0.1);
    border-bottom: 1px solid rgba(166, 91, 71, 0.1);
}

.page-entry-content blockquote::before,
.entry-content blockquote::before,
.wp-block-quote::before,
.blocknote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    top: 1.5rem;
    color: var(--color-terracotta);
    font-size: 1.4rem;
    opacity: 0.4;
}

.page-entry-content blockquote cite,
.entry-content blockquote cite,
.wp-block-quote cite {
    display: block;
    margin-top: 0.8rem;
    font-style: normal;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-terracotta);
}

/* Custom Tables & Code */
.page-entry-content table,
.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.page-entry-content th,
.entry-content th {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    padding: 0.9rem 1.2rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
}

.page-entry-content td,
.entry-content td {
    padding: 0.85rem 1.2rem;
    border-bottom: 1px solid rgba(166, 91, 71, 0.12);
    background-color: var(--bg-cream-card);
    font-size: 0.94rem;
}

.page-entry-content code,
.entry-content code {
    background-color: rgba(166, 91, 71, 0.08);
    color: var(--color-terracotta-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: monospace;
}

.page-entry-content pre,
.entry-content pre {
    background-color: #1A1A1A;
    color: #F5EFE6;
    padding: 1.4rem 1.8rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-size: 0.9rem;
    margin: 1.8rem 0;
    border-left: 4px solid var(--color-terracotta);
}

.page-entry-content img,
.entry-content img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 1.5rem 0;
}

/* Related Pages & Labels */
.inner-related-pages {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(166, 91, 71, 0.15);
}

.related-pages-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.related-pages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
}

.related-page-tag {
    background-color: rgba(166, 91, 71, 0.08);
    color: var(--color-terracotta);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid rgba(166, 91, 71, 0.2);
    transition: var(--transition);
}

.related-page-tag:hover {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
}

/* Blog Layout 2 Columns (Single & Archive) */
.inner-blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
}

.inner-article-main {
    background-color: var(--bg-cream-card);
    border: 1px solid rgba(166, 91, 71, 0.15);
    border-radius: var(--radius-md);
    padding: 2.8rem 2.2rem;
    box-shadow: var(--shadow-sm);
}

.inner-featured-image-box {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.inner-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.inner-article-tags {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(166, 91, 71, 0.15);
}

.tags-label {
    font-weight: 700;
    color: var(--color-charcoal);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-chip {
    background-color: var(--bg-cream);
    color: var(--color-terracotta);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(166, 91, 71, 0.15);
}

.tag-chip:hover {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
}

/* Article WA Consult Box */
.article-wa-consult-box {
    margin-top: 3rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2421 100%);
    color: #FFFFFF;
    padding: 2rem 2.2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
}

.wa-box-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-box-text h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.wa-box-text p {
    font-size: 0.9rem;
    color: #D8D0C5;
    margin: 0;
}

.btn-wa-box {
    flex-shrink: 0;
    background-color: #25D366;
    border-color: #25D366;
}

.btn-wa-box:hover {
    background-color: #20BA5A;
    border-color: #20BA5A;
}

/* Article Share Bar */
.article-share-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 1.4rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.share-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    flex-shrink: 0;
}

.share-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #fff;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    opacity: 0.85;
    transform: scale(1.1);
}

.share-fb {
    background: #1877f2;
}

.share-tw {
    background: #000;
}

.share-wa {
    background: #25D366;
}

.share-tt {
    background: #010101;
}

/* Article Author Box */
.article-author-box {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    background: #f0f5ff;
    border: 1px solid rgba(6, 78, 142, 0.12);
    border-left: 4px solid var(--color-blue);
    border-radius: var(--radius-md);
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-blue);
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 0.3rem;
}

.author-bio {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Sidebar Widgets */
.inner-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    align-self: start;
    z-index: 10;
}

.sidebar-card {
    background-color: #FFFFFF;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: 0 10px 30px rgba(6, 78, 142, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
}

.sidebar-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--color-blue);
}

.sidebar-search-form {
    display: flex;
    gap: 0.5rem;
}

.sidebar-search-input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(166, 91, 71, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background-color: #FFFFFF;
}

.sidebar-search-btn {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border: none;
    padding: 0 1.1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-search-btn:hover {
    background-color: var(--color-terracotta-dark);
}

.sidebar-recent-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-recent-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.sidebar-recent-thumb {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background-color: rgba(166, 91, 71, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
}

.sidebar-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-recent-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-charcoal);
    line-height: 1.3;
    margin-bottom: 3px;
}

.sidebar-recent-item:hover .sidebar-recent-title {
    color: var(--color-terracotta);
}

.sidebar-recent-date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Sidebar Mini Gallery Grid */
.sidebar-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.sidebar-gallery-item {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(166, 91, 71, 0.15);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.sidebar-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sidebar-gallery-item:hover .sidebar-gallery-img {
    transform: scale(1.12);
}

.btn-sidebar-gallery-more {
    display: block;
    text-align: center;
    padding: 0.55rem 0.85rem;
    background-color: rgba(166, 91, 71, 0.08);
    color: var(--color-terracotta);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(166, 91, 71, 0.2);
    transition: var(--transition);
}

.btn-sidebar-gallery-more:hover {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
}

.sidebar-cat-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.92rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(166, 91, 71, 0.15);
}

.sidebar-cat-item a {
    color: var(--color-text-body);
    font-weight: 600;
}

.sidebar-cat-item a:hover {
    color: var(--color-terracotta);
}

.sidebar-cat-count {
    background-color: rgba(166, 91, 71, 0.1);
    color: var(--color-terracotta);
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Related Posts Block */
.inner-related-posts-block {
    margin-top: 4.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(166, 91, 71, 0.15);
}

/* Empty State */
.inner-empty-state {
    background-color: var(--bg-cream-card);
    border: 1px solid rgba(166, 91, 71, 0.15);
    border-radius: var(--radius-md);
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 3rem;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 4rem 0;
}

.inner-cta-box {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2421 100%);
    color: #FFFFFF;
    padding: 3.8rem 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.light-tag {
    color: var(--color-gold) !important;
}

.inner-cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.inner-cta-desc {
    font-size: 1.05rem;
    color: #D8D0C5;
    max-width: 680px;
    margin: 0 auto 2.2rem;
    line-height: 1.65;
}

/* Pagination Styling */
.pagination-wrapper {
    margin-top: 3.5rem;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-cream-card);
    color: var(--color-charcoal);
    border: 1px solid rgba(166, 91, 71, 0.18);
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0 4px;
    transition: var(--transition);
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
}


/* ==========================================================================
   Footer
   ========================================================================== */
.galih-footer {
    background-color: #fff;
    border-top: none;
    padding-top: 4.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
}

.footer-logo-area {
    margin-bottom: 1.6rem;
    display: block;
}

.footer-logo-area img,
.footer-logo-area .custom-logo,
.footer-logo-area .custom-logo img {
    max-height: 55px;
    width: auto;
    display: block;
    margin-bottom: 1.4rem;
}

.footer-brand {
    font-size: 1.25rem;
    margin-bottom: 1.6rem;
    display: inline-block;
}

.footer-description {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 1.4rem;
}

.footer-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--bg-cream-warm);
    color: var(--color-terracotta-dark);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 1.4rem;
    letter-spacing: 0.5px;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a {
    font-size: 0.92rem;
    color: var(--color-text-body);
}

.footer-nav-list a:hover {
    color: var(--color-terracotta);
    padding-left: 4px;
}

.footer-social-list li a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-social-list li a i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(166, 91, 71, 0.1);
    color: var(--color-terracotta);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social-list li a:hover i {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    transform: scale(1.1);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: var(--color-text-body);
}

.footer-contact-item i {
    color: var(--color-terracotta);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom-wrapper {
    background-color: #1A1A1A;
    padding: 0.75rem 0;
}

.footer-bottom {
    border-top: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-links a {
    color: #FFFFFF;
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}


/* Floating WhatsApp Button */
.floating-wa-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.floating-wa-btn:hover {
    transform: scale(1.1);
    background-color: #20BA5A;
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--color-charcoal);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-wa-btn:hover .wa-tooltip {
    opacity: 1;
}


/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Mobile & Tablet Responsive Hero */
@media (max-width: 1024px) {
    .galih-header {
        padding: 1.5rem 0 1rem;
    }

    .inner-blog-layout {
        grid-template-columns: 1fr;
    }

    .nav-links-list {
        display: none;
        /* Hide desktop nav links on mobile/tablet */
    }

    .menu-hamburger-btn {
        display: flex;
        /* Show hamburger button on mobile/tablet */
    }

    .galih-hero-section.full-bg-hero {
        min-height: 100vh;
        height: 100vh;
        padding: 6.5rem 0 2rem;
        justify-content: space-between;
    }

    /* Mobile: Background slider positioned at bottom of section */
    .hero-bg-slider {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 85%;
    }

    .hero-bg-slide {
        background-position: center right !important;
    }

    /* Ultra-Smooth Mobile Top-to-Bottom Gradient Fade */
    .hero-bg-overlay {
        background: linear-gradient(180deg,
                #F5EFE6 0%,
                #F5EFE6 26%,
                rgba(245, 239, 230, 0.85) 45%,
                rgba(245, 239, 230, 0.50) 62%,
                rgba(245, 239, 230, 0.15) 80%,
                transparent 100%);
    }

    .hero-text-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-main-title {
        font-size: 3rem;
    }

    .hero-description-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons-wrapper {
        justify-content: center;
    }

    .hero-pagination-dots {
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showroom-2col-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Global Overflow Fixes & Responsive Polish */
html,
body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .galih-hero-section.full-bg-hero {
        min-height: 100vh;
        height: auto;
        padding: 5.5rem 0 3rem;
    }

    .hero-main-title {
        font-size: 2.2rem;
        word-break: break-word;
        margin-top: 0.5rem;
    }

    .hero-subheading {
        font-size: 1.05rem;
    }

    .inner-page-banner {
        padding: 9.5rem 0 4.2rem;
        text-align: center;
        background-position: center right !important;
    }

    .cta-bg-section {
        background-position: center right !important;
    }

    .inner-banner-title {
        font-size: 1.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0 0.5rem;
    }

    .inner-banner-desc {
        font-size: 0.98rem;
        padding: 0 0.5rem;
    }

    .inner-breadcrumb {
        font-size: 0.78rem;
        padding: 0.4rem 0.9rem;
        max-width: 100%;
        word-break: break-word;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 0.8rem;
    }

    .inner-content-section.overlapping-section {
        margin-top: -1.2rem;
        /* Softened negative margin on mobile to prevent collisions */
    }

    .inner-blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .inner-article-main,
    .inner-content-card {
        padding: 1.8rem 1.2rem;
        border-radius: var(--radius-sm);
        word-break: break-word;
    }

    .page-entry-content img,
    .page-entry-content iframe,
    .page-entry-content video {
        max-width: 100% !important;
        height: auto !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .gallery-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .articles-grid .article-card {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 1rem;
        align-items: center;
        padding: 0.85rem;
    }

    .articles-grid .article-card .article-img-box {
        height: 100px;
        margin-bottom: 0;
        border-radius: var(--radius-sm);
        overflow: hidden;
    }

    .articles-grid .article-card .article-thumb {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .articles-grid .article-card .article-content {
        padding: 0;
    }

    .articles-grid .article-card .article-title {
        font-size: 0.95rem;
        line-height: 1.35;
        margin-bottom: 0.35rem;
    }

    .articles-grid .article-card .article-excerpt {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 0.82rem;
        line-height: 1.4;
        margin-bottom: 0.35rem;
    }

    .articles-grid .article-card .article-readmore {
        font-size: 0.78rem;
    }

    .cta-banner-title {
        font-size: 1.8rem;
    }

    .article-wa-consult-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1.2rem;
        gap: 1rem;
    }

    .wa-box-icon {
        margin: 0 auto;
    }

    .btn-wa-box {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .floating-wa-btn {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .wa-tooltip {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .inner-banner-title {
        font-size: 1.65rem;
    }

    .btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.85rem;
        width: 100%;
    }

    .hero-buttons-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons-wrapper .btn {
        width: 100%;
    }
}