:root {
    --primary: #1e3a8a; /* Dark Blue */
    --primary-light: #2563eb;
    --secondary: #3b82f6;
    --accent: #eff6ff;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-light);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

.btn-primary:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--border);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
    background-color: var(--accent);
}

.btn-light {
    background-color: var(--accent);
    color: var(--primary-light);
    font-weight: 600;
}

.btn-light:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

/* --- Header --- */
header,
.home-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 100%;
}

/* --- Dynamic Navigation --- */
.custom-dynamic-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.custom-dynamic-nav > ul {
    display: flex;
    gap: 28px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}

.custom-dynamic-nav > ul > li {
    position: relative;
    display: flex;
    align-items: center;
    height: 80px;
}

.custom-dynamic-nav > ul > li > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    line-height: 1.4;
}

.custom-dynamic-nav > ul > li > a i {
    font-size: 1.1rem;
    color: inherit;
}

.custom-dynamic-nav > ul > li:hover > a,
.custom-dynamic-nav > ul > li:hover > a i,
.custom-dynamic-nav > ul > li.active > a,
.custom-dynamic-nav > ul > li.active > a i {
    color: var(--primary-light) !important;
    font-weight: 600;
}

.custom-dynamic-nav > ul > li.active > a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-light);
    border-radius: 2px;
}

.custom-dynamic-nav > ul > li:first-child.active > a::after {
    display: none;
}

/* Custom Radio Card Styling */
input.btn-check,
.btn-check {
    position: absolute !important;
    clip: rect(0, 0, 0, 0) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    display: none !important;
}

