/* ==========================================================================
   CSS Reset & Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-beige: #E5DFD3;
    --bg-dark-blue: #0d3061;
    --bg-footer: #061b37;
    --color-gold: #c99348;
    --color-gold-text: #78653b;
    --color-gray-btn: #c2c2c2;
    --color-red-btn: #a40e0e;
    --text-dark: #221f1d;
    --text-muted: #55514c;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--color-gold) var(--bg-beige);
}

html::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-beige);
}

html::-webkit-scrollbar-thumb {
    min-height: 48px;
    border: 3px solid var(--bg-beige);
    border-radius: 999px;
    background: var(--color-gold);
}

html::-webkit-scrollbar-thumb:hover {
    background: #b9853d;
}

html::-webkit-scrollbar-thumb:active {
    background: var(--color-gold-text);
}

html::-webkit-scrollbar-corner {
    background: var(--bg-beige);
}

body {
    width: 100%;
    max-width: 100%;
    /* KUNCI PERBAIKAN: Gunakan 'clip', bukan 'hidden' */
    overflow-x: clip; 
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: var(--bg-beige);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Container Helper */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Classes */
.font-allison { font-family: 'Allison', cursive; }
.font-headland { font-family: 'Headland One', serif; }
.font-dm-mono { font-family: 'DM Mono', monospace; }
.font-gideon { font-family: 'Gideon Roman', serif; }
.font-times { font-family: 'Times New Roman', Times, serif; }

/* Buttons Style */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-gold {
    background-color: var(--color-gold);
    color: #1a1714;
}

.btn-gray {
    background-color: var(--color-gray-btn);
    color: #1a1714;
}

.btn-red {
    background-color: var(--color-red-btn);
    color: #ffffff;
}

.btn-block {
    width: 100%;
    margin-top: 15px;
}

/* ==========================================================================
   SECTION 1: HERO & FIXED HEADER
   ========================================================================== */
.hero-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 90px;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

/* Class ini ditambahkan saat disekrol (aktif via JavaScript) */
.hero-header.scrolled {
    background-color: var(--bg-dark-blue);
    padding: 15px 90px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.logo {
   width: 90px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.navbar-actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(6, 27, 55, 0.28);
    box-shadow: 0 8px 24px rgba(6, 21, 42, 0.12);
    backdrop-filter: blur(10px);
}

.language-option {
    display: grid;
    width: 34px;
    height: 28px;
    padding: 5px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    line-height: 1;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.language-option:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.language-option.active {
    border-color: rgba(201, 147, 72, 0.8);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.language-flag {
    display: block;
    width: 20px;
    height: 13px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(6, 21, 42, 0.28);
}

.nav-links a {
    font-family: 'DM Mono', monospace;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

/* Pastikan hamburger menu punya styling dasar */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff; 
    font-size: 1.8rem; 
    padding: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle svg {
    fill: #ffffff;
    width: 24px;
    height: 24px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../assets/images/bg-hero-sby.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    padding: 120px 90px 50px 90px; 
}

.hero-body {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 20px;
}

.hero-title-script {
    font-family: 'Allison', cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 0.9;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 1000px;
    white-space: nowrap;
}

.hero-title-main {
    font-family: 'Headland One', serif;
    font-size: 25px;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 2px;
    max-width: 800px;
    color: #ffffff;
    font-weight: 400;
}

.hero-title-main > span {
    display: block;
    white-space: nowrap;
}

.hero-footer {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 40px;
}

.hero-date {
    font-family: 'DM Mono', monospace;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #ffffff;
    padding-bottom: 5px;
    position: relative;
    top: -90px;
}

/* ==========================================================================
   SECTION 2: EXHIBITION INFO
   ========================================================================== */
.exhibition-info-section {
    background-color: #e6dfd5;
    padding: 60px 0;
}

.exhibition-info-section .container {
    width: 100%;
    max-width: 1140px; 
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}

.info-col {
    flex: 1;
}

.info-col-left {
    text-align: left;
}

.info-col-right {
    text-align: right;
    flex: 2; 
}

.info-label {
    font-family: 'DM Mono', monospace;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 40px;
}

.info-description {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.info-label h4 {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #444;
}

.info-label p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
} 

.info-value {
    margin: 0;
    font-family: serif;
    font-size: 18px;
}

.cta-buttons-container {
    display: flex;
    width: 100%;
    gap: 12px;
}

.cta-buttons-container .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border: 1px solid #000;
    font-family: monospace;
    font-size: 16px;
    text-decoration: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.btn-reservasi {
    flex: 2;
    background-color: #cb984f;
    color: #000;
}

.cta-buttons-container .btn-gray {
    flex: 1;
    background-color: #c5c5c5;
    color: #000;
}

/* ==========================================================================
   SECTION 3: FEATURE SECTION
   ========================================================================== */
.feature-section {
    padding: 60px 0;
    background-color: var(--bg-beige);
}

.feature-header {
    text-align: center;
    margin-bottom: 50px;
}

.feature-title {
    font-family: 'Gideon Roman', serif;
    font-size: 5.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 400;
    max-width: 100%;
    margin: 0 auto;
}

.feature-image-wrapper {
    width: 100%;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
}

.feature-body-text {
    max-width: 100%;
    margin: 0 auto 50px auto;
}

.feature-body-text p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    color: var(--text-dark);
}

.quote-block {
    max-width: 400px;
    margin: 60px auto 0 0;
}

.quote-mark {
    font-size: 4rem;
    line-height: 1;
    color: var(--color-gold-text);
    font-family: 'Gideon Roman', serif;
    margin-bottom: -10px;
}

.quote-text {
    font-family: 'Gideon Roman', serif;
    font-size: 1.8rem;
    color: var(--color-gold-text);
    line-height: 1.4;
    margin-bottom: 20px;
}

.quote-author {
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-top: 25px;
}

/* ==========================================================================
   SECTION 4: DAILY EVENT SECTION
   ========================================================================== */
.daily-event-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0,0)),
                url('assets/images/bg-cta-1.webp') center/cover no-repeat;
    color: #ffffff;
}

