/* Global Font - Helvetica for All Sections */
body,
.tp-hero-area,
.tp-problem-solution-area,
.tp-features-list-area,
.tp-testimonial-area-v2,
.tp-comparison-area-v2,
.tp-journey-area,
.tp-benefit-area,
.tp-pricelist-area,
.tp-partnership-area,
.tp-faq-area,
section,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li,
div,
.italic-brand,
.italic-yellow {
    font-family: 'Helvetica', 'Arial', sans-serif !important;
}

/* Global Section Title Standardization */
.tp-section-2-title,
.features-headline,
.problem-headline,
.comparison-main-title,
.testimonial-header-v2 h2 {
    font-size: 1rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

/* Specific Highlights / Major Headers (24px) */
.journey-main-title,
.benefit-main-pill h2,
.pricelist-header-v2 h2 {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

/* Global Highlight Styling */
.highlight-brand,
.italic-brand,
.italic-yellow {
    font-style: italic !important;
    color: var(--tg-primary) !important;
    font-weight: 800 !important;
    font-size: 1.5rem !important;
}

.highlight-benefit {
    background: var(--tg-primary) !important;
    color: #000000 !important;
    padding: 2px 8px !important;
    font-weight: 800 !important;
    border-radius: 4px !important;
    font-size: 1.2rem !important;
}

.highlight-yellow {
    background: var(--tg-primary) !important;
    color: #fff !important;
    padding: 2px 8px !important;
    font-weight: 800 !important;
    border-radius: 4px !important;
    font-size: 1.5rem !important;
}

.highlight-competitor {
    font-style: italic !important;
    color: #ff0000 !important;
    font-weight: 700 !important;
    font-size: 1.5rem !important;

}



/* New Testimonial Section (YellowFit-Inspired) */
.tp-testimonial-area-v2 {
    background-color: #000;
    padding: 30px 0;
    /* Ultra reduced */
    color: #fff;
    overflow: hidden;
}

.testimonial-header-v2 {
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-header-v2 span {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 5px;
}

.testimonial-header-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.italic-brand {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--tg-primary);
}

.testimonial-header-v2 h2 .italic-brand {
    color: var(--tg-primary);
}

.testimonial-slider-container-v2 {
    position: relative;
    max-width: 100%;
    /* Full width container to show peeking slides */
    margin: 0 auto;
    padding: 0;
}

.testimonial-card-v2 {
    background: #111;
    border-radius: 30px;
    padding: 20px;
    margin: 5px auto;
    width: 100%;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .testimonial-card-v2 {
        max-width: 300px !important;
        margin: 20px auto !important;
    }
}

.testimonial-card-v2:hover {
    transform: translateY(-10px);
    border-color: var(--tg-primary);
    box-shadow: 0 30px 60px rgba(57, 59, 231, 0.2);
}

.testimonial-img-box-v2 {
    position: relative;
    width: 100% !important;
    max-width: 280px !important;
    /* Cap width on desktop */
    height: 350px !important;
    /* Cap height on desktop */
    border-radius: 20px !important;
    overflow: hidden !important;
    margin: 0 auto 20px auto !important;
}

@media (max-width: 991px) {
    .testimonial-img-box-v2 {
        max-width: 220px !important;
        height: 280px !important;
    }
}

.testimonial-img-box-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Labels removed */

.testimonial-info-v2 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-info-v2 h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 0 20px rgba(57, 59, 231, 0.5);
}

.testimonial-info-v2 p {
    flex-grow: 1;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #E2E8F0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.testimonial-info-v2 p.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.testimonial-more-v2 {
    display: inline-block;
    color: var(--tg-primary);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 5px;
    padding: 5px 0;
    cursor: pointer;
}

/* Side Navigation Arrows */
.testimonial-nav-v2 {
    position: absolute;
    top: 50%;
    left: 30px;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 100;
}

.nav-btn-v2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--tg-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-btn-v2:hover {
    color: #fff;
    transform: scale(1.2);
}

/* Dots Styling to match reference */
.tp-testimonial-area-v2 .owl-dots {
    text-align: center;
    margin-top: 40px !important;
}

.tp-testimonial-area-v2 .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    margin: 5px 8px !important;
    background: #444 !important;
    /* Brighter against black */
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: block;
}

.tp-testimonial-area-v2 .owl-dot.active span {
    background: var(--tg-primary) !important;
    width: 25px !important;
    /* Pill shape for active dot */
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .tp-testimonial-area-v2 {
        padding: 20px 0;
    }

    .testimonial-header-v2 span {
        font-size: 1.4rem !important;
        margin-bottom: 2px;
    }

    .testimonial-header-v2 h2 {
        font-size: 1.4rem !important;
        letter-spacing: normal;
    }

    .testimonial-info-v2 h4 {
        font-size: 0.85rem;
        text-shadow: none;
        margin-bottom: 3px;
    }

    .testimonial-info-v2 p {
        font-size: 0.75rem;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .testimonial-slider-container-v2 {
        padding: 0 5px;
    }

    .testimonial-nav-v2 {
        display: flex;
        top: 35%;
        left: 5px;
        right: 5px;
    }

    .nav-btn-v2 {
        width: auto;
        height: auto;
        background: transparent;
        border: none;
        font-size: 1.2rem;
        border-radius: 0;
    }

    .testimonial-img-box-v2 {
        height: 280px !important;
        max-width: 220px !important;
        margin: 0 auto 20px auto !important;
        border-radius: 20px !important;
    }

    .testimonial-card-v2 {
        padding: 15px !important;
        max-width: 300px !important;
        /* Force max width mobile */
        width: 100%;
        border-radius: 20px;
        margin: 10px auto;
        /* Auto margin */
        border: 1.5px solid #222;
        box-shadow: none;
        transform: none !important;
    }

    .testimonial-card-v2:hover {
        transform: none !important;
        box-shadow: none;
        border-color: #222;
    }

    .testimonial-more-v2 {
        font-size: 0.9rem;
        font-weight: 400;
        margin-top: 5px;
        padding: 0;
    }
}

.tp-features-list-area {
    background-color: #fff;
    padding: 60px 20px 60px;
    color: #000;
    border-radius: 60px 60px 0 0;
    margin-top: -10px;
    position: relative;
    z-index: 10;
}

.features-header {
    width: 100%;
    margin: 0 auto 50px;
    text-align: center;
}

.features-headline {
    font-size: 24px !important;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
    line-height: 1.2;
}

.features-badge {
    display: inline-block;
    background: var(--tg-primary);
    color: #000000;
    padding: 6px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

/* Features Section Area */
.tp-features-list-area {
    background-color: #fff;
    padding: 80px 0;
}

.features-list-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

.feature-list-item:first-child {
    border-top: 1px solid #E5E7EB;
}

/* Features List Layout (YellowFit Style) */
.features-list-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
    padding: 0 10px;
}

.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e7eb;
}

.feature-list-item:last-child {
    border-bottom: none;
}

.feature-img-container {
    position: relative;
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
}

.feature-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #f3f4f6;
    background: #f3f4f6;
}

.feature-check {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--tg-primary);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    border: 3px solid #fff;
}

.feature-content {
    flex: 1;
    text-align: left;
    padding-top: 0px;
    margin-top: 15px !important;
    /* Naikkan teks lebih banyak agar sejajar atas */
}

.feature-title {
    font-size: 14px !important;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
    line-height: 1.3;
}

.feature-text {
    font-size: 14px !important;
    font-weight: 400;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}

/* CTA Wrapper Fix for Centering */
.features-cta-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    position: relative;
}

.features-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    animation: glitch-shake-active 0.3s infinite;
}

.features-cta-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.cta-hand-cursor {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 100;
    animation: hand-click-me 1s infinite ease-in-out;
}

.cta-hand-cursor i {
    font-size: 32px;
    color: #fff;
    text-shadow: 2px 2px 0px #0F172A, -2px -2px 0px #0F172A, 2px -2px 0px #0F172A, -2px 2px 0px #0F172A;
    /* Fake outline */
}

/* Animations */
@keyframes glitch-shake-active {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(1px, 1px);
    }

    50% {
        transform: translate(-1px, 1px);
    }

    75% {
        transform: translate(1px, -1px);
    }

    100% {
        transform: translate(-1px, -1px);
    }
}

@keyframes hand-click-me {

    0%,
    100% {
        transform: translate(-50%, 0) scale(1);
    }

    50% {
        transform: translate(-50%, -12px) scale(1.1);
    }
}

@media (max-width: 768px) {
    .tp-features-list-area {
        padding: 40px 15px 40px;
        border-radius: 40px 40px 0 0;
        margin-top: -5px;
    }

    .features-headline {
        font-size: 1.4rem;
    }

    .feature-list-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: flex-start !important;
        text-align: left !important;
        gap: 10px;
        padding: 12px 0;
    }

    .feature-img-container {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .feature-check {
        width: 15px;
        height: 15px;
        bottom: -1px;
        right: -1px;
        font-size: 0.4rem;
    }

    .feature-title {
        font-size: 0.85rem;
        /* Matched to testimonial alumni name */
        line-height: 1.1 !important;
        margin-top: -12px !important;
        margin-bottom: 3px !important;
    }

    .feature-text {
        font-size: 0.75rem;
        /* Matched to testimonial body */
        line-height: 1.25;
    }

    .features-cta-btn {
        width: 100%;
        padding: 10px 15px;
        /* Compact button */
        font-size: 0.85rem;
    }

    .cta-hand-cursor {
        bottom: -25px;
        /* Compacted */
    }

    .cta-hand-cursor i {
        font-size: 24px;
        /* Compacted */
    }
}

