/* Landing Page Styles */
:root {
    --primary-blue: #3d6d73;
    --light-blue: #a4c2c5;
    --pink: #ec4899;
    --purple: #a78bfa;
    --orange: #f97316;
    --green: #10b981;
    --yellow: #eab308;

    /* Consistent Spacing */
    --section-padding-desktop: 100px;
    --section-padding-tablet: 60px;
    --section-padding-mobile: 40px;
    --container-padding-desktop: 20px;
    --container-padding-tablet: 20px;
    --container-padding-mobile: 16px;

    /* Consistent Font Sizes */
    --h1-size-desktop: 3.5rem;
    --h1-size-tablet: 2.5rem;
    --h1-size-mobile: 2rem;
    --h2-size-desktop: 2.5rem;
    --h2-size-tablet: 2rem;
    --h2-size-mobile: 1.75rem;
    --body-size-desktop: 1rem;
    --body-size-tablet: 0.95rem;
    --body-size-mobile: 0.9rem;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Global overflow prevention - Force no horizontal scroll */
body > * {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

section[id] {
    scroll-margin-top: 120px !important;
}

/* Hide all scrollbars */
* {
    box-sizing: border-box;
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none !important;
    /* Chrome, Safari, Opera */
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Force hide all scrollbars - More specific selectors */
html,
body,
section,
div,
main,
article,
aside,
header,
footer,
nav,
.container,
.container-fluid,
.row,
[class*="col-"],
.hero-section,
.hero-illustration,
.hero-image-wrapper,
.about-section-modern,
.journey-timeline-vertical,
.feature-grid,
.testimonial-carousel-wrapper,
.pricing-section-modern,
.landing-footer-modern {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
section::-webkit-scrollbar,
div::-webkit-scrollbar,
main::-webkit-scrollbar,
article::-webkit-scrollbar,
aside::-webkit-scrollbar,
header::-webkit-scrollbar,
footer::-webkit-scrollbar,
nav::-webkit-scrollbar,
.container::-webkit-scrollbar,
.container-fluid::-webkit-scrollbar,
.row::-webkit-scrollbar,
.hero-section::-webkit-scrollbar,
.hero-illustration::-webkit-scrollbar,
.hero-image-wrapper::-webkit-scrollbar,
.hero-image-wrapper-modern::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Reveal on Scroll Animation - DISABLED (All content visible immediately) */
.reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
}

.reveal-on-scroll[data-reveal-delay] {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
}

.no-js .reveal-on-scroll,
.reveal-on-scroll.no-animation {
    opacity: 1;
    transform: none;
    animation: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }
}

/* Header */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-header .navbar {
    padding: 0.5rem 0;
    min-height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar saat di atas (belum di-scroll) - Transparan */
.landing-header .navbar {
    background: transparent;
    box-shadow: none;
}

/* Navbar saat di-scroll - Modern dengan blur dan shadow */
.landing-header.scrolled .navbar {
    background: rgba(118, 125, 136, 0.092) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(118, 125, 136, 0.3);
    padding: 0.4rem 0;
    min-height: 56px;
}

/* Fallback untuk browser yang tidak support backdrop-filter */
@supports not (backdrop-filter: blur(15px)) {
    .landing-header.scrolled .navbar {
        background: rgba(118, 125, 136, 0.95) !important;
    }
}

.landing-header .navbar-brand {
    font-size: 1.25rem;
    color: var(--primary-blue) !important;
    transition: all 0.3s ease;
    font-weight: 700;
    padding: 0.25rem 0;
}

.landing-header .navbar-brand img,
.navbar-logo-img {
    height: 32px !important;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.landing-header.scrolled .navbar-brand img {
    height: 30px !important;
}

.landing-header .nav-link {
    color: #1e293b !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.4rem 0.6rem !important;
}

/* Nav link saat navbar transparan (belum di-scroll) */
.landing-header:not(.scrolled) .nav-link {
    color: #1e293b !important;
}

/* Nav link saat navbar scrolled */
.landing-header.scrolled .nav-link {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.347);
}

.landing-header.scrolled .nav-link:hover {
    color: #e0e7ff !important;
}

.landing-header.scrolled .navbar-brand {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.landing-header.scrolled .navbar-brand span {
    color: #ffffff !important;
}

.landing-header .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.landing-header.scrolled .nav-link::after {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.landing-header .nav-link:hover::after {
    width: 70%;
}

.landing-header .nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Base Primary Button Override for Landing Page */
.btn-primary {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #315a5f !important;
    border-color: #315a5f !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 109, 115, 0.35);
}

/* Navbar toggler untuk mobile */
.landing-header .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

@media (min-width: 992px) {
    .navbar-toggler,
    .landing-header .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse,
    .landing-header .navbar-collapse {
        display: flex !important;
        flex-basis: auto !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Ensure mobile menu behaves correctly when open */
@media (max-width: 991.98px) {
    .navbar-collapse.show {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

.landing-header .navbar-toggler:focus {
    box-shadow: none;
}

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

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

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

/* Navbar Collapse - Konsistensi Background untuk Mobile Menu */
.landing-header .navbar-collapse {
    background: transparent;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
}

/* Mobile Menu - Background Konsisten */
@media (max-width: 991.98px) {
    .landing-header .navbar-collapse {
        background: #ffffff !important;
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .landing-header.scrolled .navbar-collapse {
        background: rgba(118, 125, 136, 0.75) !important;
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    }

    /* Pastikan semua child elements memiliki background yang sama */
    .landing-header .navbar-collapse .navbar-nav {
        background: transparent !important;
    }

    .landing-header .navbar-collapse .navbar-nav > * {
        background: transparent !important;
    }

    .landing-header.scrolled .navbar-collapse .navbar-nav {
        background: transparent !important;
    }

    .landing-header.scrolled .navbar-collapse .navbar-nav > * {
        background: transparent !important;
    }

    .landing-header .navbar-collapse .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        margin: 0.25rem 0;
        transition: all 0.3s ease;
        background: transparent !important;
    }

    .landing-header .navbar-collapse .nav-link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .landing-header .navbar-collapse .nav-item {
        background: transparent !important;
    }

    /* Pastikan tidak ada elemen yang override background */
    .landing-header .navbar-collapse * {
        background-color: transparent !important;
    }

    .landing-header.scrolled .navbar-collapse * {
        background-color: inherit !important;
    }
}

/* Tombol Masuk di navbar */
.landing-header .nav-link.btn {
    border-radius: 6px;
    padding: 0.4rem 1rem !important;
    margin-left: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.landing-header.scrolled .nav-link.btn {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

.landing-header .nav-link.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 109, 115, 0.35);
}

.landing-header.scrolled .nav-link.btn:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Body padding untuk fixed navbar */
body {
    padding-top: 0;
}

/* Hero Section */
/* Hero Section - 2 Column Layout with Light Blue Gradient */
.hero-section {
    background: linear-gradient(
        90deg,
        #e0f2f1 0%,
        #f0fdfa 50%,
        #ffffff 100%
    ) !important;
    padding: 120px 0 80px 0 !important;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    /* Ensure full height feel */
    display: flex;
    align-items: center;
}

@media (max-width: 991.98px) {
    .hero-section {
        background: linear-gradient(
            180deg,
            #e0f2f1 0%,
            #f0fdfa 100%
        ) !important;
        text-align: center;
        padding-top: 120px !important;
        /* Slightly reduced top padding */
        padding-bottom: 40px !important;
        /* Significantly reduced bottom padding */
        display: block;
        min-height: auto !important;
        /* Let content define height on mobile to avoid gaps */
    }
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #0f172a !important;
    /* Dark Navy */
    margin-bottom: 1.5rem !important;
    display: block !important;
}

.hero-title .text-primary {
    color: #0f172a !important;
    /* Also Dark Navy per reference image style, or keep slightly lighter? Image shows uniform dark text, maybe slight variation. User text had 'CPNS & Kedinasan' on 2nd line. */
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem !important;
    color: #334155 !important;
    /* Darker gray/slate for better contrast on blue */
    line-height: 1.6 !important;
    max-width: 100% !important;
    margin-bottom: 2rem !important;
    font-weight: 400 !important;
}

@media (max-width: 991.98px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-subtitle a {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.hero-section .btn {
    border-radius: 12px !important;
    padding: 15px 50px !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    transition: all 0.3s ease;
}

.hero-section .btn-primary {
    background-color: #1e293b !important;
    /* Dark Navy Button */
    border-color: #1e293b !important;
    color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 59, 0.5);
}

.hero-section .btn-white {
    background: transparent !important;
    /* Transparent/White mix */
    border: 2px solid #1e293b !important;
    color: #1e293b !important;
}

.hero-section .btn-primary:hover {
    background-color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(30, 41, 59, 0.5);
}

.hero-section .btn-white:hover {
    background: #1e293b !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.hero-section .btn-white:hover {
    background: #f8fafc !important;
    transform: translateY(-2px);
}

/* Button override */
.btn-white {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #1e293b;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Image Wrapper Modern & Mobile Overlay Logic */
.hero-image-wrapper-modern {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImage 6s ease-in-out infinite;
}

@media (max-width: 991.98px) {
    .mobile-image-overlay {
        position: absolute !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        /* Adjusted from 120% to prevent horizontal scroll */
        height: auto;
        z-index: 0 !important;
        opacity: 0.15;
        /* Faded background effect */
        pointer-events: none;
    }

    .hero-image-wrapper-modern {
        animation: none;
        /* Disable float on background to avoid dizzying effect */
        overflow: hidden;
        /* Ensure no overflow from children on mobile */
    }

    .hero-image-wrapper-modern img {
        width: 80%;
        /* Limit width inside overlay */
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .hero-image-wrapper-modern {
        justify-content: flex-end;
        padding-right: 0;
    }
}

.hero-img-modern {
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* Blue Rounded Background Shape */
.hero-bg-shape {
    position: absolute;
    top: 50px;
    right: 0;
    width: 90%;
    height: 90%;
    background: #f0fdfa;
    border: 1px solid rgba(61, 109, 115, 0.1);
    border-radius: 60px 60px 60px 60px;
    /* Rounded corners */
    z-index: 0;
    transform: rotate(-3deg);
    /* Slight tilt for dynamism */
}

@media (min-width: 992px) {
    .hero-bg-shape {
        width: 420px;
        height: 520px;
        border-radius: 40px;
        /* More rectangular like reference */
        transform: none;
        right: 0px;
        /* Aligned with flex-end wrapper */
    }
}

/* Person Image */
.hero-person-container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    overflow: visible !important;
}

.hero-img-modern {
    height: 110%;
    /* Make it pop out */
    width: auto;
    object-fit: contain;
    margin-bottom: -40px;
    /* Alignment */
}

/* Floating Badges Modern (Reference Match) */
.floating-badge-modern {
    position: absolute;
    background: #ffffff;
    padding: 8px 10px;
    /* Tight padding to hug content */
    padding-right: 8px;
    /* Balanced padding */
    border-radius: 50px;
    /* Pill shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Soft premium shadow */
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    /* High z-index to sit on top */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatBadge 3s ease-in-out infinite;
    min-width: 180px;
    /* Ensure generic width */
}

.floating-badge-modern:hover {
    transform: scale(1.05) translateY(-5px);
}

/* Icon Container */
.badge-icon-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Pill Content (The Blue Button Part) */
.badge-pill-content {
    background: linear-gradient(135deg, #4b868d 0%, #315a5f 100%);
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    flex-grow: 1;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(75, 134, 141, 0.5);
}

/* Positioning Badges (Specific Tweaks) */
.badge-top-left {
    top: 25%;
    left: 40px;
    /* Moved further right from 20px */
}

.badge-bottom-left {
    bottom: 25%;
    left: 100px;
    /* Moved further right from 60px */
    animation-delay: 1.5s;
    /* Sync offset */
}

/* Animations */
@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
        min-height: 4.5em;
        /* Adjusted for mobile */
    }

    .hero-subtitle {
        text-align: center;
        font-size: 1rem;
    }

    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-image-wrapper-modern {
        height: 450px;
        margin-top: 30px;
        overflow: visible !important;
    }

    .badge-top-left {
        left: 30px;
        /* Moved right for mobile */
        top: 15%;
        transform: scale(0.85);
    }

    .badge-bottom-left {
        left: 40px;
        /* Moved right for mobile */
        bottom: 15%;
        transform: scale(0.85);
    }

    .floating-badge-modern {
        min-width: 150px;
        padding: 6px 8px;
    }

    .badge-pill-content {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-image-wrapper-modern {
        height: 380px;
    }

    .badge-top-left {
        top: 10%;
        left: 0;
        /* Changed from -15px */
    }

    .badge-bottom-left {
        bottom: 10%;
        left: 0;
        /* Changed from -15px */
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 140px !important;
        /* Extra spacing untuk very small screens */
        padding-bottom: 50px !important;
    }
}

.hero-section::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.hero-section .container {
    overflow-x: visible !important;
    /* Allow badges to float out */
    max-width: 100% !important;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    /* Context for absolute items */
}

.hero-section .row {
    overflow-x: visible !important;
    /* Allow badges to float out */
    max-width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.hero-section .col-lg-6 {
    max-width: 100% !important;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}

/* Blur shadow di bagian bawah hero section untuk transisi ke section berikutnya */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scaleX(0.98) !important;
    /* Slightly reduce to prevent overflow */
    transform-origin: center;
    width: 100%;
    max-width: 100% !important;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(240, 249, 255, 0.8) 0%,
        rgba(240, 249, 255, 0.5) 50%,
        rgba(240, 249, 255, 0) 100%
    );
    filter: blur(40px);
    -webkit-filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    box-sizing: border-box;
}

.hero-illustration {
    position: relative;
    overflow: visible !important;
    /* Allow badges to float out */
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-illustration::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100% !important;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
    /* Allow badges to float out */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-image-wrapper::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

.hero-main-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Person Wrapper - Background biru bulat dengan gambar */
.hero-person-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b83f600 0%, #60a5fa00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3); */
    overflow: visible;
    /* Allow it to breathe */
}

.hero-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-person-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

/* Hero Feature Cards - Card putih dengan icon biru */
.hero-feature-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    min-width: 200px;
    max-width: calc(100% - 40px) !important;
    /* Prevent overflow */
    box-sizing: border-box;
}

.hero-card-1 {
    top: 15%;
    left: clamp(5%, 5%, calc(100% - 240px));
    /* Prevent going outside */
    right: auto;
}

.hero-card-2 {
    bottom: 25%;
    left: clamp(5%, 5%, calc(100% - 240px));
    /* Prevent going outside */
    right: auto;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b83f6 0%, #60a5fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.hero-card-text {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
}

.hero-circle-icon {
    position: absolute;
    z-index: 2;
    text-align: center;
    top: var(--icon-top, auto);
    left: var(--icon-left, auto);
    bottom: var(--icon-bottom, auto);
    right: var(--icon-right, auto);
    max-width: calc(100% - 20px) !important;
    /* Prevent overflow */
    box-sizing: border-box;
    overflow: visible;
}

.hero-icon-1 {
    left: clamp(5%, var(--icon-left, 5%), calc(100% - 120px)) !important;
}

.hero-icon-2 {
    right: clamp(10%, var(--icon-right, 10%), calc(100% - 120px)) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-circle.bg-light-blue {
    background: linear-gradient(135deg, #a4c2c5 0%, #3d6d73 100%) !important;
}

.icon-circle.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%) !important;
}

.icon-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Animasi Mengembang untuk Reveal Expand */
.reveal-expand {
    opacity: 0;
    transform: scale(0);
    animation: expandIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--expand-delay, 0s);
    visibility: visible !important;
}

.reveal-expand-label {
    opacity: 0;
    transform: scale(0);
    animation: expandIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--expand-delay, 0s);
    visibility: visible !important;
}

@keyframes expandIn {
    0% {
        opacity: 0;
        transform: scale(0);
        visibility: visible;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }
}

/* Fallback: Jika animasi tidak berjalan, tetap tampilkan elemen */
.reveal-expand,
.reveal-expand-label {
    animation-fill-mode: forwards;
}

/* Pastikan elemen terlihat setelah animasi selesai */
.reveal-expand.animation-complete,
.reveal-expand-label.animation-complete {
    opacity: 1 !important;
    transform: scale(1) !important;
    visibility: visible !important;
}

.bg-light-blue {
    background: linear-gradient(135deg, #a4c2c5 0%, #3d6d73 100%);
}

.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* About Section Modern */
.about-section-modern {
    background: #ffffff;
    padding: var(--section-padding-desktop, 100px) 0 !important;
    position: relative;
    overflow: visible;
    /* Changed to visible to allow blur extension */
    z-index: 0;
    /* Base layer */
}

/* Blur shadow di bagian bawah about section */
.about-section-modern::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) scaleX(1);
    transform-origin: center;
    width: 100%;
    max-width: 100%;
    height: 80px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(40px);
    -webkit-filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
}

.about-image-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Pattern Biru */
.about-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: transparent !important;
    background-image: none !important;
    z-index: 0;
}

/* White Panel dengan Rounded Corners */
.about-white-panel {
    position: relative;
    width: 90%;
    height: 90%;
    background: #ffffff;
    border-radius: 0 40px 40px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    z-index: 1;
    overflow: hidden;
}

/* Logo */
.about-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 3;
}

.logo-bold {
    color: var(--primary-blue);
    font-weight: 800;
}

.logo-divider {
    color: var(--primary-blue);
    margin: 0 8px;
    opacity: 0.5;
}

.logo-regular {
    color: var(--primary-blue);
    font-weight: 400;
}

/* Gambar Person */
.about-person-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 85%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 2;
}

.about-person-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.about-person-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 200px;
    color: rgba(61, 109, 115, 0.2);
    background: transparent;
}

/* Floating Cards */
.about-floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 4;
    min-width: 120px;
}

.about-card-1 {
    top: 20%;
    left: 10%;
}

.about-card-2 {
    bottom: 25%;
    right: 15%;
}

.floating-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.floating-card-icon.bg-light-blue {
    background: linear-gradient(135deg, #a4c2c5 0%, #3d6d73 100%) !important;
}

.floating-card-icon.bg-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%) !important;
}

.floating-card-label {
    padding: 6px 16px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.bg-light-blue-label {
    background: linear-gradient(135deg, #a4c2c5 0%, #3d6d73 100%);
}

.bg-pink-label {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Abstract Shapes */
.about-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-blue);
    bottom: 10%;
    right: 5%;
}

.shape-square {
    width: 30px;
    height: 30px;
    background: var(--primary-blue);
    top: 15%;
    right: 20%;
    transform: rotate(45deg);
}

.shape-plus {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 15%;
}

.shape-plus::before,
.shape-plus::after {
    content: "";
    position: absolute;
    background: var(--primary-blue);
}

.shape-plus::before {
    width: 100%;
    height: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.shape-plus::after {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.shape-line {
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
    top: 25%;
    right: 25%;
    transform: rotate(45deg);
}

/* About Content */
.about-content {
    padding: 20px 0;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    display: block;
}

.title-line-1 {
    display: block;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    color: var(--primary-blue);
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
}

.about-description p {
    margin-bottom: 1.5rem;
}

/* Journey Section - Professional Styling */
.journey-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 165, 233, 0.3),
        transparent
    );
}

/* Journey Header - Professional */
.journey-header {
    position: relative;
    z-index: 1;
}

.journey-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.journey-title {
    font-size: 2.75rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1e293b;
}

.text-gradient {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.journey-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Journey Timeline - Vertical Modern */
.journey-header p {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--primary-blue);
}

.journey-timeline-vertical {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

/* Pastikan container tidak overflow */
#mengapa {
    overflow: visible;
    position: relative;
}

#mengapa .container {
    overflow: visible;
    max-width: 100%;
    position: relative;
}

