/* ==========================================================================
   Galih Putra Gorden - Main Stylesheet (Refined & Extended)
   Luxury Warm Cream & Terra Cotta Aesthetic (Matching Reference Image)
   ========================================================================== */

:root {
    --bg-cream: #F5EFE6;
    --bg-cream-light: #FAFAF7;
    --bg-cream-warm: #EFE6D8;
    --bg-cream-card: #FAF6F0;

    --color-terracotta: #A65B47;
    --color-terracotta-dark: #8B4837;
    --color-terracotta-light: #C27661;

    --color-charcoal: #1A1A1A;
    --color-text-body: #4A3E39;
    --color-text-muted: #7A6B63;

    --color-gold: #C8A261;
    --color-dot-inactive: #D8C8B5;

    --font-heading: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 4px 14px rgba(166, 91, 71, 0.06);
    --shadow-md: 0 8px 24px rgba(166, 91, 71, 0.1);
    --shadow-lg: 0 16px 40px rgba(26, 26, 26, 0.08);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;

    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 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: hidden;
}

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: rgba(245, 239, 230, 0.98);
    padding: 0.8rem 0 0.7rem;
    box-shadow: 0 4px 20px rgba(166, 91, 71, 0.08);
}

/* 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;
}

.galih-brand-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-charcoal);
    text-transform: uppercase;
}

.desktop-nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Floating Frosted Glass Pill Bar for Menu Items */
.nav-links-list {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #FAF6F0;
    padding: 0.4rem 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(166, 91, 71, 0.18);
    box-shadow: 0 4px 18px rgba(26, 26, 26, 0.06);
    transition: var(--transition);
}

.nav-links-list a,
.nav-link {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--color-charcoal);
    text-transform: uppercase;
    position: relative;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links-list a.active,
.nav-link.active,
.nav-links-list a:hover {
    color: #FFFFFF;
    background-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;
}

/* 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 (100vh Full Height & Smooth Swipe Reveal Slider)
   ========================================================================== */
.galih-hero-section.full-bg-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
    padding: 4.5rem 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-cream);
}

/* Desktop: Right-aligned Background Image Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    right: 0;
    width: 68%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: auto 100%;
    background-position: center right;
    background-repeat: no-repeat;
    visibility: hidden;
    z-index: 1;
    clip-path: inset(0 0 0 100%);
    transition: clip-path 1.15s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-bg-slide.prev-slide {
    visibility: visible;
    z-index: 1;
    clip-path: inset(0 0 0 0%);
}

.hero-bg-slide.active {
    visibility: visible;
    z-index: 2;
    clip-path: inset(0 0 0 0%);
}

/* Leading Accent Swipe Line with Translucent Gradient Glow Aura */
.hero-bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 24px;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(200, 162, 97, 0.4) 25%,
            rgba(166, 91, 71, 0.95) 50%,
            rgba(200, 162, 97, 0.4) 75%,
            transparent 100%);
    box-shadow: 0 0 35px rgba(166, 91, 71, 0.6), 0 0 20px rgba(200, 162, 97, 0.7);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-bg-slide.swiping::before {
    opacity: 1;
}

/* Desktop Gradient Overlay: Clearer & shifted left so right image is crystal clear */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg,
            #F5EFE6 0%,
            #F5EFE6 36%,
            rgba(245, 239, 230, 0.70) 44%,
            rgba(245, 239, 230, 0.20) 50%,
            transparent 54%);
    pointer-events: none;
}

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

.hero-text-content {
    max-width: 620px;
}

.hero-subheading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-terracotta);
    background-color: rgba(166, 91, 71, 0.08);
    border: 1px solid rgba(166, 91, 71, 0.22);
    padding: 0.42rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(166, 91, 71, 0.06);
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--color-charcoal);
    margin-top: 0;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.hero-main-title .highlight-word {
    color: var(--color-terracotta);
}

.hero-description-text {
    font-size: 1.1rem;
    line-height: 1.55;
    color: var(--color-terracotta);
    max-width: 520px;
    margin-bottom: 1.6rem;
    font-weight: 500;
    white-space: pre-line;
}

.hero-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Dots */
.hero-pagination-dots {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 3.5rem;
}

.dot-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--color-dot-inactive);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.dot-btn.active {
    background-color: var(--color-gold);
    transform: scale(1.25);
}


/* ==========================================================================
   Section Global Components
   ========================================================================== */
.galih-section {
    padding: 5.5rem 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: var(--bg-cream-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: 160px 160px var(--radius-md) var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 260px 260px var(--radius-md) var(--radius-md);
}

.about-experience-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background-color: #1A1A1A;
    color: #FFFFFF;
    padding: 1.2rem 1.8rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--color-terracotta);
    display: flex;
    flex-direction: column;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
}