.daily-event-content {
    max-width: 600px;
}

.daily-event-title {
    font-family: 'Gideon Roman', serif;
    font-weight: 400;
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.daily-event-desc {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #e0e0e0;
    width: 50%;
}

.btn-cta {
    padding: 10px 25px;
    font-family: 'DM Mono', monospace;
    font-size: 1rem;
    background-color: var(--color-gold);
    color: #1a1714;
    text-decoration: none;
    border: 1px solid #000;
}

.btn-cta-red {
    padding: 10px 25px;
    font-family: 'DM Mono', monospace;
    font-size: 0.9rem;
    background-color: var(--color-red-btn);
    color: #ffffff;
    text-decoration: none;
    border: 1px solid #fff;
}

/* ==========================================================================
   SECTION 5: PLAN VISIT SECTION
   ========================================================================== */
.plan-visit-section {
    padding: 100px 0;
    background-color: var(--bg-beige);
}

.plan-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "text  image"
        "btn   .";
    column-gap: 60px;
    row-gap: 0;
    align-items: center;
}

.plan-text {
    grid-area: text;
}

.plan-image {
    grid-area: image;
}

.plan-title {
    font-family: 'Gideon Roman', serif;
    font-weight: 400;
    font-size: 2.5rem;
    margin-top: -100px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.plan-desc {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.plan-location {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.plan-date {
    font-family: 'DM Mono', monospace;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 5px; 
    color: var(--text-dark);
}

.plan-visit-btn {
    grid-area: btn;
    align-self: start;
    margin-top: -130px; /* Didekatkan ke teks tanggal */
    width: fit-content;
    min-width: 180px; 
    text-align: center;
}

.plan-image img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ==========================================================================
   SECTION 6: BLUE CTA BANNER
   ========================================================================== */
.blue-cta-section {
    background: linear-gradient(90deg, #0d3061 0%, #06152a 100%);
    padding: 40px 0;
    color: #ffffff;
    margin-top: 50px;
}

.blue-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blue-cta-text {
    font-family: 'DM Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.blue-cta-sub {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 5px;
}

/* sticky CTA Biru */

.sticky-cta-clone {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.25); 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
    padding: 10px 0 !important;
    margin: 0 !important;
}

/* Class trigger dari JavaScript */
.sticky-cta-clone.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   SECTION 8: FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--bg-footer);
    color: #ffffff;
    padding: 60px 0 40px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo {
    width: 80px;
}

.footer-info-text {
    font-family: 'Times New Roman', Times, serif;
    color: #a0aec0;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.footer-copyright {
    font-family: 'Times New Roman', Times, serif;
    color: #718096;
    font-size: 0.75rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.footer-col:nth-child(2),
.footer-col:nth-child(3) {
    padding-top: 45px; 
}

.footer-col:nth-child(3){
    padding-left: 100px;
}

.footer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-icon {
    color: var(--color-gold);
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-item-text {
    font-family: 'Times New Roman', Times, serif;
    color: #d0d8e0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-phone {
    display: inline-block;
    font-family: 'DM Mono', monospace;
    color: #d0d8e0;
    font-size: 1rem;
    text-decoration: none;
    white-space: nowrap;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLET & MOBILE)
   ========================================================================== */

@media (max-width: 868px) {
    .hero-section {
        padding: 100px 24px 40px 24px;
    }
    .hero-header {
        padding: 20px 24px;
    }
    .hero-header.scrolled {
        padding: 15px 24px;
    }
    .info-grid, .info-subgrid, .plan-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .feature-title {
        font-size: 2.2rem;
    }
    .quote-text {
        font-size: 1.4rem;
    }
    .blue-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* MOBILE VERSION (MAX-WIDTH: 768PX) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
        width: 95%; /* Mencegah overflow */
    }

    /* ---------- HEADER & HERO ---------- */
    .hero-header {
        padding: 20px 20px;
    }
    .hero-header.scrolled {
        padding: 15px 20px;
        background-color: var(--bg-dark-blue);
    }
    
    .logo {
        width: 56px;
    }

    .nav-links {
        position: absolute;
        top: 64px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        gap: 4px;
        background: rgba(6, 21, 42, 0.94);
        padding: 18px 20px;
        z-index: 20;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }
    .nav-links a:last-child { border-bottom: none; }

    .navbar-actions {
        gap: 10px;
    }

    .language-switcher {
        flex: 0 0 auto;
        padding: 3px;
    }

    .language-option {
        width: 31px;
        height: 27px;
        padding: 4px;
        border-bottom: 1px solid transparent !important;
    }
    
    /* Menampilkan Hamburger Menu */
    .menu-toggle {
        display: block; 
    }

    /* Hero Image menyesuaikan batas tidak full height */
    .hero-section {
        min-height: unset; /* Dihapus agar tidak penuhi layar */
        height: auto;
        padding-top: 130px; 
        padding-bottom: 60px;
        justify-content: center;
    }

    .hero-body {
        text-align: left;
        margin: 0;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-title-script {
        z-index: 2;
        position: relative;
        max-width: 100%;
        white-space: nowrap;
    }

    .hero-title-main {
        letter-spacing: 1px;
        line-height: 1.35;
        max-width: 100%;
        z-index: 1;
        position: relative;
        overflow-wrap: break-word;
    }

    /* Poin 3: Memunculkan teks tanggal di mobile */
    .hero-footer {
        display: flex; 
        justify-content: center;
        align-items: center;
        margin-top: 25px;
        width: 100%;
    }

    .hero-date {
        position: static;
        font-size: 0.85rem;
        letter-spacing: 2px;
        border-bottom: none;
        padding-bottom: 0;
        text-align: center;
        margin-top: 0;
    }

    /* ---------- SECTION 2: EXHIBITION INFO ---------- */
    .exhibition-info-section {
        padding: 44px 0;
    }
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 28px;
    }
    .info-col-right {
        text-align: left;
    }
    .info-description {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: justify;
    }
    .info-row + .info-row {
        gap: 18px;
    }
    .info-row + .info-row .info-col {
        width: 100%;
        padding-bottom: 14px;
        border-bottom: 1px solid rgba(34, 31, 29, 0.25);
    }
    .info-label {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 16px;
        margin-top: 15px;
        width: 100%;
    }
    .info-label h4 {
        margin-bottom: 0;
        white-space: nowrap;
        font-weight: 500;
        font-size: 0.85rem;
    }
    .info-label p {
        text-align: right;
        font-size: 0.65rem;
    }
    .cta-buttons-container {
        flex-direction: column;
        gap: 10px;
    }
    .btn-reservasi,
    .cta-buttons-container .btn-gray {
        flex: none;
        width: 100%;
        padding: 15px 16px;
        font-size: 1rem;

    }

    /* ---------- SECTION 3: FEATURE ---------- */
    .feature-section {
        padding: 44px 0;
    }
    .feature-header {
        text-align: left;
        margin-bottom: 24px;
    }
    .feature-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
        line-height: 1.25;
    }
    .feature-image-wrapper {
        margin-bottom: 32px;
    }
    .feature-image-wrapper img {
        max-height: 260px;
    }
    .feature-body-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    .quote-block {
        max-width: 100%;
        margin: 32px 0 0 0;
    }
    .quote-mark {
        font-size: 2.8rem;
    }
    .quote-text {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
    .quote-author {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-top: 16px;
    }

    /* ---------- SECTION 5 & 6: SPACING ---------- */
    .daily-event-section {
        position: static;
        background: none;
        padding: 0;
        margin-top: 44px;
        margin-bottom: 60px;

    }
    .daily-event-section .container {
        display: flex;
        flex-direction: column;
        gap: 0; 
    }
    .daily-event-content {
        max-width: 100%;
        aspect-ratio: 4 / 5;
        background: linear-gradient(to top, rgba(6,10,20,0.85) 15%, rgba(6,10,20,0.2) 55%, rgba(6,10,20,0) 80%),
                    url('assets/images/bg-daily-event-mobile.jpg') center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 24px 20px 26px;
        box-sizing: border-box;
    }
    .daily-event-title {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    .daily-event-desc {
        width: 100%;
        font-size: 1rem;
        margin-bottom: 0;
        color: #f0efe9;
    }

    .plan-visit-section {
        padding: 0;
        margin-top: 0; 
    }
    .plan-visit-section .container {
        padding: 0 20px;
    }
    .plan-grid {
        display: grid;
        grid-template-areas:
            "photo"
            "btn";
        row-gap: 0;
    }
    .plan-image {
        grid-area: photo;
        position: relative;
        aspect-ratio: 4 / 5;
        overflow: hidden;
        z-index: 1;
    }
    .plan-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(6,10,20,0.88) 15%, rgba(6,10,20,0.2) 55%, rgba(6,10,20,0) 80%);
        pointer-events: none;
    }
    .plan-image img {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
        box-shadow: none;
    }
    .plan-text {
        grid-area: photo;
        align-self: end;
        z-index: 2;
        padding: 24px 20px 26px;
        color: #ffffff;
    }
    .plan-title, .plan-desc, .plan-location, .plan-date {
        color: #ffffff;
    }
    .plan-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    .plan-desc {
        font-size: 0.9rem;
        opacity: 0.9;
    }
    .plan-location {
        font-size: 0.85rem;
        opacity: 0.9;
    }
    
    /* Poin 4: Margin disesuaikan di mobile */
    .plan-date {
        font-size: 0.8rem;
        margin-bottom: 5px; 
    }

    .plan-visit-btn {
        grid-area: btn;
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin-top: 15px; /* Jarak dibuat rapat seperti di desktop */
    }

    .daily-event-section .btn-cta {
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin-top: 15px;
    }

    /* ---------- SECTION 7: BLUE CTA BANNER ---------- */
    .blue-cta-section {
        padding: 24px 0;
    }
    .blue-cta-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        flex-wrap: nowrap;
    }
    .blue-cta-text {
        font-size: 0.7rem;
    }
    .blue-cta-sub {
        font-size: 0.85rem;
        margin-top: 4px;
    }
    .btn-cta-red {
        padding: 10px 20px;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .sticky-cta-clone {
    padding: 15px 0 !important;
    }
    

    /* ---------- SECTION 8: FOOTER ---------- */
    .site-footer {
        padding: 60px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-logo {
        width: 64px;
    }
    .footer-col {
        gap: 10px;
    }
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        padding-top: 0;
    }
    .footer-col:nth-child(3){
    padding-left: 0;
    }

    .footer-info-text {
        font-size: 0.95rem;
    }
    .footer-copyright {
        margin-top: -20px;
        font-size: 0.7rem;
    }
    .footer-item-text,
    .footer-phone {
        font-size: 0.85rem;

    }
}