/* Revamp Styles - Dark Modern Glassmorphism Theme */

:root {
    --tg-primary: #c5ffbc;
    /* Primary Brand Color */
    --tg-primary-dark: #2526a0;
    --tg-secondary: #2EBDC0;
    /* New Hover/Cyan */
    --tg-cyan: #2EBDC0;
    --tg-dark-bg: #0F172A;
    --tg-dark-surface: #151A27;
    --tg-text-main: #FFFFFF;
    --tg-text-muted: #313945;
    --tg-glass-bg: rgba(57, 59, 231, 0.95);
    --tg-glass-border: rgba(255, 255, 255, 0.1);
    --tg-border-radius: 12px;
}

.main-content-wrapper {
    padding-top: 80px;
    /* Offset for fixed navbar */
}

/* Global Resets */
html,
body.home-page-layout {
    margin: 0 !important;
    padding: 0 !important;
    background-color: #000 !important;
}

.home-page-layout .main-content-wrapper {
    padding-top: 0 !important;
}

/* Consolidated Mobile-in-Desktop logic moved to bottom of file */


/* Navbar - Glassmorphism & Floating */
/* Navbar - Full Width & Flat (Per New Request) */
/* Target only the main menu section, not all <header> tags */
header.menu-section-area,
section.menu-section-area {
    background: var(--tg-dark-bg) !important;
    position: fixed !important;
    /* Keep it sticky */
    width: 100%;
    top: 0 !important;
    /* No more floating */
    left: 0 !important;
    z-index: 100000 !important;
    /* Extremely high to beat any other element */
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure page banners don't inherit fixed positioning */
header.page-banner-header {
    position: relative !important;
    z-index: 1 !important;
    margin-top: 0 !important;
}

/* Updated Full Width Navbar */
#mainNav.navbar,
.navbar {
    pointer-events: auto;
    position: relative !important;
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 10px 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between !important;
}

/* Ensure navbar toggler is always visible on Home desktop */
.home-page-layout .navbar-toggler {
    display: block !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}

.home-page-layout .navbar-toggler:focus {
    box-shadow: none !important;
}

.home-page-layout .navbar-toggler-icon {
    width: 28px !important;
    height: 28px !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.home-page-layout #mainNav .navbar-brand img,
.home-page-layout .main-logo-img {
    height: 45px !important;
    /* Professional size for Mobile look */
    width: auto !important;
    max-width: 400px !important;
    object-fit: contain !important;
    display: block !important;
    transition: all 0.3s ease;
}

/* Navbar Links */
.navbar .nav-link {
    color: #ffffff !important;
    /* Force pure white */
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    background: var(--tg-cyan) !important;
    box-shadow: 0 4px 12px rgba(46, 189, 192, 0.4);
}

.navbar .dropdown-toggle i {
    color: #ffffff !important;
}

/* Icons - Default white, but Cart specific */
.navbar i,
.navbar span,
.navbar .iconify {
    color: #ffffff !important;
}

/* White Icon Force */
.white-icon,
.navbar .white-icon,
i.white-icon,
svg.feather.white-icon {
    color: #ffffff !important;
    stroke: #ffffff !important;
    font-size: 18px !important;
    width: auto;
    height: auto;
    display: inline-block;
}

.white-icon:hover {
    color: var(--tg-cyan) !important;
    stroke: var(--tg-cyan) !important;
}

/* Cart Icon Specific - Bright White & Crisp */
.navbar .menu-cart-btn i,
.navbar .menu-cart-btn svg,
.navbar a.menu-cart-btn i,
.navbar a.menu-cart-btn svg,
.navbar li.menu-cart-btn i,
.navbar li.menu-cart-btn svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
    stroke-width: 2.5px !important;
    width: 20px !important;
    height: 20px !important;
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.navbar .menu-cart-btn:hover i,
.navbar .menu-cart-btn:hover svg {
    stroke: var(--tg-cyan) !important;
    transform: scale(1.1);
}

/* Cart Badge - Cyan */
.navbar .badge,
.cart-count,
.rounded-circle.bg-theme {
    background-color: #2EC4C3 !important;
    /* Cyan */
    color: #fff !important;
}

/* Desktop Hover Dropdowns - Only for real desktop screens */
@media (min-width: 992px) {

    .navbar .nav-item:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
        display: block !important;
    }

    .dropdown-menu {
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
        padding: 10px 0 !important;
        border-radius: 12px !important;
        z-index: 10000 !important;
        display: block !important;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        min-width: 220px;
    }
}

/* Base Dropdown Styling (Shared) */
.dropdown-menu,
.dropdown-menu-profile {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 8px 0 !important;
}

.dropdown-item {
    color: #ffffff !important;
    padding: 10px 20px !important;
    font-size: 0.95rem !important;
    transition: all 0.2s ease !important;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: var(--tg-primary) !important;
    color: #000 !important;
    padding-left: 25px !important;
}

/* Category/Courses Dropdown Button */
/* Category/Courses Dropdown Button */
/* Category/Courses Dropdown Button - Top Level Only */
.navbar .menu-round-btn a,
.navbar .nav-item>.nav-link.dropdown-toggle,
.menu-category-btn .nav-link,
#mainNav .navbar-nav>.nav-item>.dropdown-toggle {
    background-color: transparent !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding: 8px 16px !important;
    border: none !important;
    font-weight: 600;
    box-shadow: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar .nav-item>.nav-link.dropdown-toggle::after {
    border: none !important;
    content: "\f107" !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
    transition: transform 0.3s ease;
}

.navbar .nav-item:hover>.nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
    color: var(--tg-primary);
}

/* Ensure nested dropdown toggles (subcategories) are WHITE */
.dropdown-menu .dropdown-toggle,
.dropdown-menu .dropdown-item {
    color: #ffffff !important;
}

/* Logo - Bright White */
.navbar-brand img {
    height: 38px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
    transition: all 0.3s ease;
}

/* Logo size for Dashboard (Logged In) */
.isLoginMenu .navbar-brand img {
    height: 155px !important;
}