.badge-lbl {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #E0E0E0;
}

.about-text-col .about-p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text-body);
    margin-bottom: 1.2rem;
}

.about-location-box {
    margin-top: 2rem;
    padding: 1.4rem 1.6rem;
    background-color: var(--bg-cream-card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(166, 91, 71, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.loc-icon {
    font-size: 1.4rem;
    color: var(--color-terracotta);
    margin-top: 2px;
}

.loc-info strong {
    display: block;
    color: var(--color-charcoal);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.loc-info p {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}


/* ==========================================================================
   Services Section (8 Items Grid)
   ========================================================================== */
.services-section {
    background-color: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
}

.service-card {
    background-color: var(--bg-cream-card);
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(166, 91, 71, 0.12);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-terracotta);
}

.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background-color: rgba(166, 91, 71, 0.1);
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.service-desc {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}


/* ==========================================================================
   Why Choose Us Section (6 Items)
   ========================================================================== */
.why-section {
    background-color: var(--bg-cream-light);
}

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

.why-card {
    background-color: var(--bg-cream-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-terracotta);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.why-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(166, 91, 71, 0.3);
    line-height: 1;
    margin-bottom: 1rem;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.6rem;
}

.why-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-body);
}


/* ==========================================================================
   Process Section (5 Steps)
   ========================================================================== */
.process-section {
    background-color: var(--bg-cream);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    position: relative;
}

.process-step {
    background-color: var(--bg-cream-card);
    padding: 2rem 1.4rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(166, 91, 71, 0.12);
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--color-terracotta);
}

.step-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 4px 12px rgba(166, 91, 71, 0.3);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.6rem;
}

.step-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-muted);
}


/* ==========================================================================
   Gallery Section (Filter Tabs, Load More & Lightbox Modal)
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-cream-light);
}

.gallery-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.8rem;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    background-color: var(--bg-cream-card);
    color: var(--color-charcoal);
    border: 1px solid rgba(166, 91, 71, 0.18);
    padding: 0.65rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background-color: var(--color-terracotta);
    color: #FFFFFF;
    border-color: var(--color-terracotta);
    box-shadow: 0 4px 15px rgba(166, 91, 71, 0.25);
}

.gallery-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
}

.gallery-item-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 280px;
    cursor: pointer;
    transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item-card.hidden-by-filter,
.gallery-item-card.hidden-by-loadmore {
    display: none !important;
}

.gallery-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

video.gallery-thumb-img,
img.gallery-thumb-img,
.gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.gallery-item-card:hover video.gallery-thumb-img,
.gallery-item-card:hover img.gallery-thumb-img,
.gallery-item-card:hover .gallery-thumb-img {
    transform: scale(1.08);
}

/* Hover Overlay: Centered Icon Badge Only (Filename/title removed) */
.gallery-overlay-caption {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

/* 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-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: linear-gradient(135deg, #1A1A1A 0%, #2A2421 100%);
    color: #FFFFFF;
    padding: 3.8rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.light-heading {
    color: #FFFFFF !important;
}

.area-intro {
    font-size: 1.1rem;
    color: #D8D0C5;
    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: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #F5EFE6;
    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.15);
    flex: 1 1 calc(20% - 0.75rem);
    min-width: 140px;
    text-align: center;
}

.area-tag i {
    color: var(--color-gold);
    font-size: 0.88rem;
}

.area-tag:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    transform: translateY(-2px);
}

.area-footer-text {
    font-size: 0.95rem;
    color: var(--color-gold);
    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-image: url('../images/sofa1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 11.5rem 0 6.8rem;
    border-bottom: 1px solid rgba(166, 91, 71, 0.18);
    overflow: hidden;
}

/* Light Soft Warm Overlay over sofa1.webp - Not Dark, Bright & Elegant */
.inner-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(245, 239, 230, 0.94) 0%,
            rgba(245, 239, 230, 0.86) 50%,
            rgba(245, 239, 230, 0.95) 100%);
    z-index: 1;
    pointer-events: 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.8rem;
    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 */
.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;
}

.overlapping-section .inner-article-main,
.overlapping-section .inner-content-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(166, 91, 71, 0.18);
    border-top: 4px solid var(--color-terracotta);
    box-shadow: 0 20px 45px rgba(26, 26, 26, 0.08), 0 4px 14px rgba(166, 91, 71, 0.12);
}

/* 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;
}

/* Sidebar Widgets */
.inner-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.sidebar-card {
    background-color: var(--bg-cream-card);
    border: 1px solid rgba(166, 91, 71, 0.15);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
}

.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-terracotta);
}

.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: var(--bg-cream);
    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: var(--color-terracotta-light);
    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: hidden !important;
    width: 100% !important;
    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: 9.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%;
    }
}