.btn-check:checked + label {
    background-color: var(--primary-light, #2563eb) !important;
    color: #ffffff !important;
    border-color: var(--primary-light, #2563eb) !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
}

.btn-check:checked + label i,
.btn-check:checked + label span {
    color: #ffffff !important;
}

/* Header CTA Button Visibility & Styling */
.mobile-cta-wrapper {
    display: none !important;
}

.btn-pengajuan-desktop {
    display: inline-flex !important;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    text-decoration: none;
    white-space: nowrap;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-pengajuan-desktop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-pengajuan-mobile {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Submenus (Dropdowns) */
.custom-dynamic-nav .nav-caret {
    font-size: 0.72rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.custom-dynamic-nav > ul > li:hover > a .nav-caret {
    transform: rotate(180deg);
    opacity: 1;
}

.custom-dynamic-nav ul.munoz-megamenu,
.custom-dynamic-nav ul.hm-dropdown {
    position: absolute;
    top: calc(100% - 5px);
    left: -20px;
    right: auto;
    background: var(--white);
    min-width: 240px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
    border-radius: 16px;
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s ease;
    z-index: 1000;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Hover bridge to keep dropdown open smoothly */
.custom-dynamic-nav ul.munoz-megamenu::before,
.custom-dynamic-nav ul.hm-dropdown::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.custom-dynamic-nav ul.munoz-megamenu {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    padding: 24px 28px;
    min-width: 580px;
    width: max-content;
    left: -40px;
    right: auto;
}

/* For navigation items on the right side (e.g., Tentang Kami), align megamenu to the right edge so columns like Berita & Laporan never overflow off-screen */
.custom-dynamic-nav > ul > li:nth-child(n+3) ul.munoz-megamenu,
.custom-dynamic-nav > ul > li.megamenu-holder:last-of-type ul.munoz-megamenu {
    left: auto !important;
    right: -20px !important;
}

.custom-dynamic-nav ul.munoz-megamenu > li {
    flex: 1;
    min-width: 170px;
    height: auto;
}

.custom-dynamic-nav > ul > li:hover > ul.munoz-megamenu,
.custom-dynamic-nav > ul > li:hover > ul.hm-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.custom-dynamic-nav ul.munoz-megamenu li,
.custom-dynamic-nav ul.hm-dropdown li {
    padding: 0;
    height: auto;
}

.custom-dynamic-nav ul.munoz-megamenu li a,
.custom-dynamic-nav ul.hm-dropdown li a {
    display: flex;
    align-items: center;
    padding: 9px 14px;
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.custom-dynamic-nav ul.munoz-megamenu li a:hover,
.custom-dynamic-nav ul.hm-dropdown li a:hover {
    color: var(--primary-light);
    background-color: var(--accent);
    transform: translateX(4px);
    font-weight: 600;
}

/* --- Mobile Menu Toggle & Responsive Rules --- */
.mobile-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .btn-pengajuan-desktop {
        display: none !important;
    }

    .mobile-cta-wrapper {
        display: block !important;
        padding: 16px 24px 24px;
        background: var(--bg-light);
        border-top: 1px solid var(--border);
    }
    
    .header-right {
        gap: 12px;
    }

    .custom-dynamic-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        padding: 0;
        border-top: 1px solid var(--border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
        opacity: 0;
        pointer-events: none;
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    
    .custom-dynamic-nav.is-open {
        max-height: 80vh;
        overflow-y: auto;
        opacity: 1;
        pointer-events: auto;
    }
    
    .custom-dynamic-nav > ul {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        height: auto;
    }
    
    .custom-dynamic-nav > ul > li {
        height: auto;
        padding: 0;
        border-bottom: 1px solid var(--border);
    }
    
    .custom-dynamic-nav > ul > li > a {
        display: block;
        padding: 16px 24px;
        width: 100%;
    }

    .custom-dynamic-nav > ul > li.active > a::after {
        display: none;
    }
    
    /* Modify Megamenu behavior for mobile */
    .custom-dynamic-nav > ul > li:hover > ul.munoz-megamenu,
    .custom-dynamic-nav > ul > li:hover > ul.hm-dropdown {
        display: none;
    }

    .custom-dynamic-nav > ul > li.submenu-open > ul.munoz-megamenu,
    .custom-dynamic-nav > ul > li.submenu-open > ul.hm-dropdown {
        display: block;
        position: static;
        box-shadow: none;
        border: none;
        border-top: 1px dashed var(--border);
        padding: 0;
        background: var(--bg-light);
    }
    
    .custom-dynamic-nav ul.munoz-megamenu > li > span.megamenu-title {
        padding: 12px 24px 4px;
    }
    
    .custom-dynamic-nav ul.munoz-megamenu li a, 
    .custom-dynamic-nav ul.hm-dropdown li a {
        padding: 12px 24px;
    }
}

/* Mega menu internal titles */
.custom-dynamic-nav span.megamenu-title {
    display: block;
    padding: 0 0 12px 0;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 12px;
}

.custom-dynamic-nav ul.munoz-megamenu > li:first-child span.megamenu-title {
    margin-top: 0;
}

/* Hide nested ul styling if megamenu has nested ul */
.custom-dynamic-nav ul.munoz-megamenu > li > ul {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    min-width: auto;
}

/* --- Hero Section Full Width --- */
.hero-full {
    width: 100vw;
    position: relative;
    padding-top: 80px; /* Offset for header */
}

.mySwiperHeroFull {
    width: 100%;
    height: 70vh; /* Adjust as needed */
    min-height: 400px;
}

.mySwiperHeroFull .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8fafc;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Quick Access (Login Cepat) */
.quick-access-wrapper {
    margin-top: -50px; /* Overlap the banner */
    position: relative;
    z-index: 10;
    padding: 0 24px;
}

.quick-access-box {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.qa-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-weight: 600;
    transition: transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
    flex: 1;
}

.qa-item:hover {
    transform: translateY(-4px);
    color: var(--primary);
}

.qa-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease, color 0.3s ease;
}

.qa-icon i {
    width: 28px;
    height: 28px;
}

.qa-item.highlight .qa-icon {
    background: var(--primary);
    color: var(--white);
}

.qa-item:hover .qa-icon {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.2);
}

/* Promo Terbaru Section */
.promo-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.promo-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.promo-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3; /* or 16/9 depending on brochures */
    overflow: hidden;
    background: #f1f5f9;
}

.promo-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    transition: transform 0.5s ease;
}
.promo-bg-blur {
    background-size: cover;
    background-position: center;
    filter: blur(15px);
    transform: scale(1.1);
    opacity: 0.8;
}
.promo-bg-main {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.promo-slide-item:hover .promo-bg-main {
    transform: scale(1.05);
}

.promo-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.promo-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.promo-link {
    margin-top: auto;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.promo-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* --- Marquee Section --- */
.wt-showreel {
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: var(--white);
    white-space: nowrap;
}

.wt-showreel-content {
    display: flex;
}

.wt-showreel-item {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0 60px;
    letter-spacing: -2px;
}

.marquee-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: var(--primary-light); /* Lighter blue for contrast */
    color: var(--white);
    border-radius: 24px; /* Modern squircle shape */
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transition: transform 0.3s ease;
}

.marquee-icon-wrapper svg {
    width: 48px;
    height: 48px;
    stroke: var(--white);
}

.wt-showreel-item:hover .marquee-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
}

/* --- Features Section --- */
.features {
    padding: 80px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: transparent;
    transform: translateY(-5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: var(--accent);
    color: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* --- Simulation Section --- */
.simulation {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.simulation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.simulation-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.simulation-content p {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.simulation-form {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 24px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-value {
    color: var(--primary-light);
    font-weight: 700;
}

.range-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    border: 4px solid var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.select-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 16px center;
    transition: var(--transition);
}

.select-input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.simulation-result {
    background-color: var(--primary);
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    position: relative;
    overflow: hidden;
}

.simulation-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.simulation-result > * {
    position: relative;
    z-index: 2;
}

.result-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.result-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    line-height: 1.5;
}

.simulation-result .btn {
    width: 100%;
    background-color: var(--primary-light);
    border: none;
}

.simulation-result .btn:hover {
    background-color: var(--secondary);
}

/* --- Products Section --- */
.products {
    padding: 100px 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.link-arrow {
    color: var(--primary-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.products-grid {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

.product-card {
    flex: 1;
    height: 100%;
    background: var(--white);
    border: 1px solid #f1f5f9; /* Faint border */
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02); /* Slight default shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.product-header {
    display: block; /* Ensures title sits normally at top left */
    margin-bottom: 12px;
}

.product-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 90px;
    height: 90px;
    color: #eef2ff; /* Solid light blue watermark */
    opacity: 1;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    position: relative; /* Above watermark */
    z-index: 2;
}

.product-desc {
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.product-features {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
}

.feature-check {
    color: var(--primary-light); /* Blue checkmarks */
    width: 18px;
    height: 18px;
}

.product-card .btn {
    width: 100%;
    background: #eef2ff; /* Light blue pill */
    border: none;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px;
    border-radius: 999px; /* Pill shape */
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    margin-top: 24px;
    display: inline-flex;
    justify-content: center;
}

.product-card:hover .btn {
    background: var(--primary-light);
    color: var(--white);
}

/* --- GCG & Promo Section --- */
.gcg-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-light); /* Or white if needed, depending on outer container */
}

.gcg-promo-image-wrapper {
    position: relative;
    width: 100%;
}

.gcg-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.08);
    display: block;
    object-fit: cover;
}

.gcg-promo-image-wrapper .promo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    color: var(--primary);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.gcg-promo-image-wrapper .promo-badge span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-top: 4px;
}

.gcg-text h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 24px;
}

.gcg-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.gcg-promo {
    background-color: var(--bg-light);
}

/* --- Footer --- */
footer {
    background-color: var(--white);
}

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-logo-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-about {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner, .simulation-inner, .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-container {
        flex-direction: column;
    }
    .promo-image, .promo-content {
        width: 100%;
    }
    .promo-image {
        height: 250px;
    }
    .promo-image::after {
        background: linear-gradient(to bottom, transparent, var(--primary-light));
        width: 100%;
        height: 100px;
        top: auto;
        bottom: 0;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .features-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .promo-content h2 {
        font-size: 2.25rem;
    }
    .footer-logos {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   MODERN COMPACT HERO BANNER & INNER PAGE BREADCRUMB
   ========================================================================== */
.breadcrumb-area {
    background: #f8fafc !important;
    padding: 90px 0 10px 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    position: relative !important;
}

.breadcrumb-banner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%) !important;
    border-radius: 20px !important;
    padding: 28px 40px !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.breadcrumb-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-banner-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left !important;
}

.breadcrumb-badge-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.breadcrumb-content h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.breadcrumb-subtext {
    font-size: 13px !important;
    color: #cbd5e1 !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.4 !important;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner, .simulation-inner, .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-container {
        flex-direction: column;
    }
    .promo-image, .promo-content {
        width: 100%;
    }
    .promo-image {
        height: 250px;
    }
    .promo-image::after {
        background: linear-gradient(to bottom, transparent, var(--primary-light));
        width: 100%;
        height: 100px;
        top: auto;
        bottom: 0;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .features-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .promo-content h2 {
        font-size: 2.25rem;
    }
    .footer-logos {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   MODERN COMPACT HERO BANNER & INNER PAGE BREADCRUMB
   ========================================================================== */
.breadcrumb-area {
    background: #f8fafc !important;
    padding: 90px 0 10px 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    position: relative !important;
}

.breadcrumb-banner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%) !important;
    border-radius: 20px !important;
    padding: 28px 40px !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.breadcrumb-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-banner-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left !important;
}

.breadcrumb-badge-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.breadcrumb-content h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.breadcrumb-subtext {
    font-size: 13px !important;
    color: #cbd5e1 !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.4 !important;
}

.breadcrumb-content ul {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    list-style: none !important;
    margin: 0 !important;
}

.breadcrumb-content ul li {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.breadcrumb-content ul li a {
    color: #e0e7ff !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.breadcrumb-content ul li a:hover {
    color: #ffffff !important;
}

.breadcrumb-content ul li.active {
    color: #facc15 !important;
    font-weight: 700 !important;
}

.breadcrumb-icon-graphic {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #60a5fa;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar Nav Hover Effects */
.sidebar-nav-item:hover {
    background: #f1f5f9 !important;
    color: #1e3a8a !important;
    transform: translateX(3px);
}
.sidebar-nav-item.active:hover {
    background: #eff6ff !important;
}

@media (max-width: 1024px) {
    .hero-inner, .simulation-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .products-grid {
        flex-direction: column;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-container {
        flex-direction: column;
    }
    .promo-image, .promo-content {
        width: 100%;
    }
    .promo-image {
        height: 250px;
    }
    .promo-image::after {
        background: linear-gradient(to bottom, transparent, var(--primary-light));
        width: 100%;
        height: 100px;
        top: auto;
        bottom: 0;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .features-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .promo-content h2 {
        font-size: 2.25rem;
    }
    .footer-logos {
        flex-direction: column;
        align-items: center;
    }
    .mySwiperHeroFull {
        height: 50vh;
        min-height: 250px;
    }
    .quick-access-box {
        flex-wrap: wrap;
        gap: 20px;
        padding: 16px;
    }
    .qa-item {
        flex: 1 1 40%;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MODERN COMPACT HERO BANNER & INNER PAGE BREADCRUMB
   ========================================================================== */
.breadcrumb-area {
    background: #f8fafc !important;
    padding: 90px 0 10px 0 !important;
    margin-bottom: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    position: relative !important;
}

.breadcrumb-banner-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1d4ed8 100%) !important;
    border-radius: 20px !important;
    padding: 28px 40px !important;
    color: #ffffff !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.breadcrumb-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-banner-card::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: 20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left !important;
}

.breadcrumb-badge-cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.breadcrumb-content h2 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.breadcrumb-subtext {
    font-size: 13px !important;
    color: #cbd5e1 !important;
    margin: 0 0 14px 0 !important;
    line-height: 1.4 !important;
}

.breadcrumb-content ul {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 6px 16px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    list-style: none !important;
    margin: 0 !important;
}

.breadcrumb-content ul li {
    font-size: 12px !important;
    color: #cbd5e1 !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.breadcrumb-content ul li a {
    color: #e0e7ff !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.breadcrumb-content ul li a:hover {
    color: #ffffff !important;
}

.breadcrumb-content ul li.active {
    color: #facc15 !important;
    font-weight: 700 !important;
}

.breadcrumb-icon-graphic {
    position: relative;
    z-index: 2;
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #60a5fa;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Sidebar Nav Hover Effects */
.sidebar-nav-item:hover {
    background: #f1f5f9 !important;
    color: #1e3a8a !important;
    transform: translateX(3px);
}
.sidebar-nav-item.active:hover {
    background: #eff6ff !important;
}


/* Override style.css conflicts for footer logo */
footer .logo { width: 100% !important; float: none !important; margin: 0 0 20px 0 !important; padding: 0 !important; display: block !important; text-align: left !important; }
footer .logo img { width: auto !important; max-width: 100% !important; }

/* ==========================================================================
   HOMEPAGE NEW REDESIGN (BASED ON MOCKUP)
   ========================================================================== */

/* Header scrolled box-shadow effect */
.home-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Hero New */
.hero-new {
    position: relative;
    width: 100vw;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for header */
    padding-bottom: 80px; /* Adjusted offset */
    background: #f8fafc;
    overflow: hidden;
}
.hero-bg-slider {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-bg-slider .swiper-slide img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-gradient-overlay {
    position: absolute;
    top: 0; left: 0; width: 60%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    z-index: 2;
}
.hero-new-inner {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.hero-new-text {
    max-width: 50%;
}
.hero-new-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-new-text h1 span {
    color: var(--text-dark);
}
.hero-new-text p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.6;
}
.hero-new-buttons {
    display: flex;
    gap: 16px;
}
.btn-primary-dark {
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex; align-items: center; gap: 8px;
    transition: background 0.3s;
}
.btn-primary-dark:hover { background: var(--primary-light); color: var(--white); }
.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex; align-items: center; gap: 8px;
    transition: all 0.3s;
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* Hero Promo Slider (Replaces Right Menu) */
.hero-right-promo {
    width: 480px;
    aspect-ratio: 4 / 3;
    height: auto;
    background: transparent;
    border-radius: 24px;
    border: none;
    box-shadow: none;
    opacity: 0.85;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}
.promo-slide-item {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none !important;
    overflow: hidden;
}
.promo-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    transition: transform 0.5s ease;
}
.promo-bg-blur {
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.2);
    opacity: 0.7;
}
.promo-bg-main {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.promo-slide-item:hover .promo-bg-main {
    transform: scale(1.05);
}
.promo-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
    z-index: 1;
}
.promo-content {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.promo-tag {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.promo-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    max-width: 85%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.promo-next, .promo-prev {
    color: #ffffff !important;
    background: rgba(0,0,0,0.3);
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}
.promo-next:after, .promo-prev:after {
    font-size: 16px !important;
    font-weight: 800;
}
.promo-next:hover, .promo-prev:hover {
    background: rgba(0,0,0,0.6);
}

/* Quick Services */
.quick-services {
    margin-top: -120px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}
.qs-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 20px;
}
.qs-item {
    flex: 1;
    min-width: 240px;
    max-width: 260px;
    height: 340px;
    display: flex; 
    text-align: left;
    text-decoration: none; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.qs-item:hover { 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.qs-blue { 
    background-color: #0f46aa;
    background-image: url('../../secret/assets/images/btn-kredit/bg.png');
    background-size: cover;
    background-position: center;
}
.qs-purple { background: linear-gradient(135deg, #b39ddb 0%, #6a1b9a 100%); }
.qs-green { 
    background-color: #2e7d32;
    background-image: url('../../secret/assets/images/btn-deposito/bg.png');
    background-size: 115% 115%;
    background-position: center;
    background-repeat: no-repeat;
}
.qs-teal { background: linear-gradient(135deg, #4db6ac 0%, #00695c 100%); }

.qs-bg {
    position: absolute;
    top: 0;
    right: -5%;
    width: 65%;
    height: 100%;
    z-index: 1;
}
.qs-blue .qs-bg {
    right: -45px;
    bottom: 0;
    top: auto;
    width: 85%;
    height: 98%;
}
.qs-green .qs-bg,
.qs-teal .qs-bg {
    right: -28px;
    bottom: 0;
    top: auto;
    width: 82%;
    height: 98%;
}
.qs-purple .qs-bg {
    right: -20px;
    bottom: -10px;
    top: auto;
    width: 78%;
    height: 85%;
}
.qs-bg img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    filter: drop-shadow(-8px 10px 15px rgba(0,0,0,0.35)); /* Adds a 3D pop-out shadow to the cutout person */
}

/* Floating 3D Elements */
.qs-floating {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}
.qs-star {
    top: 20px;
    right: 15px;
    width: 42px;
}
.qs-percent {
    top: 34%;
    left: 95px;
    width: 42px;
}
.qs-car {
    bottom: 90px;
    left: 18px;
    width: 110px;
}
.qs-safe {
    bottom: 85px;
    left: 18px;
    width: 105px;
}
.qs-tameng {
    top: 36%;
    left: 95px;
    width: 42px;
}

.qs-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.qs-content strong { 
    position: relative;
    z-index: 5;
    color: #ffffff; 
    font-size: 1.8rem; 
    font-weight: 800; 
    line-height: 1.15;
    margin-bottom: 12px; 
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.qs-content span { 
    position: relative;
    z-index: 5;
    color: rgba(255, 255, 255, 0.92); 
    font-size: 0.82rem; 
    line-height: 1.35; 
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.qs-action {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: auto;
}
.qs-action-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}
.qs-action-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #135eb9;
    font-size: 14px;
    transition: transform 0.3s;
}
.qs-item:hover .qs-action-icon {
    transform: translateX(3px);
}
.qs-item:hover .qs-action {
    opacity: 0.8;
}

/* Why Choose Us */
.why-choose-us { padding: 30px 0 0; }
.wcu-box {
    background: #eff6ff; /* light blue */
    border-radius: 24px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.wcu-item {
    display: flex; align-items: center; gap: 16px;
    flex: 1;
}
.wcu-icon {
    color: var(--primary);
}
.wcu-icon i { width: 40px; height: 40px; stroke-width: 1.5px; }
.wcu-text { display: flex; flex-direction: column; }
.wcu-text strong { color: var(--text-dark); font-size: 1.05rem; margin-bottom: 4px; }
.wcu-text span { color: var(--text-gray); font-size: 0.85rem; line-height: 1.3; }

/* Simulasi New */
.simulasi-new { padding: 40px 0; }
.simulasi-box-dark {
    background: var(--primary);
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    display: flex; flex-direction: column; gap: 30px;
}
.simulasi-header h2 { font-size: 2rem; font-weight: 800; margin-bottom: 8px; color: var(--white); }
.simulasi-header p { color: #cbd5e1; font-size: 1.05rem; margin: 0; }
.simulasi-body {
    display: flex;
    gap: 40px;
}
.simulasi-form-area { flex: 1.5; }
.sf-row { display: flex; gap: 20px; }
.sf-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.sf-group label { font-size: 0.95rem; font-weight: 600; color: #e2e8f0; }
.sf-input-wrap {
    display: flex; align-items: center;
    background: var(--white);
    border-radius: 8px; overflow: hidden;
}
.sf-prefix { padding: 14px 16px; background: #f1f5f9; color: var(--text-dark); font-weight: 700; border-right: 1px solid #e2e8f0; }
.sf-input-wrap input, select#simulasiTenor {
    width: 100%; border: none; padding: 14px; font-size: 1.1rem; font-weight: 700; color: var(--text-dark);
    outline: none;
}
select#simulasiTenor { border-radius: 8px; cursor: pointer; }

.btn-yellow {
    background: #facc15; color: #1e293b; padding: 16px; border: none; border-radius: 8px;
    font-size: 1.1rem; transition: background 0.3s;
}
.btn-yellow:hover { background: #eab308; color: #1e293b; }

.simulasi-result-area {
    flex: 1;
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    color: var(--text-dark);
    position: relative; overflow: hidden;
}
.sr-label { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; }
.sr-sublabel { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 4px; }
.sr-value { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.sr-note { font-size: 0.8rem; color: #94a3b8; line-height: 1.4; }
.sr-bg-icon {
    position: absolute; right: -20px; bottom: -20px; width: 150px; height: 150px;
    color: #f1f5f9; z-index: 0; pointer-events: none;
}
.simulasi-result-area > * { position: relative; z-index: 1; }

/* Promo & Berita Section */
.promo-berita-section { padding: 30px 0; }
.pb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pb-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; border-bottom: 2px solid #e2e8f0; padding-bottom: 12px; }
.pb-title { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin: 0; }
.pb-link { color: var(--primary); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.pb-link:hover { text-decoration: underline; }

.pb-promo-card {
    background: var(--primary);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    color: var(--white);
    min-height: 250px;
}
.pb-promo-content {
    padding: 30px;
    flex: 1;
    display: flex; flex-direction: column; justify-content: center;
    z-index: 2;
}
.pb-promo-content h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.pb-promo-content p { margin: 0; font-size: 0.9rem; color: #cbd5e1; }
.pb-promo-rate { font-size: 3rem; font-weight: 800; line-height: 1; margin-bottom: 20px; color: var(--white); }
.pb-promo-rate span { font-size: 1rem; font-weight: 500; }
.btn-yellow-small { background: #facc15; color: #1e293b; padding: 10px 20px; border-radius: 6px; font-weight: 700; text-decoration: none; display: inline-block; width: max-content; }
.pb-promo-img {
    position: absolute; right: 0; bottom: 0; height: 110%; width: 50%; object-fit: cover;
    mask-image: linear-gradient(to left, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 60%, transparent 100%);
    z-index: 1;
}
.pb-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.pb-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.pb-dots span.active { background: var(--primary); width: 24px; border-radius: 4px; }

.pb-news-list { display: flex; flex-direction: column; gap: 16px; }
.pb-news-item {
    display: flex; gap: 20px; align-items: center;
    background: var(--white);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.3s;
}
.pb-news-item:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.05); transform: translateY(-3px); }
.pb-news-img { width: 100px; height: 75px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.pb-news-img img { width: 100%; height: 100%; object-fit: cover; }
.pb-news-info { display: flex; flex-direction: column; gap: 8px; }
.pb-news-info h4 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin: 0; }
.pb-news-date { font-size: 0.85rem; color: var(--text-gray); }

/* Help Banner */
.help-banner {
    position: relative;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #1e3a8a 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 60px 0;
    color: var(--white);
    overflow: hidden;
    box-shadow: inset 0 5px 20px rgba(0,0,0,0.1);
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.help-banner::before {
    content: ''; position: absolute; top: -50px; left: -50px; width: 200px; height: 200px;
    background: rgba(255,255,255,0.05); border-radius: 50%; z-index: 0; pointer-events: none;
}
.help-banner::after {
    content: ''; position: absolute; bottom: -80px; right: 10%; width: 250px; height: 250px;
    background: rgba(255,255,255,0.05); border-radius: 50%; z-index: 0; pointer-events: none;
}
.hb-inner {
    position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 30px;
}
.hb-icon { 
    width: 80px; height: 80px; background: #ffffff; color: #2563eb;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); flex-shrink: 0;
}
.hb-icon i { width: 36px; height: 36px; stroke-width: 2px; }
.hb-text { flex: 1; }
.hb-text h3 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; color: #ffffff; letter-spacing: -0.5px; }
.hb-text p { font-size: 1.05rem; color: #e2e8f0; margin: 0; line-height: 1.5; }
.btn-whatsapp {
    background: #25d366; color: #ffffff; padding: 16px 32px; border-radius: 50px;
    font-weight: 700; font-size: 1.1rem; display: flex; align-items: center; gap: 12px;
    text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: 2px solid transparent;
}
.btn-whatsapp:hover { 
    background: #128c7e; transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
}
.btn-whatsapp i { font-size: 1.3rem; }


/* Responsive adjustments */
@media (max-width: 1024px) {
    .qs-box { 
        padding: 20px; 
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .qs-item { 
        flex: 0 1 250px; 
        width: 100%;
        max-width: 260px; 
        height: 340px; 
    }
    .wcu-box { flex-wrap: wrap; }
    .wcu-item { flex: 1 1 30%; }
    .simulasi-body { flex-direction: column; }
    .simulasi-result-area { width: 100% !important; }
    .pb-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 991px) {
    /* Hero Section Mobile & Tablet */
    .hero-new {
        height: auto;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .hero-new-inner {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .hero-new-text {
        max-width: 100%;
        width: 100%;
    }
    .hero-new-text h1 {
        font-size: 2.2rem;
        line-height: 1.25;
    }
    .hero-new-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-new-buttons {
        justify-content: center;
    }
    .hero-right-promo {
        width: 100%;
        max-width: 480px;
        aspect-ratio: 16 / 10;
        margin: 0 auto;
    }
    .hero-gradient-overlay {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.8) 100%);
    }

    /* Megamenu dropdown responsive */
    .custom-dynamic-nav ul.munoz-megamenu {
        min-width: 100%;
        width: 100%;
    }

    /* Promo & Berita grid */
    .pb-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* Prevent page horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    .container {
        padding: 0 14px !important;
    }

    /* Hero Banner - 4:3 on mobile */
    .main-hero-banner .swiper-slide > div {
        aspect-ratio: 16/9 !important;
    }
    .main-hero-banner .swiper-slide img {
        object-fit: cover !important;
    }
    .main-hero-next, .main-hero-prev {
        width: 32px !important;
        height: 32px !important;
    }
    .main-hero-next i, .main-hero-prev i {
        font-size: 12px !important;
    }

    /* Hero Text Overlay - scale down proportionally */
    .main-hero-banner .swiper-slide div[style*="max-width:800px"] {
        padding: 16px 4% !important;
        max-width: 100% !important;
    }
    .main-hero-banner .swiper-slide h2 {
        font-size: clamp(1.1rem, 4.5vw, 1.6rem) !important;
        line-height: 1.25 !important;
    }
    .main-hero-banner .swiper-slide p {
        font-size: clamp(0.75rem, 2.2vw, 0.95rem) !important;
        margin: 8px 0 12px !important;
        max-width: 100% !important;
    }
    .main-hero-banner .swiper-slide div[style*="display: flex; gap: 15px"],
    .main-hero-banner .swiper-slide div[style*="display:flex"] {
        gap: 6px !important;
        margin-top: 4px !important;
    }
    .main-hero-banner .swiper-slide a {
        padding: 8px 14px !important;
        font-size: 0.78rem !important;
        gap: 4px !important;
    }

    /* Quick Services */
    .quick-services {
        margin-top: 16px;
        overflow: hidden;
        width: 100%;
    }
    .qs-box { 
        padding: 4px; 
        display: grid; 
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
    }
    .qs-item { 
        width: 100%; 
        max-width: 100%;
        height: auto; 
        min-height: 220px;
        flex: 1 1 auto;
        border-radius: 16px;
        overflow: visible;
        position: relative;
    }
    .qs-content { padding: 16px 14px; width: 100%; }
    .qs-content strong {
        font-size: clamp(1rem, 3.5vw, 1.25rem);
        margin-bottom: 4px;
        letter-spacing: -0.3px;
        word-break: break-word;
    }
    .qs-content span { font-size: 0.70rem; margin-bottom: 0; line-height: 1.25; }
    .qs-action { font-size: 0.72rem; margin-top: auto; }
    .qs-action-text { font-size: 0.72rem; line-height: 1.2; }
    .qs-action-icon { width: 26px; height: 26px; font-size: 11px; }

    .qs-blue .qs-bg {
        right: -10px;
        bottom: 0;
        top: auto;
        width: 75%;
        height: 98%;
    }
    .qs-green .qs-bg,
    .qs-teal .qs-bg {
        right: -10px;
        bottom: 0;
        top: auto;
        width: 75%;
        height: 98%;
    }
    .qs-purple .qs-bg {
        right: -15px;
        bottom: -10px;
        top: auto;
        width: 78%;
        height: 85%;
    }

    /* Hide floating 3D icons on mobile view for a clean layout */
    .qs-floating { display: none !important; }

    /* Form Simulasi Kredit Mobile */
    .simulasi-box-dark {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .simulasi-header h2 {
        font-size: 1.5rem;
    }
    .sf-row {
        flex-direction: column;
        gap: 12px;
    }
    .sr-value {
        font-size: 1.8rem;
    }

    /* Promo Section & Headers Mobile */
    .promo-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .pb-promo-card {
        flex-direction: column;
        min-height: auto;
    }
    .pb-promo-img {
        position: relative;
        width: 100%;
        height: 160px;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .pb-promo-content {
        padding: 20px;
    }
    .pb-news-item {
        gap: 12px;
        padding: 12px;
    }
    .pb-news-img {
        width: 80px;
        height: 65px;
    }
    .pb-news-info h4 {
        font-size: 0.95rem;
    }

    /* Help / CS Banner Mobile */
    .help-banner {
        padding: 40px 0;
    }
    .hb-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hb-icon {
        margin: 0 auto;
    }
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 320px) {
    .qs-box { 
        grid-template-columns: 1fr !important;
        gap: 10px; 
    }
    .qs-item { 
        min-height: 150px;
        height: auto;
    }
    .qs-content {
        padding: 14px 10px;
    }
    .qs-content strong {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }
    .qs-content span {
        font-size: 0.78rem;
        line-height: 1.3;
    }
    .qs-action-text {
        font-size: 0.75rem;
    }
    .qs-action-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .hero-new-text h1 {
        font-size: 1.65rem;
    }
    .hero-new-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    .hero-new-buttons a {
        width: 100%;
        justify-content: center;
    }
    .promo-title {
        font-size: 1.4rem;
    }
    .promo-content {
        padding: 16px;
    }
}

/* Removed old duplicate WCU CSS */

@media (max-width: 480px) {
    .qs-box { padding: 6px; gap: 8px; flex-direction: column; }
    .qs-item { width: 100%; min-width: 100%; max-width: 100%; min-height: 210px; border-radius: 14px; }
    .qs-content { padding: 12px 10px; }
    .qs-content strong { font-size: 1.05rem; margin-bottom: 4px; }
    .qs-content span { font-size: 0.7rem; line-height: 1.2; }
    .qs-action-text { font-size: 0.65rem; }
    .qs-action-icon { width: 26px; height: 26px; font-size: 10px; }
}

@media (max-width: 991px) {
    /* Simulasi */
    .simulasi-new { padding: 30px 0; }
    .simulasi-box-dark { padding: 24px; border-radius: 16px; }
    .simulasi-header h2 { font-size: 1.5rem; }
    .sf-row { flex-direction: column; gap: 12px; }
    .simulasi-result-area { width: 100% !important; padding: 24px; }
    .sr-value { font-size: 1.8rem; }

    /* Promo & Berita Section */
    .promo-berita-section { padding: 40px 0; }
    .pb-grid { grid-template-columns: 1fr; gap: 20px; }
    .pb-col { width: 100%; }
    .pb-promo-card { 
        min-height: 200px; 
        border-radius: 16px;
        flex-direction: row;
    }
    .pb-promo-content { padding: 20px; max-width: 65%; }
    .pb-promo-content h3 { font-size: 1.25rem; }
    .pb-promo-rate { font-size: 2.2rem; margin-bottom: 14px; }
    .pb-promo-img { 
        width: 55% !important; 
        height: 100% !important;
        object-position: right bottom !important;
        mask-image: linear-gradient(to left, black 50%, transparent 100%) !important;
        -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%) !important;
    }
    .mySwiperPromo { width: 100% !important; overflow: hidden; }
    .mySwiperPromo .swiper-slide { width: 100% !important; }
    .promo-pagination { margin-top: 12px !important; }

    /* Berita / News */
    .pb-news-item { padding: 12px; gap: 14px; }
    .pb-news-img { width: 80px; height: 60px; }
    .pb-news-info h4 { font-size: 0.95rem; }

    /* Help Banner */
    .hb-inner { flex-direction: column; text-align: center; gap: 20px; }
    .hb-text h3 { font-size: 1.25rem; }
    .btn-whatsapp { width: 100%; justify-content: center; }

    /* Footer */
    .footer-main { flex-direction: column; align-items: flex-start; text-align: left; gap: 30px; }
    .footer-brand { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }
    .footer-logos-row { justify-content: flex-start; flex-wrap: wrap; }
    .footer-contact-box { text-align: left; }
    .footer-contact-box > div { justify-content: flex-start; }
    .footer-bottom-bar { padding: 20px 0 !important; }
    .footer-bottom-bar > div { flex-direction: column; gap: 10px; text-align: left; justify-content: flex-start !important; align-items: flex-start; }
    .footer-bottom-text { text-align: left !important; }
    .footer-bottom-copyright { text-align: left !important; }
}

/* SIMULASI & FOOTER COLOR OVERRIDES */
.footer-bottom-copyright { text-align: right; }
.simulasi-box-dark { background-color: #214392; }
footer { background-color: #ffffff !important; color: #0f172a !important; border-top: 1px solid #e2e8f0 !important; }
footer .footer-col h4 { color: #0f172a !important; font-weight: 800 !important; }
footer .footer-links a { color: #475569 !important; }
footer .footer-links a:hover { color: #2563eb !important; }
footer .footer-about p { color: #475569 !important; }
footer .footer-bottom-bar { background-color: #f8fafc !important; border-top: 1px solid #e2e8f0 !important; }
footer .footer-bottom-bar div { color: #475569 !important; }
footer .footer-contact-info h5 { color: #0f172a !important; }
footer .footer-contact-info div { background: #f8fafc !important; border-color: #e2e8f0 !important; }
footer .footer-contact-info a { color: #1e3a8a !important; }
footer .footer-logos { border-bottom: 1px solid #e2e8f0 !important; border-top: none !important; padding-bottom: 30px !important; margin-bottom: 40px !important; }
footer .footer-logo-item { color: #1e3a8a !important; font-weight: 600 !important; }
footer .footer-contact-info { background: rgba(0,0,0,0) !important; }
footer .footer-contact-info > div { background: #f8fafc !important; border: 1px solid #e2e8f0 !important; }

/* Extracted Inline Styles */
/* Modern Typography & Vibrant Pill Badges */
.wcu-left-col, .wcu-right-col {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif !important;
}
.wcu-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.wcu-pill-badge.badge-blue {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}
.wcu-pill-badge.badge-gold {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fef3c7;
}
.wcu-pill-badge svg, .wcu-pill-badge i {
    width: 14px;
    height: 14px;
}

/* Tata Letak WCU & Penghargaan */
.wcu-container { display: flex; flex-wrap: wrap; gap: 20px; align-items: stretch; }
.wcu-left-col { flex: 6; min-width: 300px; background: #ffffff; border-radius: 20px; padding: 30px; display: flex; flex-direction: column; border: 1px solid #e2e8f0; }
.wcu-right-col { flex: 4; min-width: 300px; background: #ffffff; border-radius: 20px; padding: 30px; display: flex; flex-direction: column; border: 1px solid #e2e8f0; }
.wcu-section-title-center { font-size: 1.35rem; font-weight: 800; color: #0f172a; text-align: center; margin-bottom: 25px; }
.wcu-header-right { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.wcu-header-right h2 { font-size: 1.35rem; font-weight: 800; color: #0f172a; margin: 0; }
.wcu-header-right a { font-size: 0.85rem; font-weight: 600; color: #ffffff; background: #2563eb; padding: 8px 16px; border-radius: 20px; text-decoration: none; transition: all 0.3s; display: inline-flex; align-items: center; gap: 5px; }
.wcu-header-right a:hover { background: #1d4ed8; }
.wcu-box-left { display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: space-between; align-items: stretch; }
.wcu-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; flex: 1; min-width: 0; margin: 0; padding: 15px 8px; border: 1px solid #e2e8f0; border-radius: 16px; background: #ffffff; box-shadow: 0 4px 6px rgba(0,0,0,0.02); transition: all 0.3s; }
.wcu-item:hover { border-color: #cbd5e1; box-shadow: 0 6px 12px rgba(0,0,0,0.05); transform: translateY(-2px); }
.wcu-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; color: #ffffff; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.wcu-icon i { width: 22px; height: 22px; }
/* Icon colors based on the design */
.wcu-item:nth-child(1) .wcu-icon { background: #2563eb; box-shadow: 0 6px 15px rgba(37, 99, 235, 0.3); }
.wcu-item:nth-child(2) .wcu-icon { background: #059669; box-shadow: 0 6px 15px rgba(5, 150, 105, 0.3); }
.wcu-item:nth-child(3) .wcu-icon { background: #d97706; box-shadow: 0 6px 15px rgba(217, 119, 6, 0.3); }
.wcu-item:nth-child(4) .wcu-icon { background: #7c3aed; box-shadow: 0 6px 15px rgba(124, 58, 237, 0.3); }
.wcu-item:nth-child(5) .wcu-icon { background: #e11d48; box-shadow: 0 6px 15px rgba(225, 29, 72, 0.3); }
.wcu-text { display: flex; flex-direction: column; align-items: center; }
.wcu-text strong { font-size: 0.85rem; font-weight: 800; color: #0f172a; line-height: 1.2; margin-bottom: 6px; }
.wcu-text span { font-size: 0.7rem; color: #64748b; line-height: 1.3; }

.awards-grid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; gap: 15px; flex: 1; }
.award-item { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 15px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; transition: all 0.3s ease; width: 160px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.02); }
.award-item:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.05); }
.award-item img { max-width: 100%; height: 80px; object-fit: contain; margin-bottom: 12px; }
.award-text-container { text-align: center; }
.award-text-container strong { display: block; font-size: 0.9rem; font-weight: 800; color: #0f172a; line-height: 1.2; margin-bottom: 4px; }
.award-text-container span { display: none; }

@media (max-width: 1024px) {
    .wcu-box-left { justify-content: center; flex-wrap: wrap; }
    .wcu-item { min-width: 30%; max-width: none; }
    .wcu-left-col, .wcu-right-col { flex: 1; }
}
@media (max-width: 768px) {
    .wcu-container { gap: 20px; flex-direction: column; }
    .wcu-left-col, .wcu-right-col { min-width: 100%; flex: none; padding: 20px 15px; }
    .wcu-box-left { gap: 10px; }
    .wcu-item { flex: 1 1 45%; max-width: 48%; padding: 15px 10px; }
    .awards-grid { justify-content: center; }
    .award-item { width: 45%; }
}

/* Swiper Hero & Promo & Testimonial Overrides */

/* =========================================
   TESTIMONIAL SECTION & MODAL STYLES
   ========================================= */
.testimonial-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}
.testimonial-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}
.testimonial-header p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
}

.mySwiperTestimonial {
    padding-bottom: 60px; /* space for pagination */
}

.mySwiperTestimonial .swiper-wrapper {
    justify-content: center;
}

.mySwiperTestimonial .swiper-slide {
    display: flex;
    justify-content: center;
    max-width: 440px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #f1f5f9;
    z-index: 1;
}

.testimonial-content {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
}

.testimonial-author-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

/* Pagination Overrides */
.testi-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}
.testi-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 5px;
    background: #0066ff;
}

/* Video Modal */
.testi-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}
.testi-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}
.testi-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transition: color 0.2s;
}
.testi-modal-close:hover {
    color: #ef4444;
}
#testiVideoContainer {
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}
#testiVideoContainer iframe,
#testiVideoContainer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}.mySwiperHero { position: relative; overflow: hidden; }
.main-hero-banner .swiper-pagination { bottom: 20px !important; display: flex; justify-content: center; gap: 8px; }
.main-hero-banner .swiper-pagination-bullet { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; opacity: 1; margin: 0 !important; transition: all 0.3s ease; }
.main-hero-banner .swiper-pagination-bullet-active { background: #1e3a8a !important; width: 24px; border-radius: 4px; }
.promo-pagination .swiper-pagination-bullet { width: 8px !important; height: 8px !important; border-radius: 50% !important; background: #cbd5e1 !important; opacity: 1 !important; transition: all 0.3s ease !important; margin: 0 4px !important; }
.promo-pagination .swiper-pagination-bullet-active { background: #2563eb !important; width: 24px !important; border-radius: 4px !important; }
.pb-col { min-width: 0; }
.mySwiperPromo { width: 100%; overflow: hidden; }

/* Testimoni & Video Lightbox Modals */
.btn-play-video { background: #ffe4e6; color: #e11d48; border: none; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; margin-bottom: 20px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-play-video:hover { background: #e11d48; color: #ffffff; }
.testi-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.8); align-items: center; justify-content: center; }
.testi-modal-content { position: relative; background-color: #000; margin: auto; padding: 0; width: 90%; max-width: 800px; border-radius: 8px; overflow: hidden; height: 0; padding-bottom: 56.25%; }
@supports (aspect-ratio: 16 / 9) { .testi-modal-content { height: auto; padding-bottom: 0; aspect-ratio: 16 / 9; } }
.testi-modal-close { position: absolute; top: -30px; right: 0; color: #fff; font-size: 28px; font-weight: bold; cursor: pointer; }
.testi-modal-close:hover { color: #ccc; }
#testiVideoContainer { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
#testiVideoContainer iframe, #testiVideoContainer video { width: 100%; height: 100%; border: none; }

.sertifikat-modal { display: none; position: fixed; z-index: 999999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 20px; box-sizing: border-box; opacity: 0; transition: opacity 0.3s ease; }
.sertifikat-modal.show { opacity: 1; }
.sertifikat-modal-content { position: relative; max-width: 90vw; max-height: 90vh; background: #ffffff; border-radius: 16px; padding: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); display: flex; flex-direction: column; align-items: center; transform: scale(0.92); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-sizing: border-box; }
.sertifikat-modal.show .sertifikat-modal-content { transform: scale(1); }
.sertifikat-modal-close { position: absolute; top: 10px; right: 18px; color: #64748b; font-size: 32px; font-weight: bold; cursor: pointer; line-height: 1; z-index: 10; transition: color 0.2s; }
.sertifikat-modal-close:hover { color: #ef4444; }
#sertifikatModalImg { max-width: 100%; max-height: 75vh; object-fit: contain; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }
#sertifikatModalCaption { margin-top: 15px; font-size: 1.1rem; font-weight: 700; color: #1e3a8a; text-align: center; }

/* Modal Pengumuman Styles */
#pengumumanModal { display: none; position: fixed; z-index: 999999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.75); backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.4s ease; align-items: center; justify-content: center; }
#pengumumanModal.show { opacity: 1; }
.pengumuman-content { background-color: #ffffff; margin: auto; padding: 0; border-radius: 16px; width: 90%; max-width: 600px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); overflow: hidden; display: flex; flex-direction: column; max-height: 90vh; }
#pengumumanModal.show .pengumuman-content { transform: scale(1); }
.pengumuman-header { background: #f8fafc; padding: 20px 25px; border-bottom: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; }
.pengumuman-header h3 { margin: 0; color: #1e293b; font-size: 1.25rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.pengumuman-close { color: #94a3b8; font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; transition: color 0.2s; }
.pengumuman-close:hover, .pengumuman-close:focus { color: #ef4444; text-decoration: none; }
.pengumuman-body { padding: 25px; overflow-y: auto; color: #334155; font-size: 0.95rem; line-height: 1.6; }
.pengumuman-body img { display: block; max-width: 100%; height: auto; border-radius: 8px; margin: 0 auto 20px auto; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.pengumuman-footer { padding: 20px 25px; background: #f8fafc; border-top: 1px solid #e2e8f0; text-align: right; }
.pengumuman-btn { background: #1e3a8a; color: white; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.pengumuman-btn:hover { background: #1e40af; }

/* About Landing Styles */
.about-landing { font-family: inherit; background: #f8fafc; padding-bottom: 80px; }
.about-hero { position: relative; background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); padding: 100px 0 80px 0; text-align: center; color: #ffffff; overflow: hidden; }
.about-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.about-hero-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.5px; }
.about-hero-subtitle { font-size: 18px; color: #bfdbfe; line-height: 1.6; font-weight: 400; }
.about-intro-section { background: #ffffff; padding: 80px 0; border-bottom: 1px solid #e2e8f0; }
.intro-grid { display: flex; align-items: center; gap: 50px; }
.intro-text-col { flex: 1; }
.intro-badge { display: inline-block; padding: 6px 16px; background: #eff6ff; color: #2563eb; font-size: 13px; font-weight: 700; border-radius: 30px; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.intro-title { font-size: 32px; font-weight: 800; color: #0f172a; margin-bottom: 25px; line-height: 1.3; }
.intro-desc { font-size: 16px; color: #475569; line-height: 1.8; margin-bottom: 20px; }
.intro-image-col { flex: 1; position: relative; }
.intro-image-wrapper { border-radius: 20px; overflow: hidden; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); position: relative; }
.intro-image-wrapper img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.intro-image-wrapper:hover img { transform: scale(1.05); }
.about-nav-section { padding: 40px 0 60px 0; max-width: 1140px; margin: 0 auto; }
.about-nav-title { text-align: center; font-size: 28px; font-weight: 800; color: #0f172a; margin-bottom: 40px; }
.about-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 0 10px; }

@media (max-width: 991px) {
    .about-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .about-cards-grid { grid-template-columns: 1fr; }
}

.nav-action-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px 24px;
    text-decoration: none !important;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.nav-action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    border-radius: 20px 0 0 20px;
    transition: all 0.3s ease;
}
.nav-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.nav-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin: 0;
    flex-shrink: 0;
}
.icon-3d-img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease;
}
.nav-action-card:hover .icon-3d-img {
    transform: scale(1.08) rotate(2deg);
}

.nav-card-body {
    flex: 1;
    min-width: 0;
    padding-bottom: 25px;
}
.nav-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
    line-height: 1.35;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav-card-desc {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.nav-card-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
    position: absolute;
    right: 22px;
    bottom: 22px;
}

/* Color Themes per Card */
.card-sejarah .nav-card-icon { background: #eff6ff; }
.card-sejarah::before { background: #2563eb; }
.card-sejarah .nav-card-arrow { background: #eff6ff; color: #2563eb; }
.card-sejarah:hover { border-color: #bfdbfe; }
.card-sejarah:hover .nav-card-arrow { background: #2563eb; color: #ffffff; transform: translateX(3px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }

.card-visi .nav-card-icon { background: #ecfdf5; }
.card-visi::before { background: #10b981; }
.card-visi .nav-card-arrow { background: #ecfdf5; color: #10b981; }
.card-visi:hover { border-color: #a7f3d0; }
.card-visi:hover .nav-card-arrow { background: #10b981; color: #ffffff; transform: translateX(3px); box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3); }

.card-manajemen .nav-card-icon { background: #f3e8ff; }
.card-manajemen::before { background: #9333ea; }
.card-manajemen .nav-card-arrow { background: #f3e8ff; color: #9333ea; }
.card-manajemen:hover { border-color: #ddd6fe; }
.card-manajemen:hover .nav-card-arrow { background: #9333ea; color: #ffffff; transform: translateX(3px); box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3); }

.card-lokasi .nav-card-icon { background: #fff7ed; }
.card-lokasi::before { background: #f97316; }
.card-lokasi .nav-card-arrow { background: #fff7ed; color: #f97316; }
.card-lokasi:hover { border-color: #ffedd5; }
.card-lokasi:hover .nav-card-arrow { background: #f97316; color: #ffffff; transform: translateX(3px); box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3); }

.card-berita .nav-card-icon { background: #f0f9ff; }
.card-berita::before { background: #0284c7; }
.card-berita .nav-card-arrow { background: #f0f9ff; color: #0284c7; }
.card-berita:hover { border-color: #bae6fd; }
.card-berita:hover .nav-card-arrow { background: #0284c7; color: #ffffff; transform: translateX(3px); box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3); }

.card-laporan .nav-card-icon { background: #fef2f2; }
.card-laporan::before { background: #ef4444; }
.card-laporan .nav-card-arrow { background: #fef2f2; color: #ef4444; }
.card-laporan:hover { border-color: #fecaca; }
.card-laporan:hover .nav-card-arrow { background: #ef4444; color: #ffffff; transform: translateX(3px); box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3); }


/* News & Sidebar Styles */
.modern-news-card { display: flex; flex-direction: row; background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); margin-bottom: 30px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #f8fafc; }
.modern-news-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); }
.modern-news-img-wrapper { flex: 0 0 35%; position: relative; overflow: hidden; background: #f1f5f9; }
.modern-news-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); display: block; }
.modern-news-card:hover .modern-news-img-wrapper img { transform: scale(1.08); }
.modern-news-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #e2e8f0; color: #94a3b8; font-size: 3rem; min-height: 200px; }
.modern-news-content { flex: 1; padding: 35px 40px; display: flex; flex-direction: column; justify-content: center; }
.modern-news-meta { font-size: 13px; color: #64748b; margin-bottom: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.modern-news-meta i { color: #3b82f6; margin-right: 8px; }
.modern-news-title { font-size: 22px; font-weight: 800; color: #0f172a; margin-bottom: 16px; line-height: 1.4; }
.modern-news-title a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
.modern-news-title a:hover { color: #2563eb; }
.modern-news-desc { color: #475569; font-size: 15px; line-height: 1.7; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.modern-news-btn { display: inline-block; padding: 10px 24px; background: #eff6ff; color: #2563eb; font-weight: 700; font-size: 14px; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; align-self: flex-start; border: 1px solid transparent; }
.modern-news-btn:hover { background: #2563eb; color: #fff; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }

.modern-sidebar-container { display: flex; flex-direction: column; gap: 20px; }
.modern-sidebar-widget { background: #fff; border-radius: 16px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); padding: 25px; border: 1px solid #f8fafc; }
.modern-sidebar-header { font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; gap: 10px; }
.modern-sidebar-header i { color: #2563eb; }
.modern-sidebar-list { list-style: none; padding: 0; margin: 0; }
.modern-sidebar-list>li { margin-bottom: 20px; }
.modern-sidebar-list>li:last-child { margin-bottom: 0; }
.modern-sidebar-title { font-size: 13px; font-weight: 800; color: #1e3a8a; text-transform: uppercase; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; letter-spacing: 0.5px; }
.modern-sidebar-title i { color: #2563eb; font-size: 16px; }
.modern-sidebar-sublist { list-style: none; padding: 0; margin: 0; }
.modern-sidebar-sublist>li { margin-bottom: 5px; }
.modern-sidebar-sublist>li>a { display: flex; justify-content: space-between; align-items: center; padding: 12px 15px; color: #475569; font-size: 14px; text-decoration: none; border-radius: 8px; transition: all 0.2s ease; }
.modern-sidebar-sublist>li>a::after { content: "\f105"; font-family: "FontAwesome"; color: #cbd5e1; font-size: 16px; transition: transform 0.2s; }
.modern-sidebar-sublist>li>a:hover { background: #f8fafc; color: #2563eb; }
.modern-sidebar-sublist>li>a:hover::after { color: #2563eb; transform: translateX(3px); }
.modern-sidebar-sublist>li.active>a { background: #eff6ff; color: #2563eb; font-weight: 700; position: relative; }
.modern-sidebar-sublist>li.active>a::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: #2563eb; border-radius: 8px 0 0 8px; }
.modern-sidebar-sublist>li.active>a::after { color: #2563eb; }
.modern-sidebar-cta { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); border-radius: 16px; padding: 30px 20px; text-align: center; color: #fff; box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2); }
.cta-icon { width: 60px; height: 60px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; font-size: 24px; }
.cta-title { font-size: 18px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-desc { font-size: 14px; color: #bfdbfe; line-height: 1.6; margin-bottom: 25px; }
.cta-btn { display: inline-block; background: #22c55e; color: #fff; font-weight: 700; font-size: 15px; padding: 12px 25px; border-radius: 30px; text-decoration: none; transition: all 0.3s ease; width: 100%; box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3); }
.cta-btn:hover { background: #16a34a; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4); }

/* Lokasi Page Styles */
.lokasi-section { background: #f8fafc; padding: 40px 0 80px 0; font-family: inherit; }
.lokasi-hero { text-align: center; margin-bottom: 40px; }
.lokasi-hero-title { font-size: 32px; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.lokasi-container { font-family: inherit; margin-top: 15px; }
.lokasi-filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; border-bottom: 2px solid #e2e8f0; padding-bottom: 12px; }

/* Contact Page Modern Styles */
.contact-page-modern { background: #f8fafc; font-family: inherit; }
.contact-hero { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); padding: 80px 0 60px 0; text-align: center; color: #fff; }
.contact-hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 15px; color: #fff; }
.contact-hero p { font-size: 16px; color: #cbd5e1; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.contact-section-form { padding: 0 0; }
.contact-section-locations { padding: 40px 0 80px 0; }
.modern-form-card { background: #fff; border-radius: 16px; padding: 40px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); border: 1px solid #f1f5f9; height: 100%; }
.modern-form-card h3 { font-size: 24px; font-weight: 700; color: #1e293b; margin-bottom: 30px; padding-bottom: 15px; border-bottom: 2px solid #f1f5f9; }
.modern-input-group { margin-bottom: 20px; }
.modern-input-group label { display: block; font-size: 14px; font-weight: 600; color: #475569; margin-bottom: 8px; }
.modern-input-group label span.required { color: #ef4444; }
.modern-input-group input, .modern-input-group textarea { width: 100%; padding: 14px 16px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 15px; color: #1e293b; background: #f8fafc; transition: all 0.3s ease; }
.modern-input-group input:focus, .modern-input-group textarea:focus { background: #fff; border-color: #3b82f6; outline: none; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1); }
.modern-input-group textarea { min-height: 150px; resize: vertical; }
.modern-btn-submit { background: #2563eb; color: #fff; font-weight: 700; font-size: 16px; padding: 14px 28px; border: none; border-radius: 8px; cursor: pointer; width: 100%; transition: all 0.3s ease; }
.modern-btn-submit:hover { background: #1d4ed8; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }
.contact-info-sidebar { display: flex; flex-direction: column; gap: 20px; height: 100%; }
.info-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); border: 1px solid #f1f5f9; display: flex; align-items: flex-start; gap: 20px; transition: transform 0.3s ease; }
.info-card:hover { transform: translateY(-5px); }
.info-card-icon { width: 60px; height: 60px; border-radius: 12px; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.info-card-content h4 { font-size: 18px; font-weight: 700; color: #1e293b; margin: 0 0 8px 0; }
.info-card-content p, .info-card-content a { font-size: 15px; color: #64748b; margin: 0; text-decoration: none; line-height: 1.5; }
.info-card-content a:hover { color: #2563eb; }
.locations-header { text-align: center; margin-bottom: 40px; }
.locations-header h2 { font-size: 32px; font-weight: 800; color: #1e293b; margin-bottom: 15px; }
.locations-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.loc-tab-btn { background: #fff; border: 1px solid #cbd5e1; color: #475569; padding: 10px 24px; border-radius: 30px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.loc-tab-btn:hover { border-color: #94a3b8; background: #f1f5f9; }
.loc-tab-btn.active { background: #2563eb; color: #fff; border-color: #2563eb; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2); }
.locations-grid { display: none; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; animation: fadeIn 0.4s ease forwards; }
.locations-grid.active { display: grid; }
.branch-card { background: #fff; border-radius: 12px; padding: 25px; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02); transition: all 0.3s ease; }
.branch-card:hover { border-color: #cbd5e1; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06); }
.branch-type { display: inline-block; background: #eff6ff; color: #2563eb; font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.branch-name { font-size: 18px; font-weight: 700; color: #1e293b; margin-bottom: 15px; }
.branch-detail { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 14px; color: #475569; line-height: 1.5; }
.branch-detail i { color: #94a3b8; font-size: 16px; margin-top: 3px; width: 16px; text-align: center; }
.branch-detail a { color: #3b82f6; text-decoration: none; transition: color 0.2s; }
.branch-detail a:hover { color: #1d4ed8; text-decoration: underline; }
.branch-detail a.wa-link { color: #16a34a; font-weight: 600; }
@media (max-width: 991px) { .contact-info-sidebar { margin-top: 30px; } }

/* Lokasi Grid & Card Styles */
.lokasi-tabs-container { display: flex; justify-content: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.lokasi-tab-btn { background: #ffffff; border: 1px solid #cbd5e1; color: #475569; padding: 8px 16px; border-radius: 30px; font-size: 13.5px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; gap: 6px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03); }
.lokasi-tab-btn:hover { background: #f1f5f9; transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); }
.lokasi-tab-btn.active { background: #2563eb; color: #ffffff; border-color: #2563eb; box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25); }
.lokasi-grid-wrapper { display: none; animation: fadeIn 0.4s ease-in-out; }
.lokasi-grid-wrapper.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.lokasi-grid { display: grid; gap: 16px; }
.grid-3-col { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2-col { grid-template-columns: repeat(2, 1fr); }
.grid-1-col { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
@media (min-width: 992px) { .grid-3-col { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .grid-3-col, .grid-2-col { grid-template-columns: 1fr; } }
.lokasi-card { background: #ffffff; border-radius: 16px; border: 1px solid #e2e8f0; box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02); overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); position: relative; }
.lokasi-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.12), 0 8px 12px -4px rgba(15, 23, 42, 0.04); border-color: #bfdbfe; }
.lokasi-img-container { position: relative; width: 100%; height: 260px; overflow: hidden; background: #f8fafc; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; justify-content: center; }
.lokasi-img-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(25px) brightness(1.05) saturate(1.2); transform: scale(1.25); opacity: 0.35; pointer-events: none; }
.lokasi-img-main { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: 10px; filter: drop-shadow(0 4px 12px rgba(15, 23, 42, 0.12)); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.lokasi-card:hover .lokasi-img-main { transform: scale(1.03); }
.lokasi-header { padding: 16px 20px; border-bottom: 1px dashed #e2e8f0; display: flex; align-items: center; gap: 12px; }
.lokasi-icon { width: 44px; height: 44px; background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%); color: #2563eb; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12); }
.lokasi-title-wrap { flex: 1; }
.lokasi-badge { display: none; }
.lokasi-name { font-size: 18px; font-weight: 700; color: #0f172a; margin: 0; line-height: 1.3; letter-spacing: -0.3px; }
.lokasi-body { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.lokasi-info-row { display: flex; gap: 10px; align-items: flex-start; }
.lokasi-info-icon { width: 26px; height: 26px; background: #f1f5f9; color: #3b82f6; border-radius: 8px; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lokasi-info-text { color: #334155; font-size: 13.5px; line-height: 1.5; font-weight: 450; }
.lokasi-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 20px 16px 20px; background: #f8fafc; border-top: 1px solid #f1f5f9; }
.btn-lokasi { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 14px; border-radius: 10px; font-weight: 600; font-size: 13px; text-decoration: none; transition: all 0.25s ease; }
.btn-lokasi-wa { background: #10b981; color: #ffffff; box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2); }
.btn-lokasi-wa:hover { background: #059669; color: #ffffff; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3); }
.btn-lokasi-map { background: #ffffff; color: #2563eb; border: 1px solid #dbeafe; box-shadow: 0 2px 8px rgba(37, 99, 235, 0.06); }
.btn-lokasi-map:hover { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37, 99, 235, 0.12); }
.lokasi-map-container { padding: 0 20px 14px 20px; }
.lokasi-map-box { width: 100%; height: 140px; border-radius: 12px; overflow: hidden; border: 1px solid #e2e8f0; }
.lokasi-map-box iframe { width: 100% !important; height: 100% !important; border: none; }
@media (max-width: 768px) { .lokasi-grid { grid-template-columns: 1fr; } .lokasi-actions { grid-template-columns: 1fr; } }

/* Tabungan Detail Layout Styles */
.tabungan-layout { font-family: 'Inter', sans-serif; }
.tabungan-hero { display: flex; gap: 30px; align-items: flex-start; margin-bottom: 40px; background: transparent; border: none; border-radius: 0; flex-wrap: wrap; }
.tabungan-hero-text { flex: 1; min-width: 280px; padding: 0; }
.tabungan-hero-img-container { flex: 1; min-width: 280px; width: 100%; background: transparent; padding: 0; min-height: auto; position: relative; overflow: hidden; border-radius: 12px; }
.tabungan-hero-img-container::before { display: none; }
.tabungan-hero-img { width: 100%; height: auto; max-width: 100%; max-height: none; display: block; position: relative; z-index: 2; border-radius: 12px; box-shadow: none; transition: transform 0.3s ease; }
.tabungan-hero-img:hover { transform: translateY(-5px); }
.tabungan-badge { display: inline-flex; align-items: center; gap: 8px; color: #3b82f6; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.tabungan-title { font-size: 42px; font-weight: 800; color: #0f172a; margin: 0 0 20px 0; letter-spacing: -1px; }
.tabungan-desc { font-size: 15px; color: #475569; line-height: 1.7; }
.tabungan-grid-section { display: flex; gap: 20px; margin-bottom: 20px; flex-wrap: wrap; }
.tabungan-keunggulan { flex: 2; min-width: 300px; border: 1px solid #e2e8f0; border-radius: 8px; padding: 30px; background: #fff; }
.tabungan-ketentuan { flex: 1; min-width: 250px; border: 1px solid #e2e8f0; border-radius: 8px; padding: 30px; background: #fff; }
.section-title { font-size: 18px; font-weight: 700; color: #1e3a8a; margin-top: 0; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
.keunggulan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
.keunggulan-item { display: flex; gap: 15px; }
.keunggulan-icon { width: 45px; height: 45px; background: #eff6ff; color: #2563eb; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.keunggulan-text h5 { font-size: 14px; font-weight: 700; color: #0f172a; margin: 0 0 5px 0; }
.keunggulan-text p { font-size: 13px; color: #64748b; margin: 0; line-height: 1.5; }
.ketentuan-list { padding: 0; margin: 0; list-style: none; }
.ketentuan-list li { font-size: 13px; color: #475569; margin-bottom: 15px; display: flex; gap: 10px; line-height: 1.5; }
.ketentuan-list li i { color: #3b82f6; margin-top: 3px; font-size: 14px; }
.tabungan-bottom-section { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.tabungan-persyaratan { flex: 1; min-width: 300px; border: 1px solid #e2e8f0; border-radius: 8px; padding: 30px; background: #f8fafc; }
.tabungan-biaya { flex: 1; min-width: 300px; border: 1px solid #e2e8f0; border-radius: 8px; padding: 30px; background: #f8fafc; }
.persyaratan-doc-box { background: #fff; border: 1px solid #e2e8f0; border-radius: 6px; padding: 20px; display: flex; gap: 15px; margin-top: 20px; }
.persyaratan-doc-box i { color: #64748b; font-size: 24px; margin-top: 5px; }
.biaya-list { padding-left: 18px; margin: 0; color: #334155; font-size: 13px; line-height: 1.8; }
.biaya-list li { margin-bottom: 10px; }
.tabungan-cta { background: #eff6ff; border-radius: 8px; padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; margin-bottom: 20px; }
.tabungan-cta-text h4 { font-size: 22px; font-weight: 800; color: #1e3a8a; margin: 0 0 8px 0; }
.tabungan-cta-text p { font-size: 14px; color: #3b82f6; margin: 0; }
.btn-tabungan-cta { background: #0f172a; color: #fff; font-weight: 700; font-size: 14px; padding: 12px 25px; border-radius: 6px; text-decoration: none; display: inline-block; transition: background 0.2s; border: none; cursor: pointer; }
.btn-tabungan-cta:hover { background: #1e293b; color: #fff; text-decoration: none; }

/* --- Zoom Lens Magnifier Feature --- */
.js-zoom-lens,
[data-zoom-lens="true"],
.prod-card-cover {
    position: relative;
    cursor: crosshair;
}

.img-zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #2563eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 99;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
    background-repeat: no-repeat;
    background-color: #ffffff;
}

.img-zoom-lens.is-active {
    opacity: 1;
    transform: scale(1);
}

/* Daftar Penghargaan (Penghargaan Page) */
.awards-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}
.award-page-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    cursor: pointer;
}
.award-page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}
.award-page-img-wrap {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.award-page-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.award-page-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}
.award-page-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   Clean & Modern News Detail Styles (No Clipping / Collision)
   ========================================================================== */

.news-detail-page-container {
    padding-top: 110px; /* Clears 80px fixed header cleanly */
    padding-bottom: 80px;
    background-color: #f8fafc;
    min-height: 100vh;
}

.news-header-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 36px 40px;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .news-header-card {
        padding: 24px 20px;
    }
}

.news-clean-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.news-clean-breadcrumb a {
    color: #2563eb;
    font-weight: 500;
    transition: color 0.2s ease;
}

.news-clean-breadcrumb a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.news-clean-breadcrumb span.sep {
    color: #cbd5e1;
}

.news-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.news-clean-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    margin-bottom: 20px;
}

.news-clean-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.88rem;
    color: #64748b;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.news-clean-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.news-clean-meta-item i, .news-clean-meta-item svg {
    color: #2563eb;
}

.news-detail-main-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .news-detail-main-card {
        padding: 24px 20px;
    }
}

.news-featured-img-box {
    position: relative;
    width: 100%;
    max-height: 480px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    background: #f1f5f9;
}

.news-featured-img-box img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

/* Body Content Typography */
.news-article-content {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #334155;
}

.news-article-content p {
    margin-bottom: 20px;
}

.news-article-content h2, 
.news-article-content h3, 
.news-article-content h4 {
    color: #0f172a;
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 16px;
    position: relative;
    border-left: 4px solid #2563eb;
    padding-left: 14px;
}

.news-article-content h2 { font-size: 1.55rem; }
.news-article-content h3 { font-size: 1.3rem; }
.news-article-content h4 { font-size: 1.12rem; }

.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    margin: 24px 0;
}

.news-article-content blockquote {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
    border-left: 4px solid #2563eb;
    border-radius: 0 16px 16px 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-style: italic;
    color: #1e3a8a;
    font-weight: 500;
}

.news-article-content ul, 
.news-article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.news-article-content li {
    margin-bottom: 8px;
}

/* Share & Action Box */
.news-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 28px;
    margin-top: 36px;
    border-top: 1px solid #e2e8f0;
}

.news-share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-share-label {
    font-weight: 700;
    font-size: 0.92rem;
    color: #0f172a;
    margin-right: 6px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    text-decoration: none !important;
}

.share-btn-wa {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.share-btn-wa:hover {
    background: #1eb956;
    transform: translateY(-2px);
    color: #fff;
}

.share-btn-fb {
    background: #1877F2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2);
}
.share-btn-fb:hover {
    background: #1464c9;
    transform: translateY(-2px);
    color: #fff;
}

.share-btn-tw {
    background: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}
.share-btn-tw:hover {
    background: #1e293b;
    transform: translateY(-2px);
    color: #fff;
}

.share-btn-copy {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
}
.share-btn-copy:hover {
    background: #e2e8f0;
    color: #0f172a;
    transform: translateY(-2px);
}

.btn-back-news {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f8fafc;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: 999px;
    border: 1px solid #cbd5e1;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.btn-back-news:hover {
    background: #1e3a8a;
    color: #ffffff;
    border-color: #1e3a8a;
    transform: translateX(-4px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.15);
}

/* Modern Sidebar Styling */
.news-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.news-sidebar-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 24px;
    margin-bottom: 24px;
}

.news-sidebar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 2px solid #eff6ff;
}

.news-sidebar-header i, .news-sidebar-header svg {
    color: #2563eb;
}

.sidebar-news-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.25s ease;
    align-items: center;
    text-decoration: none !important;
}

.sidebar-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-news-item:hover {
    transform: translateX(4px);
}

.sidebar-news-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-news-thumb i, .sidebar-news-thumb svg {
    color: #2563eb;
    width: 22px;
    height: 22px;
}

.sidebar-news-info {
    flex: 1;
    min-width: 0;
}

.sidebar-news-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.sidebar-news-item:hover .sidebar-news-title {
    color: #2563eb;
}

.sidebar-news-date {
    font-size: 0.78rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Toast Copy Link Notification */
.copy-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.copy-toast.show {
    transform: translateY(0);
    opacity: 1;
}