/* Search Bar */
.input-group.landing {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50px !important;
    padding: 5px 15px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.input-group.landing:focus-within {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: var(--tg-cyan) !important;
}

.input-group.landing .form-control {
    background-color: transparent !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: none !important;
    padding-left: 10px;
    height: auto !important;
    font-size: 0.85rem;
}

.input-group.landing .form-control::placeholder {
    color: #999 !important;
}

.input-group.landing .input-group-text {
    background-color: transparent !important;
    border: none !important;
    color: #555 !important;
    padding: 0;
    margin-right: 5px;
}

.input-group.landing button {
    color: #555 !important;
    /* Grey icon inside search */
}

/* Auth Buttons */
.menu-sign-in-btn .theme-button1 {
    background: linear-gradient(135deg, var(--tg-primary) 0%, #a8ff93 100%) !important;
    color: #000 !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    border: none !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(197, 255, 188, 0.4) !important;
    transition: all 0.3s ease !important;
    width: 100%;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
}

.menu-sign-in-btn .theme-button1:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(197, 255, 188, 0.6) !important;
    color: #000 !important;
}

/* Sticky State - When scrolling */
.sticky-header.affix {
    position: fixed !important;
    top: 20px !important;
    width: 90% !important;
    max-width: 1200px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(10, 88, 202, 0.95) !important;
    margin: 0 auto !important;
    border-radius: 50px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

/* Hero Carousel */
.tp-hero-area {
    background-color: var(--tg-dark-bg);
    margin-top: -1px !important;
    position: relative;
    z-index: 1;
}

#heroCarousel .carousel-item {
    height: 100vh;
    min-height: 700px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 15, 25, 1) 0%, rgba(11, 15, 25, 0.8) 50%, rgba(11, 15, 25, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-image-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.hero-bg-image {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    max-height: 80%;
    max-width: 60%;
    opacity: 0.8;
    z-index: 0;
}

/* Typography for Hero */
.tp-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tp-hero-title span {
    background: linear-gradient(to right, var(--tg-primary), var(--tg-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tp-hero-subtitle {
    font-size: 1.25rem;
    color: var(--tg-text-muted);
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Fun Fact & Other Sections Refinement */
.funfact-area {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-dark-surface {
    background-color: var(--tg-dark-surface) !important;
}

/* Why Choose Section Refinement */
.tp-why-choose-area {
    background-color: var(--tg-dark-bg);
    padding: 120px 0;
}

.tp-section-title-wrapper {
    margin-bottom: 60px;
}

.tp-section-title-wrapper span {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 10px;
    display: inline-block;
}

.tp-section-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.tp-section-main-title span {
    color: #c5ffbc;
    font-size: 3.5rem;
    font-weight: 800;
}

/* Why Choose Us Revamp v2 (Teknisigo Unique Style) */
.why-choose-card {
    background: var(--tg-dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border-color: rgba(46, 196, 195, 0.4);
}

.why-choose-card.variant-brand {
    background: linear-gradient(135deg, var(--tg-primary), var(--tg-cyan));
    border: none;
    box-shadow: 0 20px 40px rgba(10, 88, 202, 0.3);
}

.why-choose-card.variant-brand .why-choose-title,
.why-choose-card.variant-brand .why-choose-text {
    color: #fff !important;
}

.why-choose-card.variant-brand .why-choose-arrow {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.why-choose-arrow {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 60px;
    height: 60px;
    background: rgba(46, 196, 195, 0.1);
    color: var(--tg-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.4s ease;
    z-index: 2;
}

.why-choose-card:hover .why-choose-arrow {
    transform: rotate(-45deg);
    background: #fff;
    color: var(--tg-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.why-choose-card.variant-brand:hover .why-choose-arrow {
    background: #fff;
    color: var(--tg-primary);
}

.why-choose-img-box {
    margin-top: auto;
    padding-top: 30px;
    width: 100%;
}

.why-choose-img-box img {
    width: 100%;
    height: 220px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s ease;
}

.why-choose-card:hover .why-choose-img-box img {
    transform: scale(1.08);
}

.why-choose-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 85%;
}

.why-choose-text {
    font-size: 1rem;
    color: var(--tg-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .why-choose-card {
        padding: 40px 30px;
        border-radius: 35px;
    }

    .why-choose-title {
        font-size: 1.5rem;
    }

    .why-choose-arrow {
        width: 50px;
        height: 50px;
        top: 25px;
        right: 25px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .why-choose-img-box img {
        height: 180px;
    }
}

/* Testimonial Section Styles */
.tp-testimonial-area {
    background-color: var(--tg-dark-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-left-content {
    position: sticky;
    top: 100px;
}

.testimonial-quote-icon {
    opacity: 0.3;
}

.testimonial-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
}

.testimonial-nav-btn {
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: rgba(8, 66, 152, 0.3) !important;
    border-color: #c5ffbc !important;
    transform: scale(1.1);
}

.testimonial-nav-btn:active {
    background: #c5ffbc !important;
    border-color: #c5ffbc !important;
}

.testimonial-slider-wrapper {
    position: relative;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-image-slider {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-image-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonial-image-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.testimonial-image-slider::-webkit-scrollbar-thumb {
    background: #c5ffbc;
    border-radius: 10px;
}

.testimonial-image-slider::-webkit-scrollbar-thumb:hover {
    background: #2EC4C3;
}

.testimonial-slide-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInRight 0.5s ease-out;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    width: 100%;
    max-width: 450px;
    min-width: 350px;
}

.testimonial-slide-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(46, 196, 195, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.3s ease;
    object-fit: cover;
}

.testimonial-slide-item:hover .testimonial-image {
    transform: scale(1.05);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 992px) {
    .testimonial-main-title {
        font-size: 2.2rem;
    }

    .testimonial-left-content {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .testimonial-slide-item {
        min-width: 300px;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .testimonial-main-title {
        font-size: 1.8rem;
    }

    .testimonial-slide-item {
        min-width: 280px;
        max-width: 350px;
    }

    .testimonial-image {
        border-radius: 15px;
    }
}

/* Suitable For Section Styles */
.tp-suitable-for-area {
    background-color: var(--tg-dark-bg);
    padding: 80px 0;
    position: relative;
}

.suitable-for-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    text-align: center;
}

.suitable-for-main-title span {
    color: #c5ffbc;
}

.suitable-for-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.suitable-for-card:hover {
    transform: translateY(-10px);
}

.suitable-for-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.suitable-for-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    transition: all 0.3s ease;
    object-fit: cover;
}

.suitable-for-card:hover .suitable-for-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.suitable-for-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    min-height: 50px;
}

.suitable-for-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
}

.suitable-for-cta-btn {
    display: inline-block;
    background: #c5ffbc !important;
    color: #ffffff !important;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(8, 66, 152, 0.3);
    border: none;
    cursor: pointer;
}

.suitable-for-cta-btn:hover {
    background: #2EC4C3 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(46, 196, 195, 0.5) !important;
}

a.suitable-for-cta-btn:hover {
    background: #2EC4C3 !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .suitable-for-main-title {
        font-size: 2.2rem;
    }

    .suitable-for-item-title {
        font-size: 1rem;
        min-height: auto;
    }

    .suitable-for-item-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .suitable-for-main-title {
        font-size: 1.8rem;
    }

    .suitable-for-item-title {
        font-size: 0.95rem;
    }

    .suitable-for-item-text {
        font-size: 12px;
    }

    .suitable-for-cta-btn {
        font-size: 1rem;
        padding: 15px 40px;
    }

    .suitable-for-image-placeholder {
        min-height: 250px !important;
    }
}

/* New Learning Journey Timeline Styles */
.journey-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--tg-primary);
    text-transform: none;
    letter-spacing: 1px;
}

.journey-custom-dropdown {
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
}

.dropdown-trigger {
    background: #ffffff;
    border: 3px solid #c5ffbc;
    color: #111;
    padding: 22px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dropdown-trigger i {
    color: #c5ffbc;
    font-size: 1.4rem;
}

.dropdown-trigger:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(57, 59, 231, 0.3);
}

.dropdown-trigger.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: var(--tg-primary);
}

.dropdown-options {
    position: absolute;
    top: 105%;
    /* Slight gap */
    left: 0;
    right: 0;
    background: #ffffff;
    /* White bg */
    border: 2px solid #c5ffbc;
    border-radius: 15px;
    display: none;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: slideDownFade 0.3s ease-out;
    z-index: 999;
}

.option-item {
    padding: 18px 25px;
    color: #111;
    /* Dark text */
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid #f1f5f9;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item:hover {
    background: #eff6ff;
    color: #c5ffbc;
    padding-left: 35px;
}

.option-item.active {
    background: #c5ffbc;
    color: #ffffff;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-timeline-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.journey-timeline-panel.active {
    display: block;
}

.timeline-v2 {
    position: relative;
    padding-left: 60px;
    margin-top: 20px;
}

.timeline-v2::before {
    content: '';
    position: absolute;
    left: 35px;
    /* Adjust line position for larger icon */
    top: 0;
    bottom: 0;
    width: 3px;
    /* Thicker line */
    background: rgba(255, 255, 255, 0.15);
}

.timeline-v2-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-v2-item:last-child {
    margin-bottom: 0;
}

.timeline-v2-icon {
    position: absolute;
    left: -85px;
    /* Adjusted specific left for larger icon */
    width: 75px;
    /* Even Larger icon */
    height: 75px;
    background: #c5ffbc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 32px;
    /* Even Larger inner icon */
    border: 5px solid #000000;
    z-index: 2;
    box-shadow: 0 0 25px rgba(57, 59, 231, 0.4);
}

.timeline-v2-content h4 {
    font-size: 2rem;
    /* Even Larger title */
    font-weight: 800;
    color: #c5ffbc;
    margin-bottom: 12px;
}

.timeline-v2-content p {
    font-size: 1.3rem;
    /* Even Larger body text */
    color: #E2E8F0;
    /* Brighter text */
    line-height: 1.6;
    max-width: 700px;
}

@media (max-width: 768px) {
    .tp-journey-area {
        padding: 30px 0 !important;
        /* Reduced section padding */
    }

    .journey-main-title {
        font-size: 1.4rem;
        /* Matched to testimonial header */
    }

    .journey-custom-dropdown {
        margin-bottom: 30px;
        /* Tighter spacing */
    }

    .dropdown-trigger {
        padding: 12px 18px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .option-item {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .timeline-v2 {
        padding-left: 65px;
        /* Increased padding for larger icon */
        margin-top: 15px;
    }

    .timeline-v2::before {
        left: 24px;
        /* Centered with larger icon */
    }

    .timeline-v2-item {
        margin-bottom: 30px;
    }

    .timeline-v2-icon {
        left: -65px;
        width: 50px;
        /* Larger mobile icon */
        height: 50px;
        font-size: 20px;
        border-width: 4px;
        box-shadow: 0 0 15px rgba(57, 59, 231, 0.4);
    }

    .timeline-v2-content h4 {
        font-size: 1.3rem;
        /* Much larger title */
        margin-bottom: 6px;
    }

    .timeline-v2-content p {
        font-size: 1rem;
        /* Much larger body text */
        line-height: 1.5;
    }

    .tp-journey-area .tp-btn-3 {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .mt-40 {
        margin-top: 15px !important;
    }
}

.journey-panel-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.journey-materi-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.journey-materi-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--tg-text-muted);
    font-size: 0.95rem;
}

.journey-materi-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--tg-primary);
    font-size: 16px;
}

.suitable-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
}

.suitable-badge h6 {
    color: var(--tg-primary);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.suitable-badge p {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .journey-tabs-wrapper {
        margin-bottom: 40px;
    }
}

/* Benefit & Pricelist Section Styles */
.benefit-switcher-wrap {
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 50px;
}

.benefit-nav-btn {
    padding: 8px 22px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}


.benefit-nav-btn.active {
    background: #fff;
    color: var(--tg-primary);
    border-color: #fff;
}

/* New Benefit Layout Style (YellowFit Influence) */
.benefit-header-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.benefit-brand-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff !important;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.benefit-main-pill {
    background: #ffffff;
    padding: 15px 50px;
    border-radius: 60px;
    border: none;
    box-shadow: none;
    display: inline-block;
}

.benefit-main-pill h2 {
    color: #005ce7 !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: none;
}

.benefit-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-img-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}

.benefit-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.benefit-item-v2:hover .benefit-img-wrapper img {
    transform: scale(1.05);
    border-color: var(--tg-primary);
}


.benefit-check-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--tg-primary);
    z-index: 2;
}

.benefit-info-v2 h4 {
    font-size: 1.3rem;
    font-weight: 700;
    /* Light bold */
    color: #ffffff !important;
    margin-bottom: 10px;
}

.benefit-info-v2 p {
    font-size: 0.95rem;
    color: #fffdfd !important;
    /* Regular white */
    line-height: 1.4;
    max-width: 350px;
    margin: 0 auto;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.benefit-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25D366;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    animation: glitch-shake-active 0.3s infinite;
}

.benefit-cta-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.benefit-cta-whatsapp i {
    font-size: 1.4rem;
}

/* Tab Content Visibility */
.benefit-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.benefit-content.active {
    display: block;
}

@media (max-width: 768px) {
    .tp-benefit-area {
        padding: 40px 15px 40px !important;
        border-radius: 40px 40px 0 0;
        margin-top: -5px;
    }
}

.benefit-brand-label {
    font-size: 1rem;
}

.benefit-main-pill {
    padding: 6px 20px;
}

.benefit-main-pill h2 {
    font-size: 1.2rem;
    /* Matched to testimonial section title */
}

.benefit-grid-v2 {
    gap: 30px 10px;
}

.benefit-img-wrapper {
    width: 100px;
    height: 100px;
    margin-bottom: 12px;
}

.benefit-check-badge {
    width: 28px;
    height: 28px;
    font-size: 11px;
    background: #fff;
    color: var(--tg-primary);
    border: 1.5px solid #fff;
}

.benefit-info-v2 h4 {
    font-size: 0.85rem;
    color: #ffffff !important;
    font-weight: 700;
}

.benefit-info-v2 p {
    font-size: 0.75rem;
    color: #ffffff !important;
    opacity: 0.9;
    line-height: 1.4;
    max-width: 300px;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.benefit-cta-whatsapp {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.85rem;
    justify-content: center;
}

.benefit-cta-whatsapp .cta-hand-cursor i {
    font-size: 24px;
}

/* Benefit Switcher (YellowFit Style) */
.benefit-switcher-wrap {
    background: #ffffff;
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.benefit-nav-btn {
    background: transparent;
    color: #000000;
    border: none;
    padding: 12px 35px;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-nav-btn.active {
    background: #c5ffbc;
    /* Blue active */
    color: #000000;
    box-shadow: 0 4px 20px rgba(57, 59, 231, 0.5);
    /* Blue glow */
}

/* Benefit "No.1" Badge */
/* Benefit "No.1" Badge */
.benefit-badge-pill {
    display: inline-block;
    background: #ffffff;
    /* White bg */
    color: #0b63e5;
    /* Distinct Blue Text */
    padding: 12px 60px;
    /* Wider padding */
    border-radius: 60px;
    font-weight: 800;
    font-size: 2.5rem;
    /* Larger text */
    margin-bottom: 25px;
    box-shadow: none;
    /* Flat look per ref */
    letter-spacing: -1px;
}

/* Pricing Plan Revamp (YellowFit Inspired) */
.pricelist-wrapper-v2 {
    max-width: 600px;
    margin: 40px auto 0;
    background: #1e1e1e;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricelist-header-v2 {
    background: var(--tg-primary);
    /* Yellow header */
    padding: 40px 20px;
    text-align: center;
}

.pricelist-header-v2 h2 {
    color: #000000 !important;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    text-shadow: none;
}

.pricing-selector-wrap {
    background: #151515;
    padding: 10px;
    margin: 0 20px;
    border-radius: 12px;
    margin-top: -30px;
    position: relative;
    z-index: 5;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    scrollbar-width: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pricing-selector-wrap::-webkit-scrollbar {
    display: none;
}

.pricing-tab-btn {
    flex: 1 0 auto;
    padding: 10px 18px;
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Mobile Pricing Dropdown Styles */
.pricing-mobile-dropdown {
    position: relative;
    margin: 0 20px;
    margin-top: -30px;
    z-index: 100;
}

/* Centering Dropdown on Desktop */
@media (min-width: 768px) {
    .pricing-mobile-dropdown.center-dropdown-desktop {
        width: 300px;
        /* Or whatever width looks good */
        margin: -30px auto 0;
    }
}

.pricing-dropdown-trigger {
    background: #ffffff;
    border: 3px solid #c5ffbc;
    color: #111;
    padding: 22px 30px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-dropdown-trigger i {
    color: #c5ffbc;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.pricing-dropdown-trigger:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(57, 59, 231, 0.3);
}

.pricing-dropdown-trigger.open i {
    transform: rotate(180deg);
}

.pricing-dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    /* White Bg */
    border: 2px solid #c5ffbc;
    border-radius: 15px;
    overflow: hidden;
    display: none;
    z-index: 101;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-option-item {
    padding: 18px 25px;
    color: #111;
    /* Dark Text */
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

/* FAQ Accordion Styling */
.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5ffbc'%3e%3cpath rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c5ffbc'%3e%3cpath rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Footer spacing fix */
footer,
.footer-area {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.pricing-option-item:hover {
    background: #eff6ff;
    color: #c5ffbc;
    padding-left: 35px;
}

.pricing-option-item.active {
    background: #c5ffbc;
    color: #ffffff;
}

.pricing-tab-btn.active {
    background: #ffcc00;
    /* Yellow active pill */
    color: #ffffff;
}

.pricing-countdown-wrap {
    padding: 30px 20px 10px;
    text-align: center;
    background: #1e1e1e;
}

.promo-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.timer-box {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.timer-unit {
    background: #c5ffbc;
    color: #000000;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 800;
    min-width: 45px;
}

.timer-sep {
    color: #2cb67d;
    font-weight: 800;
    font-size: 1.2rem;
}

.pricing-card-content {
    background: #1e1e1e;
    padding: 30px 30px 50px;
    text-align: center;
}

.pricing-card-content h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price-strike {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.price-main {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 15px;
}

.class-info-brief {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 30px;
    display: block;
}

.pricing-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
}

.pricing-feature-list li {
    color: #fff;
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-feature-list li:last-child {
    border-bottom: none;
}

.pricing-feature-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #c5ffbc;
    font-size: 1.2rem;
}

.pricing-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.pricing-panel.active {
    display: block;
}

@media (max-width: 768px) {
    .pricelist-wrapper-v2 {
        border-radius: 30px;
        margin: 10px 10px 0;
    }

    .pricelist-header-v2 {
        padding: 25px 15px;
    }

    .pricelist-header-v2 h2 {
        font-size: 1.15rem;
    }

    .price-main {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .pricing-card-content {
        padding: 25px 20px 35px;
    }

    .pricing-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .pricing-feature-list {
        margin-bottom: 25px;
    }

    .pricing-feature-list li {
        font-size: 0.8rem;
        padding: 10px 0 10px 30px;
    }

    .pricing-tab-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .timer-unit {
        font-size: 0.85rem;
        padding: 4px 8px;
        min-width: 32px;
    }

    .promo-label {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .class-info-brief {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .pricing-mobile-dropdown {
        margin-top: -25px;
    }
}

/* Mitra Kami Refinement */
.client-logo-item img {
    filter: none !important;
    /* Ensure colored logos */
    opacity: 0.8;
    transition: all 0.3s ease;
    max-height: 50px;
}

.client-logo-item img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Standardized Dark Backgrounds */
.tp-why-choose-area,
.tp-testimonial-area,
.tp-suitable-for-area,
.tp-pricelist-area,
.tp-mitra-area,
.partnership-section {
    background-color: #000 !important;
    background-image: none !important;
}

.tp-benefit-area {
    background-color: #393be7 !important;
    background-image: none !important;
    border-radius: 60px 60px 0 0;
    margin-top: -10px;
    position: relative;
    z-index: 10;
}

/* Navbar Transparent */
.menu-section-area {
    background-color: rgba(0, 0, 0, 0.8) !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

.tp-journey-area {
    background-color: #000 !important;
    background-image: none !important;
}

.benefit-card {
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-card {
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.price-card.featured::before {
    content: 'BEST CHOICE';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--tg-primary);
    color: #fff;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.benefit-icon i {
    animation: pulse 2s infinite;
}

/* Why Choose Us Revamp */
.why-choose-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.why-choose-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--tg-primary);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.why-choose-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tg-primary), var(--tg-cyan));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(10, 88, 202, 0.3);
}

.why-choose-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.why-choose-text {
    color: var(--tg-text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Testimonials Revamp */
.testimonial-image-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 40px 0;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scroll-behavior: smooth;
    cursor: grab;
}

.testimonial-image-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testimonial-slide-item {
    flex: 0 0 auto;
    width: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    background: var(--tg-dark-surface);
}

.testimonial-slide-item:hover {
    transform: scale(1.02);
    border-color: var(--tg-primary);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.testimonial-nav-btn:hover {
    background: var(--tg-primary) !important;
    border-color: var(--tg-primary) !important;
    transform: scale(1.1);
}

/* Suitable For Revamp */
.suitable-for-card {
    transition: all 0.4s ease;
}

.suitable-for-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 25px;
    background: var(--tg-dark-surface);
    aspect-ratio: 4/5;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.suitable-for-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.suitable-for-card:hover .suitable-for-image-wrapper img {
    transform: scale(1.1);
}

.suitable-for-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    opacity: 0.6;
}

.suitable-for-item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.suitable-for-card:hover .suitable-for-item-title {
    color: var(--tg-cyan);
}

.suitable-for-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--tg-primary), var(--tg-cyan));
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(10, 88, 202, 0.4);
    margin-top: 50px;
    text-decoration: none;
}

.suitable-for-cta-btn:hover {
    background: var(--tg-cyan) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(46, 189, 192, 0.4);
    color: #fff !important;
}

/* WhatsApp Floating Action Button */
.wa-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.wa-floating-btn .wa-text {
    display: none;
}

.wa-floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: #128C7E;
}

.wa-floating-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.2;
    z-index: -1;
}

/* Button & Hover Fixes */
.tp-btn-3:hover {
    background-color: var(--tg-cyan) !important;
    border-color: var(--tg-cyan) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 196, 195, 0.3);
}

.journey-materi-list li::before {
    color: var(--tg-primary);
    /* Keep static color as primary as per guidelines */
}

/* Custom Dots for Owl Carousel */
.tp-pricelist-area .owl-dots {
    margin-top: 40px !important;
    text-align: center;
}

.tp-pricelist-area .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    margin: 5px !important;
    transition: all 0.3s ease !important;
}

.tp-pricelist-area .owl-dot.active span {
    background: var(--tg-cyan) !important;
    width: 30px !important;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS (Media Queries)
   ========================================================================== */

/* Large Tablets & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {

    #mainNav.navbar,
    .navbar {
        width: 95% !important;
        padding: 10px 25px !important;
    }
}

.hero-full-banner {
    border-radius: 0 !important;
    width: 100% !important;
    height: auto !important;
    /* Allow natural aspect ratio to show full content */
    display: block;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container-padding {
    padding-top: 64px !important;
    /* Exact match to navbar height */
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .hero-container-padding {
        padding-top: 64px !important;
        /* Exact match for mobile navbar */
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    header,
    .menu-section-area {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        padding: 0 !important;
    }

    #mainNav.navbar,
    .navbar {
        border-radius: 0 !important;
        width: 100% !important;
        padding: 0 15px !important;
        height: 64px !important;
        /* Fixed height per request */
        min-height: 64px !important;
        display: flex !important;
        align-items: center !important;
    }

    .navbar-brand img,
    .main-logo-img {
        height: 150px !important;
        /* GIGA size for Mobile */
        width: auto !important;
        max-width: 250px !important;
        display: block !important;
        object-fit: contain !important;
        padding: 0 !important;
        /* Fully maximized */
    }

    /* Mobile Menu Overlay Redesign - Integrated with Navbar */
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-right: none !important;
        border-left: none !important;
        border-radius: 0 0 30px 30px !important;
        padding: 20px !important;
        margin-top: 0 !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
        text-align: left !important;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 85vh;
        overflow-y: auto;
        z-index: 10000;
        animation: mobileMenuSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    @keyframes mobileMenuSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile Menu List Refinement */
    /* Mobile Menu List Refinement */
    .header-nav-left-side,
    .header-nav-right-side {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-nav {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .navbar-collapse .nav-link {
        color: #fff !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        padding: 18px 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        text-align: left !important;
        position: relative !important;
    }

    .navbar-collapse .nav-link.dropdown-toggle::after {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        border-top: 5px solid !important;
        border-right: 4px solid transparent !important;
        border-left: 4px solid transparent !important;
    }

    /* Labels without icons for a cleaner look */
    .navbar-collapse .dropdown-menu {
        background: rgba(255, 255, 255, 0.04) !important;
        padding: 10px 0 10px 20px !important;
        margin: 0 !important;
        border-left: 4px solid var(--tg-primary) !important;
        border-radius: 0 !important;
        position: relative !important;
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .navbar-collapse .dropdown-menu.show {
        display: block !important;
    }

    .navbar-collapse .dropdown-item {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        border-radius: 8px;
        display: block !important;
    }

    /* Cart Item Styling in Mobile Menu */
    .menu-cart-btn {
        padding: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .menu-cart-btn .nav-link {
        padding: 18px 15px !important;
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 15px !important;
        border-bottom: none !important;
        position: relative !important;
    }

    .menu-cart-btn .nav-link i {
        font-size: 1.2rem;
        color: var(--tg-primary);
        position: relative;
    }

    .menu-cart-btn .nav-link::after {
        content: "Keranjang Belanja" !important;
        font-weight: 600;
        font-size: 1.05rem;
        border: none !important;
        margin: 0 !important;
        transform: none !important;
        position: static !important;
        display: inline-block !important;
    }

    .menu-cart-btn .cartQuantity {
        position: absolute !important;
        top: 10px !important;
        left: 25px !important;
        transform: none !important;
        padding: 2px 6px !important;
        font-size: 0.7rem !important;
        background-color: var(--tg-cyan) !important;
        color: #fff !important;
        border-radius: 50px !important;
        min-width: 18px;
        height: 18px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    /* Auth Button Bottom Spacing */
    .menu-sign-in-btn {
        padding: 25px 15px !important;
        border-bottom: none !important;
    }

    .menu-sign-in-btn .theme-button1 {
        width: 100% !important;
        display: block !important;
        background: linear-gradient(135deg, var(--tg-primary), #a8ff93) !important;
        color: #000 !important;
        font-weight: 800 !important;
        text-align: center !important;
        padding: 15px !important;
        border-radius: 15px !important;
        font-size: 1rem !important;
        text-transform: uppercase !important;
        box-shadow: 0 5px 15px rgba(197, 255, 188, 0.3) !important;
        letter-spacing: 1px;
    }

    .tp-hero-title {
        font-size: 3rem;
    }

    .journey-tabs-wrapper {
        flex-direction: column !important;
        padding: 0;
        margin-bottom: 25px;
        gap: 10px;
    }

    .journey-tab-item {
        width: 100%;
        padding: 12px 18px;
        border-left: 3px solid transparent;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        background: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
    }

    .journey-tab-item.active {
        background: rgba(46, 196, 195, 0.1);
        border-left-color: var(--tg-cyan);
        border-bottom-color: transparent;
    }

    .journey-tab-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .journey-tab-content h4 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .journey-tab-content p {
        font-size: 0.75rem;
        display: block;
        /* Show subtitle in list mode */
    }

    .journey-content-card {
        padding: 20px 15px;
        border-radius: 20px;
    }
}

/* Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
    .pt-120 {
        padding-top: 60px !important;
    }

    .pb-120 {
        padding-bottom: 60px !important;
    }

    .hero-container-padding {
        padding-top: 80px;
    }

    .tp-hero-title {
        font-size: 2.2rem;
    }

    .tp-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    #heroCarousel .carousel-item img {
        height: 400px;
        border-radius: 20px !important;
    }

    /* Why Choose Vertical Grid */
    .tp-why-choose-area .row.g-4 {
        display: flex;
        flex-wrap: wrap;
        overflow-x: visible;
        padding-left: 0;
        padding-right: 0;
    }

    .tp-why-choose-area .col-lg-4,
    .tp-why-choose-area .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0px;
        /* Using Bootstrap gap g-4 */
    }

    .why-choose-card {
        padding: 30px 25px;
        border-radius: 30px;
        height: auto;
    }

    .why-choose-title {
        font-size: 1.4rem;
        max-width: 100%;
    }

    .why-choose-img-box img {
        height: 180px;
    }

    /* Testimonials Mobile */
    .testimonial-image-slider {
        gap: 15px;
        padding: 20px 0;
    }

    .testimonial-slide-item {
        width: 70vw;
        max-width: 280px;
        min-width: unset;
        border-radius: 15px;
    }

    /* Learning Journey Mobile */
    .journey-panel-img img {
        height: 200px;
        object-fit: cover;
    }

    .journey-materi-list li {
        font-size: 0.85rem;
        padding-left: 25px;
        margin-bottom: 8px;
    }

    .journey-materi-list li::before {
        top: 2px;
        font-size: 14px;
    }

    .suitable-badge {
        padding: 15px;
        border-radius: 15px;
    }

    /* Suitable For Mobile */
    .suitable-for-image-wrapper {
        margin-bottom: 12px;
        border-radius: 15px;
        aspect-ratio: 1/1;
        height: auto;
    }

    .suitable-for-item-title {
        font-size: 0.85rem !important;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .suitable-for-card {
        padding: 15px 10px !important;
    }

    .suitable-for-cta-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    /* Benefits Grid */
    .benefit-content .row.g-4 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-content .col-md-6,
    .benefit-content .col-lg-4 {
        width: 100%;
    }

    .benefit-card {
        padding: 15px 10px !important;
        border-radius: 18px !important;
        text-align: center;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin: 0 auto 12px;
    }

    .benefit-card h4 {
        font-size: 0.85rem !important;
        margin-bottom: 8px;
    }

    .benefit-card p {
        font-size: 0.75rem !important;
        line-height: 1.3;
    }

    .benefit-switcher-wrap {
        display: flex;
        width: 100%;
        margin-bottom: 30px;
    }

    .benefit-nav-btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    /* Pricing */
    .price-card {
        padding: 25px 20px !important;
        margin: 10px 5px;
        border-radius: 25px !important;
    }

    .price-header h3 {
        font-size: 1.4rem;
    }

    .new-price {
        font-size: 1.8rem;
    }

    .tp-pricelist-slider .owl-nav {
        display: none;
    }

    /* Footer & Partners */
    .partnership-logos img {
        height: 30px !important;
        margin: 0 15px;
    }

    .footer-logo {
        margin-bottom: 15px;
        width: 120px !important;
    }

    .footer-social ul {
        justify-content: center;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 40px !important;
    }

    .footer-widget-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .wa-floating-btn {
        width: 100%;
        height: 60px;
        bottom: 0px;
        right: 0px;
        left: 0px;
        border-radius: 20px 20px 0 0;
        font-size: 24px;
        padding: 0 20px;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    }

    .wa-floating-btn .wa-text {
        display: block;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .wa-floating-btn::before {
        display: none !important;
    }
}

/* Base Phones (max-width: 576px) */
@media (max-width: 576px) {
    .tp-hero-title {
        font-size: 1.8rem;
    }

    .hero-container-padding {
        padding-top: 65px !important;
        /* Matched to forced header height */
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page-layout .wa-floating-btn {
        border-radius: 20px 20px 0 0 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        height: calc(65px + env(safe-area-inset-bottom)) !important;
    }

    .tp-section-2-title {
        font-size: 1.6rem !important;
    }

    .tp-funfact-item {
        justify-content: center !important;
        margin-bottom: 15px;
    }

    .tp-funfact-icon {
        width: 45px;
        height: 45px;
    }

    .tp-funfact-icon img {
        width: 25px;
    }

    .navbar-brand img,
    .main-logo-img {
        height: 130px !important;
        /* Giga size for small phones */
        width: auto !important;
        max-width: 220px !important;
    }

    #mainNav.navbar,
    .navbar {
        padding: 0 10px !important;
        height: 64px !important;
        min-height: 64px !important;
        margin-top: 0px !important;
        display: flex !important;
        align-items: center !important;
    }

    .navbar-toggler {
        padding: 3px 6px !important;
        font-size: 0.85rem !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 8px !important;
    }

    .navbar-toggler-icon {
        width: 1.25em !important;
        height: 1.25em !important;
        filter: brightness(0) invert(1) !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
        background: var(--tg-cyan) !important;
    }

    /* Hero Banner Area Adjustment */
    .tp-hero-area {
        padding: 0 !important;
    }

    .home-page-layout .hero-container-padding {
        padding-top: 65px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-full-banner {
        min-height: 550px;
        /* Taller on mobile for better Impact */
        object-fit: cover;
        object-position: center;
    }

    .urgency-bar {
        margin-top: -120px;
        /* Adjust overlay position for mobile */
        width: 100%;
        padding: 10px;
    }
}

/* Hero Banner Wrapper Positioning */
.hero-banner-wrapper {
    position: relative;
}

/* Mobile Consultation Wrapper */
.mobile-consultation-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: 85%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile Consultation Button Overlay */
.mobile-consultation-btn-overlay {
    background: #25D366;
    padding: 5px 34px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    animation: glitchHorizontal 3s ease-in-out infinite;
}

.mobile-consultation-btn-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes glitchHorizontal {

    0%,
    90%,
    100% {
        transform: translateX(0);
        filter: hue-rotate(0deg);
    }

    92% {
        transform: translateX(3px);
        filter: hue-rotate(5deg);
    }

    94% {
        transform: translateX(-3px);
        filter: hue-rotate(-5deg);
    }

    96% {
        transform: translateX(2px);
        filter: hue-rotate(0deg);
    }

    98% {
        transform: translateX(-1px);
    }
}

.mobile-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff !important;
    text-decoration: none !important;
    font-family: 'Helvetica', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    width: 100%;
}

.mobile-cta-link span {
    padding-top: 2px;
}

.mobile-cta-link i {
    font-size: 1.3rem;
}

.mobile-cta-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* Click Icon Pointer */
.click-icon-pointer {
    margin-top: -0.8rem;
    display: flex;
    justify-content: center;
    animation: glitchHorizontal 3s ease-in-out infinite;
}

.click-icon-pointer i {
    font-size: 1.8rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Mobile Consultation Wrapper for Sections (not banner) */
.features-cta-wrapper .mobile-consultation-wrapper,
.row .mobile-consultation-wrapper,
.pricing-card-content .mobile-consultation-wrapper,
.comparison-bottom-cta .mobile-consultation-wrapper {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.features-cta-wrapper .mobile-consultation-btn-overlay,
.row .mobile-consultation-btn-overlay,
.pricing-card-content .mobile-consultation-btn-overlay,
.comparison-bottom-cta .mobile-consultation-btn-overlay {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Urgency Bar - Transparent for Integrated Design */
.urgency-bar {
    background: transparent !important;
    /* Made transparent */
    backdrop-filter: none !important;
    border: none !important;
    padding: 10px 35px;
    margin-top: -80px;
    /* Pull it up to sit ON TOP of the banner image */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    animation: slideUpFade 1s ease-out;
}

.urgency-dot {
    width: 12px;
    height: 12px;
    background: #ff3e3e;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 62, 62, 0.5);
}

.urgency-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #ff3e3e;
    animation: pingPongUrgency 1.5s infinite;
}

@keyframes pingPongUrgency {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.urgency-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

.urgency-text .highlight {
    color: var(--tg-cyan);
    font-weight: 800;
}

.urgency-btn {
    background: var(--tg-cyan);
    color: #fff !important;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.urgency-btn:hover {
    background: #fff;
    color: var(--tg-primary) !important;
    transform: translateX(5px);
}

/* Responsive Banner Content Overlay */
.banner-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0) 60%);
    z-index: 5;
}

.hero-text-side {
    max-width: 700px;
    padding-left: 20px;
}

.hero-academy-logo {
    height: 80px !important;
    width: auto;
}

.tp-hero-title-new {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.tp-hero-title-new span {
    color: var(--tg-cyan);
    text-shadow: 0 0 20px rgba(46, 189, 192, 0.4);
}

.tp-hero-subtitle-new {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

/* Invisible Hotspot for Image Buttons */
.banner-cta-container {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 40%;
    height: 15%;
    z-index: 100;
}

.urgency-btn-invisible {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* Integrated Urgency Container - Inside Banner Wrapper */
.urgency-container-integrated {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.urgency-glass-bar {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.urgency-text-new {
    color: #fff;
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.urgency-text-new .highlight {
    color: var(--tg-cyan);
    font-weight: 800;
}

.urgency-btn-new {
    background: var(--tg-cyan);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
}

/* Responsive Scaling for Content */
@media (max-width: 992px) {
    .banner-content-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.3) 100%);
    }

    .hero-text-side {
        text-align: center;
        width: 100%;
        padding: 0 15px;
        margin-top: -50px;
        /* Center content better on portrait mobile */
    }

    .tp-hero-title-new {
        font-size: 2.2rem;
    }

    .tp-hero-subtitle-new {
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-academy-logo {
        height: 70px !important;
        margin-bottom: 20px;
    }

    .urgency-container-integrated {
        bottom: 20px;
    }

    .urgency-glass-bar {
        flex-direction: column;
        gap: 12px;
        border-radius: 20px;
        width: 90%;
        text-align: center;
        padding: 20px 15px;
    }

    .urgency-text-new {
        font-size: 1rem;
    }
}

/* Brand-Aligned Problem-Solution Section */
.tp-problem-solution-area {
    background-color: #000;
    padding: 80px 20px;
    text-align: center;
}

.problem-headline {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
    line-height: 1.1;
}

.problem-headline .italic-yellow {
    font-style: italic;
    color: var(--tg-primary);
    text-shadow: 0 0 15px rgba(57, 59, 231, 0.4);
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.problem-card {
    background: #0F172A;
    border-radius: 20px;
    padding: 25px 20px;
    max-width: 90%;
    width: 100%;
    margin: 0 auto 40px;
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(57, 59, 231, 0.15);
    display: inline-block;
    /* Agar fit dengan konten jika desktop */
}

/* Mobile specific for problem card */
@media (max-width: 767px) {
    .problem-card {
        max-width: 350px !important;
        /* Batasi lebar maksimal di HP */
        width: 85% !important;
        /* Biar ada space kiri kanan */
        display: block;
        padding: 20px 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

.problem-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.problem-item:last-child {
    margin-bottom: 0;
}

.problem-number {
    background: var(--tg-primary);
    color: #000000;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: 2px;
}

.problem-text {
    color: #d4d4d4;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.solution-footer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: #d4d4d4;
}

.solution-footer span {
    color: #c5ffbc;
    /* Light/Glow Cyan */
    text-shadow: 0 0 10px rgba(130, 242, 255, 0.3);
}

@media (max-width: 768px) {
    .tp-problem-solution-area {
        padding: 30px 10px;
        /* Reduced section padding */
    }

    .problem-headline {
        font-size: 2rem;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .problem-headline .italic-yellow {
        font-size: 1.8rem;
    }

    .problem-card {
        padding: 15px 12px;
        border-radius: 14px;
        margin-bottom: 15px;
    }

    .problem-item {
        gap: 10px;
        margin-bottom: 12px;
    }

    .problem-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .problem-number {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 1rem;
        margin-top: 3px;
    }

    .solution-footer {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .urgency-bar {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        border-radius: 15px;
        gap: 10px;
    }

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

/* Cookie Consent Banner Redesign */
.js-cookie-consent.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px;
    padding: 20px !important;
    color: #fff !important;
    z-index: 9999999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.cookie-consent__message {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
}

.allow-button.primary-btn {
    background: var(--tg-primary) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 25px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.allow-button.primary-btn:hover {
    background: var(--tg-cyan) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 88, 202, 0.4);
}

@media (max-width: 768px) {
    .main-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .allow-button.primary-btn {
        width: 100%;
    }
}

/* Comparison Section V2 (YellowFit Style - White BG) */
.tp-comparison-area-v2 {
    background-color: #fff;
    padding: 60px 0 60px;
    position: relative;
    font-family: 'Jost', sans-serif;
    border-radius: 60px 60px 0 0;
    margin-top: -10px;
    z-index: 10;
}

/* Header Text */
.comparison-header-v2 {
    text-align: center;
    margin-bottom: 50px;
}

.comparison-main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
}

.comparison-main-title .highlight-brand {
    font-style: italic;
    color: #000 !important;
    font-weight: 800;
}

.comparison-main-title .highlight-benefit {
    background: var(--tg-primary);
    color: #fff;
    padding: 2px 8px;
    font-weight: 800;
    border-radius: 4px;
}

.comparison-main-title .highlight-competitor {
    font-style: italic;
    color: #999;
    font-weight: 700;
}

/* Card Container */
.comparison-card-v2 {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #000;
    border-radius: 20px;
    position: relative;
    padding-top: 50px;
    /* Increased space for pills */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Floating Pills */
.comparison-pills-header {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: flex-start;
    /* Align start but offset */
    padding-left: 30%;
    /* Offset by label width */
    gap: 0;
    z-index: 10;
}

.pill-brand {
    flex: 1;
    /* Match column width */
    text-align: center;
    padding: 10px 0;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid #000;
    border-top: none;
}

.pill-teknisigo {
    background: #c5ffbc;
    color: #ffffff;
    border-color: #c5ffbc;

    /* White separator */
    border-radius: 0;
    z-index: 2;
}

.pill-others {
    background: #fff;
    color: #000;
    border-radius: 0;
    z-index: 1;
}


/* Table Layout */
.comparison-table-body {
    display: flex;
    flex-direction: column;
}

.c-row {
    display: flex;
    border-bottom: 2px solid #ccc;
    min-height: 50px;
}

/* Columns */
.c-cell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    font-size: 0.95rem;
}

/* 1. Label Column */
.c-label {
    width: 30%;
    background: #fff;
    color: #111;
    font-weight: 500;
    text-align: left;
    align-items: flex-start;
    padding-left: 20px;
    font-style: italic;
}

/* 2. Teknisigo Column (The "Yellow" Column in ref, Blue here) */
.c-val-teknisigo {
    width: 35%;
    background: #c5ffbc;
    /* Yellow BG */
    color: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.c-val-teknisigo strong {
    font-size: 1rem;
    font-weight: 800;
    display: block;
}

.c-val-teknisigo small {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* 3. Others Column (Gray) */
.c-val-others {
    width: 35%;
    background: #E5E7EB;
    /* Gray BG */
    color: #000000;
}

.c-val-others strong {
    font-weight: 700;
}

.c-val-others small {
    font-size: 0.8rem;
}

/* Footer Row Styling */
.c-row.c-row-footer {
    border-bottom: none;
    min-height: 80px;
}

.c-label-footer {
    background: #000;
    color: #fff;
    width: 30%;
    align-items: flex-start;
    padding-left: 20px;
}

.c-label-footer h5 {
    margin: 0;
    font-weight: 800;
    color: #fff;
    font-size: 1.1rem;
}

.c-val-teknisigo-footer {
    width: 35%;
    background: #c5ffbc;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 900;
}

.c-val-others-footer {
    width: 35%;
    background: #D1D5DB;
    color: #000;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Icons */
.icon-check {
    color: #25D366;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-cross {
    color: #ef4444;
    /* Red icon on Gray BG */
    font-size: 1.5rem;
}

/* CTA */
.comparison-bottom-cta {
    text-align: center;
    margin-top: 40px;
}

.main-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    /* WhatsApp Green */
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    animation: glitch-shake-active 1s infinite alternate;
    position: relative;
    /* Anchor for cursor */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tp-comparison-area-v2 {
        padding: 40px 15px 40px;
        border-radius: 40px 40px 0 0;
        margin-top: -5px;
    }

    .comparison-main-title {
        font-size: 1.6rem;
    }

    .c-label {
        width: 30%;
        font-size: 0.8rem;
        padding-left: 10px;
    }

    .c-val-teknisigo,
    .c-val-others {
        width: 35%;
        padding: 10px 5px;
    }

    .c-val-teknisigo strong {
        font-size: 0.9rem;
    }

    .c-val-teknisigo small {
        font-size: 0.7rem;
    }

    .pill-brand {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .main-cta-btn {
        width: 100%;
        font-size: 1rem;
    }

    .comparison-card-v2 {
        border-radius: 15px;
    }

    .c-label-footer h5 {
        font-size: 0.9rem;
    }

    .c-val-teknisigo-footer {
        font-size: 1rem;
    }

    .c-val-others-footer {
        font-size: 0.9rem;
    }
}

/* Scoped Styles for Remora FAQ */
.faq-item-remora {
    background-color: #151a27;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.faq-item-remora:hover {
    border-color: rgba(57, 59, 231, 0.4);
    /* Primary Blue accent */
    transform: translateY(-2px);
}

.faq-header-remora {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-title {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding-right: 15px;
    line-height: 1.4;
}

.faq-icon {
    color: var(--tg-primary);
    /* Primary Blue accent */
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-header-remora[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-body-remora {
    padding: 0 25px 25px 25px;
    color: #fff !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-body-remora p {
    color: #ffffff !important;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Mobile Improvements */
@media (max-width: 767px) {
    .tp-faq-area h2 {
        font-size: 1.5rem !important;
    }

    .faq-item-remora {
        margin-bottom: 15px;
    }

    .faq-header-remora {
        padding: 15px 20px;
    }

    .faq-title {
        font-size: 1rem;
    }

    .faq-body-remora {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1rem;
    }
}

/* Footer Area Styles */
.footer-area {
    background-color: #000 !important;
    background: #000 !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-overlay {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

.footer-logo {
    width: 140px !important;
    height: auto !important;
    margin-bottom: 5px;
    filter: brightness(0) invert(1);
    /* Make logo white */
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 25px;
}

.footer-widget-title {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--tg-primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--tg-cyan) !important;
    padding-left: 5px;
}

.footer-social ul li a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social ul li a:hover {
    background: var(--tg-primary);
    border-color: var(--tg-primary);
    color: #fff !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(10, 88, 202, 0.4);
}

.contact-icon {
    font-size: 20px;
    margin-right: 12px;
    color: var(--tg-primary) !important;
}

.contact-text,
.contact-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 15px;
}

.contact-link:hover {
    color: var(--tg-primary) !important;
}

.maps-link {
    font-size: 14px;
    color: var(--tg-primary) !important;
    text-decoration: none;
    font-weight: 600;
}

.maps-link:hover {
    text-decoration: underline;
}

.copyright-wrapper {
    border-top: none;
    margin-top: 0;
    padding-top: 0 !important;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6) !important;
}

.copyright-text strong {
    color: #ffffff !important;
}

.footer-bottom-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-nav ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-nav ul li a:hover {
    color: var(--tg-cyan) !important;
}

@media (max-width: 991px) {
    .footer-top-part {
        padding: 20px 0 !important;
    }

    .footer-widget-title {
        margin-bottom: 20px !important;
    }

    /* Mobile/Tablet Centering */
    .footer-widget,
    .footer-desc,
    .footer-widget-title,
    .footer-links,
    .contact-text,
    .copyright-text,
    .footer-links ul,
    .footer-links ul li {
        text-align: center !important;
    }

    .footer-widget-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .footer-social ul {
        justify-content: center !important;
    }

    .footer-logo {
        display: block;
        margin: 0 auto 10px auto !important;
    }

    /* Center contact items and stack icon/text */
    .contact-list li {
        display: flex;
        /* Ensure flex is active for direction column */
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .contact-icon {
        margin-right: 0 !important;
        margin-bottom: 8px;
    }

    .footer-bottom-nav ul {
        justify-content: center !important;
        margin-top: 15px;
    }
}

.social-icon-mobile {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: color 0.3s ease;
}

.social-icon-mobile:hover {
    color: var(--tg-primary) !important;
}

#app-logo-footer-mobile {
    max-width: 180px;
    margin: 0 auto;
}


/* ==========================================================================
   ULTIMATE MOBILE-FORCED-ON-DESKTOP (FINAL SYNC V8)
   ========================================================================== */
@media (min-width: 992px) {

    /* 1. Reset & Global Background */
    body.home-page-layout {
        background-color: #000 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .home-page-layout .main-content-wrapper {
        max-width: 500px !important;
        margin: 0 auto !important;
        background-color: var(--tg-dark-bg) !important;
        box-shadow: 0 0 150px rgba(0, 0, 0, 0.95) !important;
        position: relative !important;
        overflow-x: hidden !important;
        min-height: 100vh;
        z-index: 1 !important;
        padding-top: 0 !important;
    }

    /* 2. Absolute Responsive Override (Force Mobile Elements) */
    .home-page-layout .d-md-block,
    .home-page-layout .d-lg-block,
    .home-page-layout .d-xl-block,
    .home-page-layout .d-md-inline-block {
        display: none !important;
    }

    .home-page-layout .d-md-none,
    .home-page-layout .d-block,
    .home-page-layout .d-flex.d-md-none {
        display: block !important;
    }

    /* Fix Hero Banner specifically */
    .home-page-layout .hero-full-banner.d-md-block {
        display: none !important;
    }

    .home-page-layout .hero-full-banner.d-block.d-md-none {
        display: block !important;
        width: 100% !important;
    }

    /* 2.5 Force All Columns to 100% (Mobile Style) */
    .home-page-layout .container,
    .home-page-layout .container-fluid {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .home-page-layout .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: block !important;
        /* Force vertical stack */
    }

    .home-page-layout [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-bottom: 20px;
    }

    /* 3. Section: Kenapa Teknisigo (Features) Fix */
    .home-page-layout .tp-features-list-area {
        padding: 40px 15px !important;
        background-color: #fff !important;
        border-radius: 40px 40px 0 0 !important;
        margin-top: -15px !important;
    }

    .home-page-layout .feature-list-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        /* Centered with larger img */
        gap: 20px !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid #eee !important;
    }

    .home-page-layout .feature-img-container {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
        position: relative !important;
    }

    .home-page-layout .feature-circle-img {
        width: 80px !important;
        height: 80px !important;
        border-radius: 50% !important;
        /* Circular like mobile */
        object-fit: cover !important;
        display: block !important;
        border: 2px solid #25D366 !important;
    }

    .home-page-layout .feature-check {
        width: 22px !important;
        height: 22px !important;
        background: #fff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: absolute !important;
        bottom: 2px !important;
        right: 2px !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
        z-index: 2 !important;
    }

    .home-page-layout .feature-check i {
        color: #25D366 !important;
        font-size: 11px !important;
        font-weight: 900 !important;
    }

    .home-page-layout .feature-title {
        font-size: 1rem !important;
        color: #000 !important;
        margin-bottom: 4px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
    }

    .home-page-layout .feature-text {
        font-size: 0.8rem !important;
        color: #666 !important;
        line-height: 1.4 !important;
    }

    /* 4. Section: Cerita Mereka (Testimonial) - Force Carousel Inside Wrapper */
    .home-page-layout .tp-testimonial-area-v2 {
        padding: 40px 0 !important;
    }

    .home-page-layout .tp-testimonial-area-v2 {
        padding: 40px 0 !important;
    }

    .home-page-layout .testimonial-slider-container-v2 {
        width: 100% !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .home-page-layout .owl-carousel,
    .home-page-layout .owl-stage-outer {
        width: 100% !important;
        overflow: hidden !important;
    }

    .home-page-layout .owl-item {
        min-width: 300px !important;
        /* Force width if JS fails */
        opacity: 0.3;
        transition: opacity 0.3s ease;
    }

    .home-page-layout .owl-item.active.center {
        opacity: 1 !important;
    }

    .home-page-layout .testimonial-card-v2 {
        display: block !important;
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        padding: 20px !important;
        background: #111 !important;
        border-radius: 20px !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 1px solid #222 !important;
    }

    .home-page-layout .testimonial-img-box-v2 {
        display: block !important;
        width: 100% !important;
        max-width: 220px !important;
        height: 280px !important;
        margin: 0 auto 15px auto !important;
        border-radius: 20px !important;
        visibility: visible !important;
    }

    .home-page-layout .testimonial-img-box-v2 img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* 5. Section: Apa Saja (Journey) - Timeline Force */
    .home-page-layout .tp-journey-area {
        padding: 40px 15px !important;
    }

    .home-page-layout .journey-main-title {
        font-size: 1.5rem !important;
        font-weight: 800 !important;
    }

    .home-page-layout .timeline-v2 {
        padding-left: 60px !important;
        margin-top: 30px !important;
    }

    .home-page-layout .timeline-v2::before {
        left: 24px !important;
        width: 2px !important;
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .home-page-layout .timeline-v2-icon {
        left: -60px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 4px solid var(--tg-dark-bg) !important;
    }

    .home-page-layout .timeline-v2-content h4 {
        font-size: 1.25rem !important;
        color: #fff !important;
        font-weight: 700 !important;
    }

    .home-page-layout .timeline-v2-content p {
        font-size: 0.95rem !important;
        color: #aaa !important;
        line-height: 1.5 !important;
    }

    /* 6. Section: FAQ Fix */
    .home-page-layout .tp-faq-area {
        padding: 50px 15px !important;
    }

    .home-page-layout .faq-item-remora {
        margin-bottom: 15px !important;
    }

    .home-page-layout .faq-header-remora {
        padding: 20px !important;
    }

    .home-page-layout .faq-title {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
    }

    .home-page-layout .faq-body-remora {
        font-size: 0.95rem !important;
        padding: 0 20px 20px !important;
    }

    /* 7. WhatsApp & Navbar Fix (Desktop Forced-Mobile) */
    .home-page-layout header,
    .home-page-layout .menu-section-area {
        max-width: 500px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        position: fixed !important;
        top: 0 !important;
        z-index: 99999 !important;
        min-height: 65px !important;
        height: auto !important;
        background: var(--tg-dark-bg) !important;
    }

    /* Force Navbar to be Collapsed on Desktop (500px View) */
    .home-page-layout .navbar-collapse {
        display: none !important;
        background: rgba(15, 23, 42, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        border-radius: 0 0 30px 30px !important;
        padding: 20px !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        max-height: 85vh !important;
        overflow-y: auto !important;
        z-index: 10000 !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
    }

    .home-page-layout .navbar-collapse.show {
        display: block !important;
    }

    .home-page-layout .header-nav-left-side,
    .home-page-layout .header-nav-right-side {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .home-page-layout .navbar-nav {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .home-page-layout .nav-item {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .home-page-layout .navbar .nav-link {
        padding: 18px 15px !important;
        font-size: 1.05rem !important;
        font-weight: 600 !important;
        color: #fff !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        text-align: left !important;
        position: relative !important;
    }

    .home-page-layout .navbar .nav-link.dropdown-toggle::after {
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        border-top: 5px solid !important;
        border-right: 4px solid transparent !important;
        border-left: 4px solid transparent !important;
    }

    /* Sub-dropdown in forced mobile menu */
    .home-page-layout .navbar .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: none !important;
        border-left: 4px solid var(--tg-primary) !important;
        border-radius: 0 !important;
        padding: 5px 0 5px 20px !important;
        margin: 0 !important;
        box-shadow: none !important;
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .home-page-layout .navbar .dropdown-menu.show {
        display: block !important;
    }

    .home-page-layout .dropdown-item {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        display: block !important;
    }

    /* Fix Shopping Bag Icon in forced mobile View */
    .home-page-layout .menu-cart-btn .nav-link {
        justify-content: flex-start !important;
        gap: 15px !important;
        position: relative !important;
    }

    .home-page-layout .menu-cart-btn .nav-link i {
        color: var(--tg-primary) !important;
        position: relative;
        font-size: 1.2rem;
    }

    .home-page-layout .menu-cart-btn .nav-link::after {
        content: "Keranjang Belanja" !important;
        position: static !important;
        transform: none !important;
        border: none !important;
        margin: 0 !important;
        display: inline-block !important;
    }

    .home-page-layout .cartQuantity {
        position: absolute !important;
        top: 10px !important;
        left: 25px !important;
        transform: none !important;
        background: var(--tg-cyan) !important;
        color: #fff !important;
        padding: 2px 6px !important;
        min-width: 18px;
        height: 18px;
        font-size: 0.7rem !important;
        border-radius: 50px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .home-page-layout .menu-sign-in-btn .theme-button1 {
        background: linear-gradient(135deg, var(--tg-primary), #a8ff93) !important;
        color: #000 !important;
        padding: 14px !important;
        border-radius: 15px !important;
        text-transform: uppercase !important;
        font-weight: 800 !important;
        width: 100% !important;
        display: block !important;
        margin-top: 15px !important;
    }

    .home-page-layout .hero-container-padding {
        padding-top: 75px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-page-layout .wa-floating-btn {
        width: 100% !important;
        max-width: 500px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: 0px !important;
        border-radius: 20px 20px 0 0 !important;
        /* Rounded top like mobile */
        height: 65px !important;
        z-index: 1000000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        gap: 12px !important;
    }

    .home-page-layout .wa-floating-btn .wa-text {
        display: block !important;
        /* Force text visibility */
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #fff !important;
        text-transform: uppercase !important;
    }
}