#mengapa .row {
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
    position: relative;
}

#mengapa .col-lg-10 {
    overflow: visible;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

/* Pastikan tidak ada elemen yang keluar dari container */
.journey-timeline-vertical * {
    box-sizing: border-box;
}

/* Pastikan card tidak keluar dari grid */
.journey-step-vertical {
    contain: layout style;
}

.journey-step-vertical {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 0;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: journeyStepFadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--step-index) * 0.2s);
    will-change: opacity, transform;
    min-height: 180px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    padding: 0;
}

/* Tambahkan margin bottom hanya pada step terakhir */
.journey-step-vertical:last-child {
    margin-bottom: 50px;
}

/* Desktop: Icon di tengah, text bergantian kiri-kanan */
/* Duplikasi dihapus - menggunakan yang di bawah */

/* Pastikan grid columns tidak overlap */
.journey-step-vertical > * {
    box-sizing: border-box;
}

/* Optimasi: Setelah animasi selesai, hapus will-change untuk performa */
.journey-step-vertical.animation-complete {
    will-change: auto;
}

/* Desktop: Icon di tengah, text bergantian kiri-kanan (seperti gambar kedua) */
@media (min-width: 992px) {
    .journey-step-vertical {
        grid-template-columns: 1fr auto 1fr !important;
        gap: 50px;
        margin-bottom: 60px;
        align-items: center;
    }

    .journey-step-content {
        display: contents !important;
    }

    .journey-card-left {
        grid-column: 1 !important;
        text-align: right !important;
        justify-self: end !important;
        max-width: 100%;
    }

    .journey-card-right {
        grid-column: 3 !important;
        text-align: left !important;
        justify-self: start !important;
        max-width: 100%;
    }

    .journey-icon-wrapper {
        grid-column: 2 !important;
        justify-self: center !important;
        width: 60px;
        min-width: 60px;
    }

    .journey-spacer {
        display: block !important;
    }
}

/* Desktop Large - Perbaikan alignment */
@media (min-width: 1200px) {
    .journey-step-vertical {
        gap: 60px;
        margin-bottom: 70px;
    }

    .journey-card-vertical {
        padding: 36px 40px;
        min-height: 180px;
    }

    .journey-card-title {
        font-size: 1.5rem;
    }

    .journey-card-description {
        font-size: 1.1rem;
    }

    .journey-icon-square {
        width: 90px;
        height: 90px;
    }

    .journey-icon {
        font-size: 2rem;
    }

    .journey-step-number {
        font-size: 1rem;
    }

    .journey-connector-line {
        min-height: 80px;
        flex: 1;
        margin-top: 0;
        align-self: stretch;
    }
}

/* Vertical Center Tech Line */
.journey-tech-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(148, 163, 184, 0.4) 0px,
        rgba(148, 163, 184, 0.4) 4px,
        transparent 4px,
        transparent 8px
    );
    transform: translateX(-50%);
    z-index: 0;
}

.journey-tech-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary-blue),
        transparent
    );
    transform: translateX(-50%);
    filter: blur(1px);
    animation: pulseTechLine 3s infinite linear;
}

@keyframes pulseTechLine {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
}

@keyframes journeyStepFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-step-content {
    display: contents;
}

.journey-card-vertical {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: relative;
    z-index: 1;
    overflow: hidden;
    word-wrap: break-word;
    border: 1px solid rgba(14, 165, 233, 0.1);
}

.journey-card-vertical::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--step-color, #0ea5e9),
        var(--step-color, #3b82f6)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.journey-card-vertical:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.journey-card-vertical:hover::before {
    opacity: 1;
}

.journey-card-title {
    font-size: 1.35rem;
    line-height: 1.4;
    color: #1e293b;
    margin: 0 0 12px 0;
    position: relative;
    padding-left: 16px;
}

.journey-card-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(
        135deg,
        var(--step-color, #0ea5e9),
        var(--step-color, #3b82f6)
    );
    border-radius: 2px;
}

.journey-card-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.journey-card-left {
    text-align: right;
    grid-column: 1;
    justify-self: end;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-right: 0;
}

.journey-card-right {
    text-align: left;
    grid-column: 3;
    justify-self: start;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    margin-left: 0;
}

.journey-card-vertical h5 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #1e293b;
    line-height: 1.4;
}

.journey-card-vertical p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.journey-card-vertical p u {
    text-decoration: underline;
    color: var(--primary-blue);
    font-weight: 600;
}

.journey-spacer {
    display: block;
    width: 100%;
}

/* Desktop: Show spacer untuk alignment kiri-kanan */
@media (min-width: 992px) {
    .journey-spacer {
        display: block;
    }
}

/* Mobile: Hide spacer */
@media (max-width: 991.98px) {
    .journey-spacer {
        display: none !important;
    }
}

.journey-icon-wrapper {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 60px;
    min-width: 60px;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 0;
}

.journey-icon-square {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    background: linear-gradient(
        135deg,
        var(--step-color, #0ea5e9) 0%,
        var(--step-color, #3b82f6) 100%
    );
    flex-shrink: 0;
    overflow: hidden;
}

.journey-icon-square::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.journey-icon-square:hover::before {
    opacity: 1;
}

.journey-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
    display: block;
}

.journey-step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
    display: block;
    position: relative;
    z-index: 1;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.journey-step-vertical:hover .journey-icon-square {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.journey-connector-line {
    width: 4px;
    flex: 1;
    min-height: 60px;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 2px;
    position: relative;
    z-index: 1;
    transition: height 0.3s ease;
    background: linear-gradient(
        to bottom,
        var(--gradient-from, #0ea5e9) 0%,
        var(--gradient-to, #ec4899) 100%
    );
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
    display: block;
    flex-shrink: 0;
}

.journey-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.journey-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
    gap: 0.75rem;
}

.journey-line {
    width: 4px;
    flex: 1 1 50px;
    background: linear-gradient(180deg, #0ea5e9 0%, #8b5cf6 100%);
    border-radius: 999px;
}

.journey-node-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--journey-color, #2563eb);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.journey-node.is-start .journey-line-top,
.journey-node.is-end .journey-line-bottom {
    visibility: hidden;
}

.journey-card-right {
    text-align: left;
}

@media (max-width: 992px) {
    .journey-step {
        grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
    }
}

@media (max-width: 767.98px) {
    .journey-step {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .journey-card-placeholder {
        display: none;
    }

    .journey-node {
        flex-direction: row;
        min-height: auto;
        gap: 1rem;
    }

    .journey-line {
        display: none;
    }

    .journey-node-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Feature Cards */
.feature-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.bg-pink-light {
    background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
    color: #831843;
}

.bg-pink-light .feature-icon {
    color: var(--pink);
}

.bg-purple-light {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
    color: #581c87;
}

.bg-purple-light .feature-icon {
    color: var(--purple);
}

.bg-orange-light {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #7c2d12;
}

.bg-orange-light .feature-icon {
    color: var(--orange);
}

.bg-yellow-light {
    background: linear-gradient(135deg, #fef9c3 0%, #fef08a 100%);
    color: #713f12;
}

.bg-yellow-light .feature-icon {
    color: var(--yellow);
}

.bg-blue-light {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e3a8a;
}

.bg-blue-light .feature-icon {
    color: var(--primary-blue);
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.testimonial-carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    position: relative;
    --translate-x: 0%;
    transform: translateX(var(--translate-x));
    transform: translateX(0);
    /* Default explicitly */
    transition: transform 0.5s ease-in-out;
    /* Smooth slide */
    display: flex;
    /* Ensure flex layout */
}

/* .testimonial-carousel-track.carousel-sliding removed as we use direct transition */

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonial-carousel-wrapper {
        margin: 0;
    }

    .testimonial-slide {
        min-width: 33.333333%;
        padding: 0 12px;
    }

    .testimonial-carousel-track {
        display: flex;
    }
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 30px 24px !important;
        background: linear-gradient(
            145deg,
            #0f203b 0%,
            #1e3a8a 100%
        ) !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
        text-align: left !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* Changed from space-between to allow natural flow */
        min-height: auto !important;
        /* Allow card to grow with content */
        height: auto !important;
    }

    .testimonial-quote i {
        color: rgba(255, 255, 255, 0.4) !important;
        font-size: 1.5rem;
        display: block;
        margin-bottom: 10px;
    }

    .testimonial-quote p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #ffffff !important;
        font-style: italic;
        opacity: 0.95;
        margin-bottom: 20px;
        white-space: normal !important;
        /* Ensure text wraps */
        overflow-wrap: break-word;
        /* Prevent overflow */
    }

    .testimonial-author {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 15px;
        margin-top: 20px;
        /* Standard margin instead of auto */
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 20px;
    }

    .testimonial-author strong {
        color: #ffffff !important;
        font-size: 1rem;
    }

    .testimonial-author small {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.85rem;
    }

    .testimonial-slide {
        padding: 0 10px;
    }
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(59, 130, 246, 0.05) 0%,
        rgba(139, 92, 246, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.testimonial-card > * {
    position: relative;
    z-index: 1;
}

/* Testimonial card hover effect */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive testimonial animation */
@media (max-width: 768px) {
    .testimonial-card.active {
        transform: scale(1.02);
        box-shadow:
            0 15px 30px rgba(59, 130, 246, 0.2),
            0 0 0 2px rgba(59, 130, 246, 0.1);
    }

    .testimonial-card:not(.active) {
        opacity: 0.9;
    }
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

.testimonial-quote p {
    font-style: italic;
    color: #64748b;
    margin-top: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
}

.author-info strong {
    display: block;
    color: #1e293b;
}

/* Package Cards */
.package-card {
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.package-card.border-primary {
    border: 3px solid var(--primary-blue);
}

.package-card.border-pink {
    border: 3px solid var(--pink);
}

.package-price {
    margin: 20px 0;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: "✓";
    color: var(--green);
    font-weight: bold;
    margin-right: 10px;
}

.btn-pink {
    background: var(--pink);
    border-color: var(--pink);
    color: white;
}

.btn-pink:hover {
    background: #db2777;
    border-color: #db2777;
    color: white;
}

/* Modern Feature Grid */

/* Modern Feature Grid - Updated to match Reference Image */
.feature-card-modern {
    position: relative;
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    min-height: 420px;
    /* Taller card */
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: none;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card-text {
    max-width: 100%;
    /* Use full width but text alignment is key */
    z-index: 2;
    position: relative;
    text-align: left;
    margin-bottom: auto;
    /* Push text to top */
    margin-top: auto;
    /* Center vertically if needed, or remove for top align */
}

/* Specific text positioning based on image */
.feature-card-text h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Gradients matching the reference */
.feature-card-pink {
    /* Left Card: Soft Pink */
    background: linear-gradient(135deg, #317e8d 0%, #2cbdfe 100%);
}

.feature-card-red {
    /* Center Card: Deep Red/Pink */
    background: linear-gradient(135deg, #388268 0%, #00d8f526 100%);
}

.feature-card-blue {
    /* Right Card: Blue */
    background: linear-gradient(135deg, #317e8d 0%, #ff6a88 55%, #ff99ac 100%);
}

/* Illustration / Icon positioning */
.feature-illustration {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    /* Occupy bottom right corner */
    max-width: 250px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

/* Specific Card Layout adjustments */
.feature-card-modern .feature-card-text {
    margin-top: 0;
    margin-bottom: auto;
    padding-top: 2rem;
    /* Give some space from top */
}

.feature-card-modern.feature-card-pink .feature-illustration {
    width: 220px;
    right: -10px;
}

.feature-card-modern.feature-card-red .feature-illustration {
    /* Center card has a watermark icon style */
    opacity: 0.4;
    width: 180px;
    right: 20px;
    bottom: 20px;
    filter: invert(1) brightness(2);
    /* Make icon white */
}

.feature-card-modern.feature-card-blue .feature-illustration {
    width: 240px;
    right: -20px;
}

.feature-card-main .feature-illustration-placeholder,
.feature-card-wide .feature-illustration-placeholder {
    width: clamp(200px, 50%, 360px);
    height: clamp(180px, 45%, 280px);
}

.feature-card-purple .feature-illustration-placeholder,
.feature-card-orange .feature-illustration-placeholder {
    width: clamp(150px, 60%, 220px);
    height: clamp(120px, 50%, 200px);
}

.feature-card-vertical .feature-illustration-placeholder {
    width: clamp(220px, 85%, 360px);
    height: clamp(200px, 70%, 320px);
}

@media (max-width: 1199.98px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "main main"
            "purple vertical"
            "orange wide";
    }

    .feature-card-text {
        max-width: 70%;
    }
}

@media (max-width: 767.98px) {
    .feature-grid {
        grid-template-columns: 1fr !important;
        grid-template-areas:
            "main"
            "purple"
            "vertical"
            "orange"
            "wide" !important;
        gap: 20px !important;
    }

    .feature-card-modern {
        min-height: auto !important;
        height: auto !important;
        padding: 30px 20px !important;
        overflow: visible !important;
        margin-bottom: 25px !important;
    }

    .feature-illustration {
        width: 45% !important;
        max-width: 160px !important;
        bottom: 0 !important;
        right: 0 !important;
    }

    .feature-card-text {
        max-width: 100% !important;
    }

    .feature-card-text h5 {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }

    .feature-card-text p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .feature-illustration {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-top: 0;
        width: clamp(120px, 40%, 200px);
        max-height: 80%;
        align-self: auto;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .feature-card-vertical .feature-illustration {
        width: clamp(150px, 50%, 250px);
    }

    .feature-illustration-placeholder {
        width: clamp(120px, 40%, 200px) !important;
        height: clamp(100px, 35%, 180px) !important;
    }

    .feature-illustration-placeholder i {
        font-size: clamp(60px, 12vw, 100px) !important;
    }
}

/* New Pricing Section */
/* Modern Pricing Section - Sama Persis dengan Gambar */
.pricing-section-modern {
    background: linear-gradient(
        135deg,
        #60a5fa 0%,
        #8b5cf6 50%,
        #eca24800 100%
    );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.pricing-section-modern * {
    pointer-events: auto;
}

.pricing-section::before,
.pricing-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(0);
}

.pricing-section::before {
    top: -60px;
    left: 0;
}

.pricing-section::after {
    bottom: -80px;
    right: 40px;
}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-toggle .nav-link {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.65rem 1.75rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.pricing-toggle .nav-link.active {
    color: #0f5edd;
    background: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(15, 94, 221, 0.2);
}

/* Pricing Title */
.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

/* ===================================
   TESTIMONIAL SECTION MODERN
   =================================== */

.testimonial-section-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-section-modern::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-section-modern::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(139, 92, 246, 0.08) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}

/* Carousel Wrapper */
.testimonial-carousel-modern {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Carousel Track */
.testimonial-track-modern {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
    width: 100%;
}

/* Carousel Slide - Always show all 3 cards on desktop */
.testimonial-slide-modern {
    flex: 0 0 auto;
    padding: 0;
}

/* Desktop: Show all 3 cards at once */
@media (min-width: 992px) {
    .testimonial-slide-modern {
        width: calc(33.333% - 16px);
    }

    .testimonial-track-modern {
        width: 300%;
        /* 3 sets of 3 cards = 9 cards total for smooth infinite loop */
    }
}

/* Tablet: Show 2 cards */
@media (min-width: 768px) and (max-width: 991.98px) {
    .testimonial-slide-modern {
        width: calc(50% - 12px);
    }
}

/* Mobile: Show 1 card */
@media (max-width: 767.98px) {
    .testimonial-slide-modern {
        width: 100%;
    }
}

/* Navigation Dots */
.testimonial-dots-modern {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot-modern {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot-modern:hover {
    background: rgba(59, 130, 246, 0.5);
    transform: scale(1.1);
}

.dot-modern.active {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    width: 32px;
    border-radius: 6px;
    border-color: rgba(59, 130, 246, 0.2);
}

/* Testimonial Card Modern */
.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

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

/* Quote Icon */
.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.testimonial-quote-icon i {
    font-size: 24px;
    color: #ffffff;
}

/* Testimonial Text */
.testimonial-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

/* Rating Stars */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

/* Author Section Modern */
.testimonial-author-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar-modern {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-avatar-modern i {
    font-size: 32px;
    color: #3b82f6;
}

.author-details {
    flex: 1;
}

.author-name {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.author-title {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Dark Mode Support */
[data-theme="dark"] .testimonial-section-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .testimonial-card-modern {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .testimonial-card-modern:hover {
    background: rgba(30, 41, 59, 0.9);
}

[data-theme="dark"] .testimonial-text {
    color: #e2e8f0;
}

[data-theme="dark"] .author-name {
    color: #ffffff;
}

[data-theme="dark"] .author-title {
    color: #94a3b8;
}

[data-theme="dark"] .author-avatar-modern {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .author-avatar-modern i {
    color: #60a5fa;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .testimonial-section-modern {
        padding: 60px 0;
    }

    .testimonial-card-modern {
        padding: 28px;
    }
}

@media (max-width: 767.98px) {
    .testimonial-section-modern {
        padding: 50px 0;
    }

    .testimonial-card-modern {
        padding: 24px;
        margin-bottom: 24px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar-modern {
        width: 48px;
        height: 48px;
    }

    .author-avatar-modern i {
        font-size: 28px;
    }
}

/* ===================================
   END TESTIMONIAL SECTION MODERN
   =================================== */

/* Pricing Section Modern */
.pricing-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    pointer-events: auto;
}

.pricing-cards-container .row {
    pointer-events: auto;
}

.pricing-cards-container .col-lg-3,
.pricing-cards-container .col-md-6 {
    pointer-events: auto;
}

/* Modern Pricing Card */
.pricing-card-modern {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: 500px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    z-index: 1;
    cursor: default;
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Pricing Badge Modern - Gradient di pojok kiri atas */
.pricing-badge-modern {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 24px;
    border-radius: 0 0 20px 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--badge-from, #3b82f6) 0%,
        var(--badge-to, #8b5cf6) 100%
    );
}

/* Pricing Content */
.pricing-content {
    padding: 50px 24px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 2;
    pointer-events: auto;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    user-select: text;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    display: block;
    margin-bottom: 4px;
    pointer-events: auto;
    user-select: text;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    display: block;
    pointer-events: auto;
    user-select: text;
}

/* Pricing Description */
.pricing-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 60px;
    pointer-events: auto;
    user-select: text;
}

/* Pricing Features List */
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    pointer-events: auto;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    pointer-events: auto;
    user-select: text;
}

.pricing-features-list li i {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
    pointer-events: none;
}

.pricing-features-list li span {
    pointer-events: auto;
    user-select: text;
}

/* Feature Included - Checkmark berwarna */
.feature-included {
    color: #0f172a;
}

.feature-included i {
    /* Color will be set via JavaScript from data-check-color attribute */
    color: inherit;
}

/* Feature Excluded - X abu-abu */
.feature-excluded {
    color: #94a3b8;
}

.feature-excluded i {
    color: #cbd5e1;
}

/* Pricing Button - BUY NOW */
.pricing-btn-buy {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.pricing-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: #ffffff !important;
    text-decoration: none;
    background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
}

.pricing-btn-buy:active {
    transform: translateY(0);
}

.pricing-btn-buy:focus {
    outline: none;
    box-shadow:
        0 4px 12px rgba(139, 92, 246, 0.3),
        0 0 0 3px rgba(139, 92, 246, 0.2);
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 2px solid transparent;
    pointer-events: none;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.6))
        border-box;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.2);
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card-header {
    margin-bottom: 24px;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.pricing-value-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.pricing-value {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.pricing-original {
    display: block;
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-top: 2px;
}

.pricing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: #64748b !important;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    display: flex;
    gap: 10px;
    color: #0f172a;
    font-weight: 500;
}

.pricing-features li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.pricing-empty {
    padding: 2.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    backdrop-filter: blur(6px);
}

/* Package Tabs */
.nav-pills .nav-link {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    margin: 0 5px;
    border-radius: 25px;
}

.nav-pills .nav-link.active {
    background: white;
    color: var(--primary-blue) !important;
}

.bg-gradient-primary .btn-light {
    color: var(--primary-blue) !important;
    background: #ffffff !important;
    font-weight: 700 !important;
}

/* CTA Section */
.bg-gradient-primary {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--purple) 50%,
        var(--pink) 100%
    );
    position: relative;
    overflow: hidden;
    /* Prevent blur extensions from causing horizontal scroll */
    padding: 80px 0 150px 0;
    /* Increased bottom padding untuk prevent content overlap dengan footer */
    margin-bottom: 0;
    z-index: 1;
    /* Ensure it's above other sections but below footer */
}

/* Ensure CTA content is above blur shadow and visible */
.bg-gradient-primary .container {
    position: relative;
    z-index: 2;
    /* Above blur shadow */
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Blur transition di bagian bawah CTA section - Diperkuat untuk transisi yang lebih jelas */
.bg-gradient-primary::after {
    content: "";
    position: absolute;
    bottom: -40px;
    /* Reduced - hanya untuk smooth transition */
    left: 0;
    /* Changed from 50% to align easily */
    right: 0;
    /* Added to cover full width */
    width: 100%;
    max-width: 100%;
    height: 100px;
    /* Reduced height */
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 39, 1) 0%,
        rgba(10, 14, 39, 0.95) 15%,
        rgba(10, 14, 39, 0.85) 30%,
        rgba(10, 14, 39, 0.7) 50%,
        rgba(10, 14, 39, 0.5) 70%,
        rgba(10, 14, 39, 0.3) 85%,
        rgba(10, 14, 39, 0.1) 95%,
        rgba(10, 14, 39, 0) 100%
    );
    filter: blur(50px);
    /* Reduced blur */
    -webkit-filter: blur(50px);
    z-index: 0;
    /* Below content but above background */
    pointer-events: none;
    opacity: 0.8;
    /* Reduced opacity */
}

/* Footer */
/* Modern Footer - Gradient Background dengan Blur Effect dan Transisi Smooth */
.landing-footer-modern {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.95) 0%,
        rgba(30, 27, 75, 0.9) 20%,
        rgba(76, 29, 149, 0.85) 40%,
        rgba(124, 45, 18, 0.8) 60%,
        rgba(185, 28, 28, 0.85) 80%,
        rgba(239, 68, 68, 0.9) 100%
    );
    color: #ffffff;
    padding: 40px 0 20px 0;
    /* Reduced padding - footer lebih kecil */
    position: relative;
    overflow: hidden;
    margin-top: -50px;
    /* Reduced overlap - hanya untuk blur transition */
    padding-top: 90px;
    /* Reduced padding-top untuk kompensasi margin-top negatif */
    box-shadow: inset 0 0 100px rgba(159, 156, 156, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    z-index: 3;
    /* Above CTA section and its blur shadow */
}

/* Blur Shadow Transition di bagian atas footer - Diperkuat untuk transisi yang lebih jelas */
.landing-footer-modern::before {
    content: "";
    position: absolute;
    top: -60px;
    /* Reduced - hanya untuk smooth transition */
    left: 50%;
    transform: translateX(-50%) scaleX(1);
    /* Slightly reduced */
    transform-origin: center;
    width: 100%;
    max-width: 100%;
    height: 100px;
    /* Reduced height */
    background: linear-gradient(
        to bottom,
        rgba(10, 14, 39, 0) 0%,
        rgba(10, 14, 39, 0.1) 10%,
        rgba(10, 14, 39, 0.3) 25%,
        rgba(10, 14, 39, 0.5) 40%,
        rgba(10, 14, 39, 0.7) 55%,
        rgba(10, 14, 39, 0.85) 70%,
        rgba(10, 14, 39, 0.95) 85%,
        rgba(10, 14, 39, 1) 100%
    );
    filter: blur(50px);
    /* Reduced blur */
    -webkit-filter: blur(50px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    /* Reduced opacity */
}

/* Background gradient blur effect - Untuk mengurangi saturasi warna */
.landing-footer-modern::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    /* Reduced scale untuk prevent overflow */
    transform-origin: center;
    width: 100%;
    max-width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.3) 0%,
        rgba(30, 27, 75, 0.25) 25%,
        rgba(92, 29, 149, 0.25) 50%,
        rgba(18, 99, 124, 0.25) 75%,
        rgba(38, 181, 220, 0.3) 100%
    );
    filter: blur(60px) saturate(0.5);
    -webkit-filter: blur(60px) saturate(0.5);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.landing-footer-modern .container {
    position: relative;
    z-index: 4;
    /* Above footer blur effects and CTA section */
    filter: blur(0);
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    margin-top: 0;
    /* Ensure no extra margin */
    padding-top: 0;
    /* Ensure no extra padding */
}

.landing-footer-modern .row {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.landing-footer-modern .row > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
    /* Reduced margin between columns */
}

/* Pastikan semua konten footer berada di atas blur effects */
.landing-footer-modern > * {
    position: relative;
    z-index: 4;
    /* Above footer blur effects */
}

/* Ensure footer content is always visible */
.landing-footer-modern .row,
.landing-footer-modern .footer-title-modern,
.landing-footer-modern .footer-description,
.landing-footer-modern .footer-links,
.landing-footer-modern .social-links-modern,
.landing-footer-modern .footer-divider,
.landing-footer-modern .footer-copyright {
    position: relative;
    z-index: 5;
    /* Above all blur effects */
}

/* Prevent any content overlap */
.bg-gradient-primary .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.landing-footer-modern .container {
    margin-top: 0;
    padding-top: 0;
}

/* Global container dan row - Prevent horizontal overflow */
.container,
.container-fluid {
    max-width: 100% !important;
    /* Pastikan tidak melebihi viewport */
    overflow-x: hidden !important;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Consistent Section Styling - Semua section memiliki styling yang sama */
section {
    overflow-x: hidden !important;
    overflow-y: visible;
    /* Allow vertical blur extension */
    max-width: 100% !important;
    /* Pastikan tidak melebihi viewport */
    position: relative;
    width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

section::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* Prevent overflow on all section children */
section .container,
section .container-fluid {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

section .row {
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100% !important;
}

section [class*="col-"] {
    overflow-x: hidden !important;
    max-width: 100% !important;
    box-sizing: border-box;
}

/* Consistent Section Padding */
section.py-5 {
    padding-top: var(--section-padding-desktop, 100px);
    padding-bottom: var(--section-padding-desktop, 100px);
}

/* Consistent Container */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding-desktop, 20px);
    padding-right: var(--container-padding-desktop, 20px);
    box-sizing: border-box;
}

/* Consistent Typography */
h1,
.h1 {
    font-size: var(--h1-size-desktop, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: var(--h2-size-desktop, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3,
.h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
}

p,
.lead {
    font-size: var(--body-size-desktop, 1rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Ensure all positioned elements don't cause overflow */
[class*="section"],
[class*="wrapper"] {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

/* Fix for elements with negative positioning - Prevent overflow */
[class*="section"]::before,
[class*="section"]::after {
    max-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box;
}

/* Footer Logo */
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 16px;
    display: block;
    object-fit: contain;
}

/* Footer Logo Container - Lebih Besar */
.landing-footer .col-lg-4:first-child h3 {
    font-size: 1.75rem !important;
    margin-bottom: 1rem;
}

.landing-footer .col-lg-4:first-child .d-flex {
    margin-bottom: 1.5rem;
}

.landing-footer .col-lg-4:first-child .d-flex > div:first-child {
    width: 80px !important;
    height: 80px !important;
    min-width: 80px;
    min-height: 80px;
}

.landing-footer .col-lg-4:first-child .d-flex > div:first-child svg {
    width: 50px !important;
    height: 50px !important;
}

@media (max-width: 991.98px) {
    .landing-footer .col-lg-4:first-child h3 {
        font-size: 1.5rem !important;
    }

    .landing-footer .col-lg-4:first-child .d-flex > div:first-child {
        width: 70px !important;
        height: 70px !important;
    }

    .landing-footer .col-lg-4:first-child .d-flex > div:first-child svg {
        width: 45px !important;
        height: 45px !important;
    }
}

@media (max-width: 767.98px) {
    .landing-footer .col-lg-4:first-child h3 {
        font-size: 1.35rem !important;
    }

    .landing-footer .col-lg-4:first-child .d-flex > div:first-child {
        width: 60px !important;
        height: 60px !important;
    }

    .landing-footer .col-lg-4:first-child .d-flex > div:first-child svg {
        width: 40px !important;
        height: 40px !important;
    }
}

/* Footer Title - Modern tanpa background mencolok */
.footer-title-modern {
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    background: transparent;
    /* Hapus background biru */
    padding: 0;
    display: block;
    margin-bottom: 16px;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* Footer Description */
.footer-description {
    color: #ffffff;
    font-size: 0.85rem;
    /* Reduced font size */
    line-height: 1.5;
    /* Reduced line height */
    margin-bottom: 16px;
    /* Reduced margin */
    opacity: 0.9;
    max-width: 100%;
}

/* Social Links Modern - Desain Sederhana */
.social-links-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    /* Reduced gap */
    margin-top: 12px;
    /* Reduced margin */
    align-items: center;
}

.social-links-modern a {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    /* Reduced size */
    height: 36px;
    /* Reduced size */
    color: #ffffff !important;
    font-size: 1.2rem;
    /* Reduced font size */
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    opacity: 0.9;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    backdrop-filter: blur(10px);
}

.social-icon i {
    display: inline-block;
    width: auto !important;
    height: auto !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
}

.social-icon:hover {
    color: #ffffff !important;
    opacity: 1;
    transform: translateY(-3px) scale(1.15);
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2) !important;
}

/* Specific colors for each social media */
.social-icon[aria-label="Instagram"]:hover {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    ) !important;
    border-color: transparent !important;
}

.social-icon[aria-label="Twitter"]:hover {
    background: #1da1f2 !important;
    border-color: #1da1f2 !important;
}

.social-icon[aria-label="Facebook"]:hover {
    background: #1877f2 !important;
    border-color: #1877f2 !important;
}

.social-icon[aria-label="YouTube"]:hover {
    background: #ff0000 !important;
    border-color: #ff0000 !important;
}

.social-icon[aria-label="LinkedIn"]:hover {
    background: #0077b5 !important;
    border-color: #0077b5 !important;
}

.social-icon[aria-label="TikTok"]:hover {
    background: #000000 !important;
    border-color: #000000 !important;
}

.social-icon[aria-label="WhatsApp"]:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

.social-icon[aria-label="Telegram"]:hover {
    background: #0088cc !important;
    border-color: #0088cc !important;
}

.social-icon:focus,
.social-icon:active {
    outline: none !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) scale(1.1);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
    /* Reduced margin */
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    /* Reduced font size */
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0.9;
}

.footer-links a:hover {
    color: #3b82f6;
    opacity: 1;
    transform: translateX(4px);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 24px 0 16px 0;
    /* Reduced margin */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    clear: both;
    box-sizing: border-box;
}

/* Footer Copyright - Modern tanpa background mencolok */
.footer-copyright {
    text-align: center;
    color: #ffffff;
    background: transparent;
    /* Hapus background biru */
    padding: 12px 0;
    border-radius: 0;
    font-size: 0.8rem;
    box-shadow: none;
    backdrop-filter: none;
    font-weight: 400;
    display: block;
    width: 100%;
    box-sizing: border-box;
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border instead */
}

/* Content Page Styles */
.content-page {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.content-body {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-body ul {
    padding-left: 1.5rem;
}

.content-body ul li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.contact-info {
    background: #f8fafc;
    padding: 30px;
    border-radius: 12px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .content-page {
        padding: 24px;
    }

    .page-title {
        font-size: 2rem;
    }

    .content-body {
        font-size: 1rem;
    }

    .contact-info {
        padding: 20px;
    }

    /* About Section Mobile */
    .about-section-modern {
        padding: 60px 0;
    }

    .about-image-wrapper {
        height: 400px;
        margin-bottom: 40px;
    }

    .about-pattern-bg {
        width: 30%;
    }

    .about-white-panel {
        width: 95%;
        height: 95%;
        padding: 25px;
        border-radius: 0 30px 30px 0;
    }

    .about-logo {
        top: 20px;
        left: 25px;
        font-size: 1.2rem;
    }

    .about-person-image {
        width: 80%;
        height: 80%;
    }

    .about-floating-card {
        padding: 12px 16px;
        min-width: 100px;
    }

    .about-card-1 {
        top: 15%;
        left: 5%;
    }

    .about-card-2 {
        bottom: 20%;
        right: 10%;
    }

    .floating-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .floating-card-label {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .shape-circle {
        width: 80px;
        height: 80px;
    }

    .shape-square {
        width: 20px;
        height: 20px;
    }

    .shape-plus {
        width: 30px;
        height: 30px;
    }

    .shape-line {
        width: 40px;
        height: 2px;
    }

    /* Hero Section Mobile */
    .hero-section {
        overflow-x: hidden !important;
    }

    .hero-illustration {
        overflow: hidden;
    }

    .hero-image-wrapper {
        height: 450px;
        overflow: hidden;
    }

    .hero-person-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-feature-card {
        min-width: 160px;
        padding: 15px;
        gap: 10px;
    }

    .hero-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-card-text {
        font-size: 0.95rem;
    }

    .hero-card-1 {
        top: 5%;
        left: 0;
        max-width: calc(100% - 10px);
    }

    .hero-card-2 {
        bottom: 15%;
        left: 0;
        max-width: calc(100% - 10px);
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .icon-label {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .hero-circle-icon {
        transform: scale(0.8);
    }

    /* Journey Timeline Vertical Mobile */
    .journey-timeline-vertical {
        padding: 30px 0;
    }

    /* Mobile: Icon di kiri, text di kanan (seperti gambar pertama) */
    .journey-step-vertical {
        grid-template-columns: auto 1fr !important;
        margin-bottom: 30px;
        gap: 20px;
        align-items: flex-start;
        justify-items: start;
    }

    .journey-step-content {
        grid-column: 2 !important;
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
    }

    .journey-card-vertical {
        width: 100%;
        max-width: 100% !important;
        text-align: left !important;
        padding: 20px;
        min-height: auto;
        grid-column: 1 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        justify-self: start !important;
    }

    .journey-card-left,
    .journey-card-right {
        text-align: left !important;
        max-width: 100% !important;
        justify-self: start !important;
        grid-column: 1 !important;
    }

    .journey-icon-wrapper {
        grid-column: 1 !important;
        order: 0;
        margin-bottom: 0;
        margin-right: 15px;
        flex-shrink: 0;
        width: auto;
        min-width: auto;
    }

    .journey-spacer {
        display: none !important;
    }

    .journey-icon-square {
        width: 50px;
        height: 50px;
    }

    .journey-step-number {
        font-size: 1.5rem;
    }

    .journey-connector-line {
        min-height: 50px;
        flex: 1;
        margin-top: 0;
        align-self: stretch;
    }

    .journey-card-vertical {
        padding: 24px 28px;
    }

    .journey-title {
        font-size: 2rem;
    }

    .journey-subtitle {
        font-size: 1rem;
    }

    .journey-card-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        padding-left: 12px;
    }

    .journey-card-title::before {
        width: 3px;
        height: 20px;
    }

    .journey-card-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .journey-icon-square {
        width: 65px;
        height: 65px;
    }

    .journey-icon {
        font-size: 1.5rem;
    }
}

/* Tablet Responsive */
@media (min-width: 768px) and (max-width: 991.98px) {
    .journey-timeline-vertical {
        padding: 50px 20px;
    }

    .journey-step-vertical {
        grid-template-columns: 1fr auto 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .journey-card-vertical {
        padding: 24px;
        min-height: 130px;
    }

    .journey-icon-square {
        width: 60px;
        height: 60px;
    }

    .journey-step-number {
        font-size: 1.75rem;
    }

    .journey-connector-line {
        height: 65px;
    }

    .journey-card-vertical h5 {
        font-size: 1.2rem;
    }

    .journey-card-vertical p {
        font-size: 1rem;
    }
}

/* Global Responsive Improvements - Tablet */
@media (max-width: 991.98px) {
    /* Consistent Container Padding Tablet */
    .container {
        padding-left: var(--container-padding-tablet, 20px);
        padding-right: var(--container-padding-tablet, 20px);
        max-width: 100%;
    }

    /* Consistent Section Padding Tablet */
    section.py-5 {
        padding-top: var(--section-padding-tablet, 60px);
        padding-bottom: var(--section-padding-tablet, 60px);
    }

    /* Consistent Typography Tablet */
    h1,
    .h1 {
        font-size: var(--h1-size-tablet, 2.5rem);
        margin-bottom: 1.25rem;
    }

    h2,
    .h2 {
        font-size: var(--h2-size-tablet, 2rem);
        margin-bottom: 1.125rem;
    }

    h3,
    .h3 {
        font-size: 1.625rem;
        margin-bottom: 0.9375rem;
    }

    p,
    .lead {
        font-size: var(--body-size-tablet, 0.95rem);
    }

    .lead {
        font-size: 1.0625rem;
    }

    /* Hero Section Tablet */
    .hero-section {
        padding: 80px 0 60px 0;
    }

    /* About Section Tablet */
    .about-section-modern {
        padding: 70px 0 60px 0;
    }

    /* Journey Section Tablet */
    .journey-timeline-vertical {
        padding: 50px 20px;
    }

    /* Feature Cards Tablet */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Pricing Section Tablet */
    .pricing-cards-container .col-lg-4 {
        margin-bottom: 24px;
    }

    /* Ensure all text is visible */
    .text-muted {
        color: #6b7280 !important;
        opacity: 1 !important;
    }

    /* Section padding adjustments */
    section {
        padding-left: 0;
        padding-right: 0;
    }

    /* Footer Responsive - Tablet */
    .landing-footer-modern {
        padding: 45px 0 25px 0;
        padding-top: 100px;
    }

    .landing-footer-modern .row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        /* 3 kolom untuk tablet */
        gap: 24px;
    }

    .landing-footer-modern .row > .col-lg-4:first-child {
        grid-column: 1 / -1;
        /* Full width di tablet juga */
        text-align: center;
        margin-bottom: 24px;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-title-modern {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .footer-description {
        font-size: 0.88rem;
        margin-bottom: 20px;
    }

    .social-links-modern {
        gap: 14px;
        margin-top: 18px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    .footer-links a {
        font-size: 0.88rem;
    }

    .footer-divider {
        margin: 30px 0 20px 0;
    }

    .footer-copyright {
        font-size: 0.85rem;
        padding: 10px 0;
    }
}

@media (max-width: 767.98px) {
    /* Mobile text visibility */
    body {
        font-size: 16px;
        line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        line-height: 1.3;
    }

    /* Ensure text is not too small */
    .small,
    small {
        font-size: 0.875rem !important;
    }

    /* Consistent Section Padding Mobile */
    section.py-5 {
        padding-top: var(--section-padding-mobile, 40px) !important;
        padding-bottom: var(--section-padding-mobile, 40px) !important;
    }

    /* Consistent Container Padding Mobile */
    .container {
        padding-left: var(--container-padding-mobile, 16px);
        padding-right: var(--container-padding-mobile, 16px);
        max-width: 100%;
    }

    /* Consistent Typography Mobile */
    h1,
    .h1 {
        font-size: var(--h1-size-mobile, 2rem) !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2,
    .h2 {
        font-size: var(--h2-size-mobile, 1.75rem) !important;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    h3,
    .h3 {
        font-size: 1.5rem !important;
        margin-bottom: 0.875rem;
    }

    p,
    .lead {
        font-size: var(--body-size-mobile, 0.9rem) !important;
        line-height: 1.5;
    }

    .lead {
        font-size: 1rem !important;
    }

    /* Hero Section Mobile */
    .hero-section {
        padding: 120px 0 50px 0 !important;
        /* Increased top padding untuk spacing lebih besar dari navbar */
    }

    .hero-section h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem;
    }

    .hero-section .lead {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
    }

    /* About Section Mobile */
    .about-section-modern {
        padding: 50px 0 40px 0 !important;
    }

    .about-title {
        font-size: 2rem !important;
    }

    /* Journey Section Mobile */
    .journey-timeline-vertical {
        padding: 30px 0 !important;
    }

    /* Feature Cards Mobile */
    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .feature-card-modern {
        margin-bottom: 25px;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }

    /* Testimonial Mobile */
    .testimonial-carousel-wrapper {
        padding: 0 10px;
    }

    /* Pricing Section Mobile */
    .pricing-cards-container .col-lg-4 {
        margin-bottom: 20px;
    }

    /* Section with bg-light Mobile */
    section.bg-light {
        padding: var(--section-padding-mobile, 40px) 0 !important;
    }

    section.bg-light h2 {
        font-size: var(--h2-size-mobile, 1.75rem) !important;
        margin-bottom: 1.5rem !important;
    }

    /* CTA Section Mobile */
    .bg-gradient-primary {
        padding: 50px 0 80px 0 !important;
    }

    .bg-gradient-primary h2 {
        font-size: 1.5rem !important;
    }

    .bg-gradient-primary .lead {
        font-size: 0.95rem !important;
    }

    /* Footer mobile - Layout sangat nyatu dan compact */
    .landing-footer-modern {
        padding: 20px 0 10px 0;
        /* Sangat compact */
        padding-top: 50px;
        /* Reduced padding-top */
        margin-top: -30px;
        /* Reduced overlap */
    }

    .landing-footer-modern .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .landing-footer-modern .row {
        display: block;
        /* Block layout untuk float */
        text-align: left;
        /* Left align seperti gambar */
        width: 100%;
    }

    /* Clear float helper */
    .landing-footer-modern .row::after {
        content: "";
        display: table;
        clear: both;
    }

    .landing-footer-modern .col-lg-4,
    .landing-footer-modern .col-md-6 {
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }

    /* Kolom pertama (logo & info) - Full width di atas */
    .landing-footer-modern .row > .col-lg-4:first-child {
        display: block;
        width: 100% !important;
        float: none !important;
        clear: both;
        text-align: left;
        margin-bottom: 14px;
        /* Reduced spacing */
        padding-bottom: 12px;
        /* Reduced padding */
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Kolom kedua dan ketiga (Layanan & Info Lain) - Side by side 2 kolom */
    .landing-footer-modern .row > .col-lg-4:nth-child(2),
    .landing-footer-modern .row > .col-lg-4:nth-child(3) {
        float: left;
        width: 48%;
        text-align: left;
        margin-bottom: 12px;
        /* Reduced margin */
        box-sizing: border-box;
    }

    .landing-footer-modern .row > .col-lg-4:nth-child(2) {
        margin-right: 4%;
        /* Gap antara kolom */
    }

    .landing-footer-modern .row > .col-lg-4:nth-child(3) {
        margin-right: 0;
        float: right;
        /* Align ke kanan untuk gap yang lebih baik */
    }

    .footer-logo {
        max-width: 120px;
        /* Lebih besar untuk mobile */
        margin: 0 0 6px 0;
        /* Reduced margin - sangat rapat */
        display: block;
    }

    .footer-title-modern {
        display: block;
        text-align: left;
        margin-bottom: 4px;
        /* Sangat rapat */
        font-size: 0.88rem;
        padding: 0;
        font-weight: 600;
        line-height: 1.2;
    }

    /* Title untuk kolom links */
    .landing-footer-modern .row > .col-lg-4:nth-child(2) .footer-title-modern,
    .landing-footer-modern .row > .col-lg-4:nth-child(3) .footer-title-modern {
        margin-bottom: 6px;
        /* Reduced margin */
        font-size: 0.82rem;
    }

    .footer-description {
        font-size: 0.72rem;
        /* Compact font */
        margin-bottom: 8px;
        /* Reduced margin - sangat rapat */
        text-align: left;
        line-height: 1.35;
        /* Compact line height */
        max-width: 100%;
        padding: 0;
        opacity: 0.85;
    }

    .social-links-modern {
        justify-content: flex-start;
        /* Left align */
        gap: 6px;
        /* Sangat rapat */
        margin-top: 6px;
        /* Reduced margin */
        margin-bottom: 0;
        flex-wrap: wrap;
    }

    .social-icon {
        width: 30px;
        /* Compact size */
        height: 30px;
        /* Compact size */
        font-size: 0.95rem;
        /* Reduced font size */
    }

    .footer-links {
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 2px;
        /* Sangat rapat */
        list-style: none;
    }

    .footer-links a {
        font-size: 0.72rem;
        /* Compact font */
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        display: block;
        padding: 1px 0;
        /* Reduced padding */
        line-height: 1.4;
    }

    .footer-divider {
        margin: 12px 0 8px 0;
        /* Reduced margin - sangat rapat */
        height: 1px;
        clear: both;
    }

    .footer-copyright {
        font-size: 0.68rem;
        /* Compact font */
        padding: 6px 0 2px 0;
        /* Reduced padding */
        margin-top: 0;
        text-align: left;
        /* Left align seperti gambar */
        opacity: 0.8;
        clear: both;
        /* Clear float dari kolom di atas */
        line-height: 1.3;
    }

    /* Consistent Button Sizes Mobile */
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Consistent Card Padding Mobile */
    .card {
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Ensure text visibility on mobile without breaking buttons */
    .pricing-toggle .nav-link,
    .btn {
        color: revert !important;
    }

    .text-muted {
        color: #6b7280 !important;
        opacity: 1 !important;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .landing-header .navbar {
        padding: 0.4rem 0;
        min-height: 56px;
    }

    .landing-header.scrolled .navbar {
        padding: 0.35rem 0;
        min-height: 52px;
    }

    .landing-header .navbar-brand {
        font-size: 1.1rem;
    }

    .landing-header .navbar-brand img {
        height: 28px !important;
    }

    .landing-header.scrolled .navbar-brand img {
        height: 26px !important;
    }

    .landing-header .nav-link {
        font-size: 0.9rem;
        padding: 0.35rem 0.5rem !important;
        margin: 0 0.15rem;
    }

    .landing-header .nav-link.btn {
        padding: 0.35rem 0.85rem !important;
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 120px 0 50px 0 !important;
        /* Increased top padding untuk spacing lebih besar */
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-content {
        padding: 0 0 0 20px;
    }

    .hero-image-wrapper {
        height: 300px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Accordion FAQ */
.accordion-button {
    font-weight: 600;
    color: #1e293b;
    font-size: var(--body-size-desktop, 1rem);
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: var(--primary-blue);
}

.accordion-body {
    font-size: var(--body-size-desktop, 1rem);
    line-height: 1.6;
    padding: 1rem 1.25rem;
}

/* FAQ Section Responsive */
@media (max-width: 991.98px) {
    .accordion-button {
        font-size: var(--body-size-tablet, 0.95rem);
        padding: 0.875rem 1.125rem;
    }

    .accordion-body {
        font-size: var(--body-size-tablet, 0.95rem);
        padding: 0.875rem 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .accordion-button {
        font-size: var(--body-size-mobile, 0.9rem) !important;
        padding: 0.75rem 1rem !important;
    }

    .accordion-body {
        font-size: var(--body-size-mobile, 0.9rem) !important;
        padding: 0.75rem 1rem !important;
        line-height: 1.5;
    }

    /* FAQ Section Mobile */
    section.py-5:has(.accordion) {
        padding: var(--section-padding-mobile, 40px) 0 !important;
    }

    section.py-5:has(.accordion) h2 {
        font-size: var(--h2-size-mobile, 1.75rem) !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Placeholder Images */
.placeholder-image,
.bimbel-image-placeholder {
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--purple) 100%
    );
}

/* ============================================
   DARK MODE STYLES - FULL IMPLEMENTATION
   ============================================ */

[data-theme="dark"] {
    color-scheme: dark;
}

[data-theme="dark"] body {
    background-color: #0a0a0a !important;
    color: #ededec !important;
}

/* Dark Mode - Hero Section */
[data-theme="dark"] .hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
}

[data-theme="dark"] .hero-title {
    color: #ffffff !important;
}

[data-theme="dark"] .hero-subtitle {
    color: #a1a09a !important;
}

/* Dark Mode - Text Colors */
[data-theme="dark"] .text-muted {
    color: #a1a09a !important;
}

[data-theme="dark"] .text-primary {
    color: #60a5fa !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ededec !important;
}

[data-theme="dark"] .lead {
    color: #a1a09a !important;
}

/* Dark Mode - Background Sections */
[data-theme="dark"] .bg-light {
    background-color: #161615 !important;
}

[data-theme="dark"]
    section:not(.hero-section):not(.bg-primary):not(.bg-gradient-primary):not(
        .landing-footer
    ) {
    background-color: #0a0a0a !important;
}

/* Dark Mode - Cards */
[data-theme="dark"] .card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .package-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .journey-card-vertical {
    background-color: #1b1b18 !important;
    border-color: #3e3e3a !important;
    color: #ededec !important;
}

[data-theme="dark"] .testimonial-card:hover,
[data-theme="dark"] .package-card:hover,
[data-theme="dark"] .feature-card:hover {
    background-color: #1f1f1d !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

/* Dark Mode - Feature Cards with Light Backgrounds */
[data-theme="dark"] .bg-pink-light {
    background: linear-gradient(135deg, #2d1a1f 0%, #3d1f28 100%) !important;
    color: #fce7f3 !important;
}

[data-theme="dark"] .bg-purple-light {
    background: linear-gradient(135deg, #2a1f3d 0%, #3d2a4f 100%) !important;
    color: #e9d5ff !important;
}

[data-theme="dark"] .bg-orange-light {
    background: linear-gradient(135deg, #3d2a1a 0%, #4d351f 100%) !important;
    color: #fed7aa !important;
}

[data-theme="dark"] .bg-yellow-light {
    background: linear-gradient(135deg, #3d3a1a 0%, #4d4a1f 100%) !important;
    color: #fef9c3 !important;
}

[data-theme="dark"] .bg-blue-light {
    background: linear-gradient(135deg, #1a2a3d 0%, #1f354d 100%) !important;
    color: #bfdbfe !important;
}

/* Dark Mode - Buttons */
[data-theme="dark"] .btn-primary {
    background: linear-gradient(135deg, #4b868d 0%, #315a5f 100%) !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-primary:hover {
    background: linear-gradient(135deg, #315a5f 0%, #26464a 100%) !important;
    border-color: #2563eb !important;
}

[data-theme="dark"] .btn-outline-primary {
    border-color: #3b82f6 !important;
    color: #60a5fa !important;
    background: transparent !important;
}

[data-theme="dark"] .btn-outline-primary:hover {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-light {
    background-color: #ededec !important;
    color: #0a0a0a !important;
    border-color: #ededec !important;
}

[data-theme="dark"] .btn-light:hover {
    background-color: #ffffff !important;
    color: #0a0a0a !important;
}

[data-theme="dark"] .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Dark Mode - Navbar */
[data-theme="dark"] .landing-header .navbar-brand {
    color: #60a5fa !important;
}

[data-theme="dark"] .landing-header:not(.scrolled) .nav-link {
    color: #ededec !important;
}

[data-theme="dark"] .landing-header.scrolled .navbar {
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .landing-header.scrolled .nav-link {
    color: #ededec !important;
}

[data-theme="dark"] .landing-header.scrolled .nav-link:hover {
    color: #60a5fa !important;
}

[data-theme="dark"] .landing-header .nav-link::after {
    background: #60a5fa;
}

/* Dark Mode - Timeline */
[data-theme="dark"] .timeline-item {
    color: #ededec !important;
}

[data-theme="dark"] .timeline-content h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .timeline-content p {
    color: #a1a09a !important;
}

/* Dark Mode - Accordion */
[data-theme="dark"] .accordion-item {
    background-color: #1b1b18 !important;
    border-color: #3e3e3a !important;
}

[data-theme="dark"] .accordion-button {
    background-color: #1b1b18 !important;
    color: #ededec !important;
}

[data-theme="dark"] .accordion-button:not(.collapsed) {
    background-color: #161615 !important;
    color: #60a5fa !important;
}

[data-theme="dark"] .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(96, 165, 250, 0.25) !important;
}

[data-theme="dark"] .accordion-body {
    background-color: #1b1b18 !important;
    color: #a1a09a !important;
}

/* Dark Mode - Package Cards */
[data-theme="dark"] .package-card.bg-white {
    background-color: #1b1b18 !important;
    color: #ededec !important;
}

[data-theme="dark"] .package-features li {
    color: #a1a09a !important;
    border-bottom-color: #3e3e3a !important;
}

[data-theme="dark"] .price-amount {
    color: var(--light-blue) !important;
}

/* Dark Mode - Nav Pills */
[data-theme="dark"] .nav-pills .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .nav-pills .nav-link.active {
    background: #ffffff !important;
    color: var(--primary-blue) !important;
}

/* Dark Mode - Footer */
[data-theme="dark"] .landing-footer {
    background: linear-gradient(
        135deg,
        rgba(10, 14, 39, 0.98) 0%,
        rgba(30, 27, 75, 0.95) 20%,
        rgba(76, 29, 149, 0.92) 40%,
        rgba(124, 45, 18, 0.9) 60%,
        rgba(185, 28, 28, 0.92) 80%,
        rgba(239, 68, 68, 0.95) 100%
    ) !important;
}

[data-theme="dark"] .landing-footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

[data-theme="dark"] .landing-footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .landing-footer a:hover {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .landing-footer hr {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* Dark Mode - Social Links */
[data-theme="dark"] .social-links a {
    color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="dark"] .social-links a:hover {
    color: var(--light-blue) !important;
}

/* Dark Mode - Testimonial */
[data-theme="dark"] .testimonial-quote p {
    color: #a1a09a !important;
}

[data-theme="dark"] .author-info strong {
    color: #ededec !important;
}

[data-theme="dark"] .author-info small {
    color: #a1a09a !important;
}

/* Dark Mode - Badge */
[data-theme="dark"] .badge {
    color: #ffffff !important;
}

/* Dark Mode - Responsive Improvements */
@media (max-width: 767.98px) {
    [data-theme="dark"] .hero-section {
        background: linear-gradient(
            135deg,
            #1a1a1a 0%,
            #0f0f0f 100%
        ) !important;
        padding-top: 120px !important;
        /* Increased spacing untuk dark mode juga */
    }

    [data-theme="dark"] .bg-light {
        background-color: #161615 !important;
    }

    [data-theme="dark"] .dark-mode-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    [data-theme="dark"] .hero-section {
        padding-top: 140px !important;
        /* Extra spacing untuk very small screens di dark mode */
    }
}

/* Dark Mode - Additional Elements */
[data-theme="dark"] .icon-label {
    background: #1b1b18 !important;
    color: #ededec !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

[data-theme="dark"] .bimbel-image-placeholder {
    background: linear-gradient(135deg, #1a2a3d 0%, #0f1a2a 100%) !important;
}

[data-theme="dark"] .placeholder-image {
    background: linear-gradient(135deg, #1a2a3d 0%, #0f1a2a 100%) !important;
}

/* Dark Mode - Timeline Icons */
[data-theme="dark"] .timeline-icon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4) !important;
}

/* Dark Mode - Package Section */
[data-theme="dark"] #paket.bg-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

/* Dark Mode - Smooth Scrollbar */
[data-theme="dark"] ::-webkit-scrollbar {
    width: 10px;
}

[data-theme="dark"] ::-webkit-scrollbar-track {
    background: #0a0a0a;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
    background: #3e3e3a;
    border-radius: 5px;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb:hover {
    background: #4e4e4a;
}

/* Dark Mode - About Section Modern */
[data-theme="dark"] .about-section-modern {
    background-color: #0a0a0a !important;
}

[data-theme="dark"] .about-pattern-bg {
    background: transparent !important;
    background-image: none !important;
}

[data-theme="dark"] .about-white-panel {
    background-color: #1b1b18 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .about-title .title-line-1 {
    color: #ededec !important;
}

[data-theme="dark"] .about-title .title-line-2 {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .about-description {
    color: #a1a09a !important;
}

[data-theme="dark"] .about-description p {
    color: #a1a09a !important;
}

[data-theme="dark"] .logo-bold,
[data-theme="dark"] .logo-regular,
[data-theme="dark"] .logo-divider {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .about-floating-card {
    background-color: #1b1b18 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .floating-card-label {
    color: #ffffff !important;
}

/* Dark Mode - Journey Timeline */
[data-theme="dark"] .journey-header h2 {
    color: #ededec !important;
}

[data-theme="dark"] .journey-header p {
    color: #a1a09a !important;
}

[data-theme="dark"] .journey-card-vertical h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .journey-card-vertical p {
    color: #a1a09a !important;
}

[data-theme="dark"] .journey-card-vertical p u {
    color: var(--light-blue) !important;
}

/* Dark Mode - Feature Grid Modern */
[data-theme="dark"] .feature-card-modern {
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="dark"] .feature-card-modern .feature-card-text h5 {
    color: #ffffff !important;
}

[data-theme="dark"] .feature-card-modern .feature-card-text p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Dark Mode - Pricing Section */
[data-theme="dark"] .pricing-section-modern {
    background: linear-gradient(
        135deg,
        #1e3a8a 0%,
        #1e40af 50%,
        #0f172a 100%
    ) !important;
}

[data-theme="dark"] .pricing-kicker {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

[data-theme="dark"] .pricing-title {
    color: #ffffff !important;
}

[data-theme="dark"] .pricing-card-modern {
    background-color: #1b1b18 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .pricing-card-modern:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7) !important;
}

[data-theme="dark"] .pricing-content {
    color: #ededec !important;
}

[data-theme="dark"] .price-amount {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .price-period {
    color: #a1a09a !important;
}

[data-theme="dark"] .pricing-description {
    color: #a1a09a !important;
}

[data-theme="dark"] .pricing-features-list li {
    color: #ededec !important;
}

[data-theme="dark"] .pricing-features-list li span {
    color: #ededec !important;
}

[data-theme="dark"] .pricing-btn-buy {
    background: linear-gradient(135deg, #4b868d 0%, #315a5f 100%) !important;
    box-shadow: 0 4px 12px rgba(75, 134, 141, 0.4) !important;
}

[data-theme="dark"] .pricing-btn-buy:hover {
    background: linear-gradient(135deg, #315a5f 0%, #26464a 100%) !important;
    box-shadow: 0 6px 20px rgba(75, 134, 141, 0.5) !important;
}

[data-theme="dark"] .pricing-toggle .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .pricing-toggle .nav-link.active {
    background: #ffffff !important;
    color: var(--primary-blue) !important;
}

[data-theme="dark"] .pricing-empty {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #a1a09a !important;
}

/* Dark Mode - CTA Section */
[data-theme="dark"] .bg-gradient-primary {
    background: linear-gradient(
        135deg,
        #1e3a8a 0%,
        #1e40af 50%,
        #0f172a 100%
    ) !important;
}

[data-theme="dark"] .bg-gradient-primary h2 {
    color: #ffffff !important;
}

[data-theme="dark"] .bg-gradient-primary .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Dark Mode - Hero Feature Cards */
[data-theme="dark"] .hero-feature-card {
    background-color: #1b1b18 !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .hero-card-text {
    color: #ededec !important;
}

[data-theme="dark"] .hero-card-text strong {
    color: #ffffff !important;
}

/* Dark Mode - Icon Labels */
[data-theme="dark"] .icon-label {
    background: #1b1b18 !important;
    color: #ededec !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

/* Dark Mode - Placeholder Images */
[data-theme="dark"] .placeholder-image,
[data-theme="dark"] .bimbel-image-placeholder,
[data-theme="dark"] .hero-person-placeholder,
[data-theme="dark"] .about-person-placeholder {
    background: linear-gradient(135deg, #1a2a3d 0%, #0f1a2a 100%) !important;
}

[data-theme="dark"] .hero-person-placeholder i,
[data-theme="dark"] .about-person-placeholder i {
    color: rgba(96, 165, 250, 0.3) !important;
}

/* Dark Mode - Bootstrap Components */
[data-theme="dark"] .display-4 {
    color: #ffffff !important;
}

[data-theme="dark"] .text-primary {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .text-warning {
    color: #fbbf24 !important;
}

[data-theme="dark"] .bg-primary {
    background-color: var(--primary-blue) !important;
}

[data-theme="dark"] .bg-success {
    background-color: #22c55e !important;
}

[data-theme="dark"] .bg-info {
    background-color: #06b6d4 !important;
}

/* Dark Mode - Ensure all text is visible */
[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] li,
[data-theme="dark"] a:not(.btn):not(.nav-link) {
    color: inherit;
}

[data-theme="dark"] .text-white {
    color: #ffffff !important;
}

[data-theme="dark"] .text-dark {
    color: #ededec !important;
}

/* Dark Mode - Smooth Transitions */
[data-theme="dark"] * {
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

/* Dark Mode - Hero Section Elements */
[data-theme="dark"] .hero-section h1 {
    color: #ffffff !important;
}

[data-theme="dark"] .hero-section .lead {
    color: #a1a09a !important;
}

[data-theme="dark"] .hero-section .text-primary {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .hero-section .text-muted {
    color: #a1a09a !important;
}

/* Dark Mode - Section Headings */
[data-theme="dark"] section h2 {
    color: #ededec !important;
}

[data-theme="dark"] section .fw-bold {
    color: #ffffff !important;
}

/* Dark Mode - Journey Header */
[data-theme="dark"] .journey-header h2 .text-primary {
    color: var(--light-blue) !important;
}

/* Dark Mode - Feature Grid Cards */
[data-theme="dark"] .feature-card-modern.feature-card-main,
[data-theme="dark"] .feature-card-modern.feature-card-purple,
[data-theme="dark"] .feature-card-modern.feature-card-vertical,
[data-theme="dark"] .feature-card-modern.feature-card-orange,
[data-theme="dark"] .feature-card-modern.feature-card-wide {
    /* Keep gradient backgrounds but ensure text is visible */
    filter: brightness(0.9);
}

[data-theme="dark"] .feature-card-modern.feature-card-main .feature-card-text,
[data-theme="dark"] .feature-card-modern.feature-card-purple .feature-card-text,
[data-theme="dark"]
    .feature-card-modern.feature-card-vertical
    .feature-card-text,
[data-theme="dark"] .feature-card-modern.feature-card-orange .feature-card-text,
[data-theme="dark"] .feature-card-modern.feature-card-wide .feature-card-text {
    color: #ffffff !important;
}

[data-theme="dark"] .feature-card-modern .feature-card-text h5 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .feature-card-modern .feature-card-text p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Dark Mode - Pricing Section Elements */
[data-theme="dark"] .pricing-kicker {
    color: #ffffff !important;
}

[data-theme="dark"] .pricing-empty {
    color: #a1a09a !important;
}

/* Dark Mode - Ensure all Bootstrap text utilities work */
[data-theme="dark"] .text-secondary {
    color: #a1a09a !important;
}

[data-theme="dark"] .text-dark {
    color: #ededec !important;
}

[data-theme="dark"] .text-light {
    color: #ffffff !important;
}

/* Dark Mode - Links */
[data-theme="dark"] a:not(.btn):not(.nav-link):not(.pricing-btn-buy) {
    color: var(--light-blue) !important;
}

[data-theme="dark"] a:not(.btn):not(.nav-link):not(.pricing-btn-buy):hover {
    color: #8cadb1 !important;
}

/* Dark Mode - Ensure body background */
[data-theme="dark"] body {
    background-color: #0a0a0a !important;
    color: #ededec !important;
}

/* Dark Mode - HTML element */
[data-theme="dark"] html {
    background-color: #0a0a0a !important;
}

/* Dark Mode - Ensure all sections have proper background */
[data-theme="dark"]
    section:not(.hero-section):not(.bg-primary):not(.bg-gradient-primary):not(
        .landing-footer-gradient
    ):not(.pricing-section-modern):not(.cta-section) {
    background-color: #0a0a0a !important;
}

/* Dark Mode - Navbar brand text */
[data-theme="dark"] .navbar-brand span {
    color: var(--light-blue) !important;
}

[data-theme="dark"] .navbar-brand.text-primary {
    color: var(--light-blue) !important;
}

/* Dark Mode - Display classes */
[data-theme="dark"] .display-1,
[data-theme="dark"] .display-2,
[data-theme="dark"] .display-3,
[data-theme="dark"] .display-4,
[data-theme="dark"] .display-5,
[data-theme="dark"] .display-6 {
    color: #ffffff !important;
}

/* Dark Mode - Ensure all links are visible */
[data-theme="dark"] a.text-white {
    color: #ffffff !important;
}

[data-theme="dark"] a.text-primary {
    color: var(--light-blue) !important;
}

/* Dark Mode - Small text */
[data-theme="dark"] small,
[data-theme="dark"] .small {
    color: #a1a09a !important;
}

/* Dark Mode - Strong/Bold text */
[data-theme="dark"] strong,
[data-theme="dark"] b {
    color: #ffffff !important;
}

/* Dark Mode - Lists */
[data-theme="dark"] ul,
[data-theme="dark"] ol {
    color: #ededec !important;
}

[data-theme="dark"] ul li,
[data-theme="dark"] ol li {
    color: #ededec !important;
}

/* Dark Mode - Ensure Bootstrap utilities work */
[data-theme="dark"] .text-center,
[data-theme="dark"] .text-start,
[data-theme="dark"] .text-end {
    color: inherit;
}

/* Dark Mode - Flex utilities */
[data-theme="dark"] .d-flex,
[data-theme="dark"] .flex-wrap {
    color: inherit;
}

/* Responsive Pricing Section Modern - Tablet */
@media (max-width: 991.98px) {
    .pricing-section-modern {
        padding: var(--section-padding-tablet, 60px) 0;
    }

    .pricing-title {
        font-size: var(--h2-size-tablet, 2rem);
    }

    .pricing-toggle {
        margin-bottom: 2rem;
    }

    .pricing-cards-container .row {
        justify-content: center;
    }

    .pricing-cards-container .col-lg-4 {
        max-width: 400px;
        margin-bottom: 24px;
    }
}

@media (max-width: 767.98px) {
    .pricing-card-modern {
        min-height: 0 !important;
        height: auto !important;
        margin-bottom: 30px !important;
        transform: none !important;
    }

    .pricing-card-modern:hover {
        transform: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    }

    .pricing-section-modern {
        padding: 40px 0;
    }

    .pricing-title {
        font-size: 1.75rem;
        padding: 0 20px;
    }

    .pricing-cards-container .col-lg-4 {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-content {
        padding: 45px 20px 20px 20px;
    }

    /* Footer Responsive - Tablet dan Mobile */
    .landing-footer-modern {
        padding: 50px 0 25px 0;
        padding-top: 110px;
        /* Tetap overlap */
    }

    .footer-logo {
        max-width: 110px;
        /* Sedikit lebih kecil */
    }

    .footer-title-modern {
        font-size: 1.05rem;
        /* Hampir sama dengan desktop */
        padding: 7px 15px;
        /* Hampir sama dengan desktop */
        margin-bottom: 18px;
    }

    .footer-description {
        font-size: 0.92rem;
        /* Hampir sama dengan desktop */
        margin-bottom: 22px;
    }

    .social-links-modern {
        gap: 14px;
        /* Hampir sama dengan desktop (16px) */
        margin-top: 18px;
    }

    .social-icon {
        width: 39px;
        /* Hampir sama dengan desktop (40px) */
        height: 39px;
        font-size: 1.35rem;
        /* Hampir sama dengan desktop */
    }

    .footer-links a {
        font-size: 0.93rem;
        /* Hampir sama dengan desktop */
    }

    .footer-divider {
        margin: 35px 0 22px 0;
        /* Hampir sama dengan desktop */
    }

    .footer-copyright {
        font-size: 0.9rem;
        /* Hampir sama dengan desktop */
        padding: 12px 20px;
        /* Hampir sama dengan desktop */
    }
}

/* Modern Hero Section */
.hero-image-wrapper-modern {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.hero-bg-shape {
    position: absolute;
    width: 85%;
    height: 90%;
    background: transparent !important;
    background-image: none !important;
    border-radius: 40px;
    transform: rotate(-3deg);
    z-index: 0;
    right: 0;
}

.hero-person-container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.hero-img-modern {
    position: relative;
    z-index: 1;
    max-height: 115%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.hero-img-placeholder {
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

/* Floating Badges Modern */
.floating-badge-modern {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 2;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.floating-badge-modern:hover {
    transform: scale(1.05);
}

.badge-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.badge-pill-content {
    background: linear-gradient(135deg, #4b868d 0%, #315a5f 100%);
    color: white;
    padding: 8px 24px 8px 35px;
    /* Extra left padding for overlap */
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-left: -25px;
    /* Negative margin for overlap */
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.badge-top-left {
    top: 25%;
    left: -10px;
}

.badge-bottom-left {
    bottom: 20%;
    left: -30px;
}

/* Dark Mode Support for Modern Hero */
[data-theme="dark"] .hero-bg-shape {
    background: transparent !important;
    background-image: none !important;
}

[data-theme="dark"] .badge-icon-container {
    background: #1e293b;
}

/* Responsive Modern Hero */
@media (max-width: 991.98px) {
    .hero-image-wrapper-modern {
        height: 500px;
        margin-top: 50px;
    }

    .hero-bg-shape {
        width: 90%;
        right: 5%;
        transform: rotate(0deg);
    }

    .badge-top-left {
        left: 0;
        top: 20%;
    }

    .badge-bottom-left {
        left: -10px;
        bottom: 15%;
    }
}

@media (max-width: 767.98px) {
    .hero-image-wrapper-modern {
        height: 400px;
    }

    .hero-bg-shape {
        width: 100%;
        right: 0;
        border-radius: 30px;
    }

    .floating-badge-modern {
        transform: scale(0.9);
    }

    .badge-top-left {
        top: 15%;
        left: -10px;
    }

    .badge-bottom-left {
        bottom: 15%;
        left: -10px;
    }
}

/* Floating WhatsApp Button */
@keyframes subtleFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0f203b;
    /* Dark Navy Blue matching image */
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Subtle Animation */
    animation: subtleFloat 3s ease-in-out infinite;
    will-change: transform;
}

.floating-whatsapp-btn:hover {
    animation-play-state: paused;
    /* Pause floating on hover */
    transform: translateY(-5px);
    /* Maintain lifted position */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.floating-whatsapp-btn i {
    font-size: 1.2rem;
    color: #25d366;
    /* WhatsApp Green */
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
