/* ============================================
   CUSTOM COLOR SCHEME - PT TELECONYX LAGUNA GLOBAL
   Warna utama mengikuti logo: Navy Blue + Blue + Green
   Navy:  #0A1E5A  |  Blue: #1E6EB4  |  Green: #46963C
   ============================================ */

:root {
    /* Primary Colors - Navy Blue */
    --primary-color: #1E6EB4;
    --primary-dark: #0A1E5A;
    --primary-light: #5BA0D8;
    --primary-gradient-start: #0A1E5A;
    --primary-gradient-end: #1E6EB4;

    /* Secondary Colors */
    --secondary-color: #0A1E5A;
    --secondary-light: #0D2B75;

    /* Accent Colors - Green */
    --accent-color: #46963C;
    --accent-light: #E8F5E3;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F4F8FC;
    --bg-gray: #E6EEF6;
    --bg-dark: #0A1E5A;

    /* Text Colors */
    --text-primary: #0A1E5A;
    --text-secondary: #555F70;
    --text-white: #FFFFFF;

    /* Border Colors */
    --border-color: #C8D8EA;
    --border-light: #E0EBF4;
}

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
}

.bg-gradient-primary-light {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
}

.bg-gradient-red-to-dark {
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark)) !important;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

/* Base header */
#header-sticky {
    background: linear-gradient(100deg, #0A1E5A 0%, #1E6EB4 55%, #2A8A50 85%, #46963C 100%);
    padding: 14px 0;
    transition: background 0.35s ease, padding 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    top: 0;
    position: fixed;
    z-index: 99999;
}

/* Sticky scrolled state */
#header-sticky.header-sticky {
    background: linear-gradient(100deg, rgba(10,30,90,0.97) 0%, rgba(30,110,180,0.97) 55%, rgba(42,138,80,0.95) 85%, rgba(70,150,60,0.97) 100%) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 0 !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    animation: none !important;
}

/* Logo */
.tlx-header-logo {
    max-height: 48px;
    width: auto;
    display: block;
    transition: max-height 0.3s ease, opacity 0.3s;
}
.tlx-header-logo:hover { opacity: 0.85; }
#header-sticky.header-sticky .tlx-header-logo { max-height: 42px; }

/* ---- Desktop Nav ---- */
.tlx-nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.tlx-nav-item { position: relative; }

.tlx-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.88) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none !important;
    position: relative;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}

.tlx-nav-link::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #A8D4F5, white);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.tlx-nav-item:hover .tlx-nav-link,
.tlx-nav-item.tlx-nav-active .tlx-nav-link {
    color: white !important;
    background: rgba(255,255,255,0.12);
}

.tlx-nav-item:hover .tlx-nav-link::after,
.tlx-nav-item.tlx-nav-active .tlx-nav-link::after {
    width: calc(100% - 30px);
}

.tlx-nav-arrow {
    font-size: 10px;
    transition: transform 0.25s;
}
.tlx-nav-item:hover .tlx-nav-arrow { transform: rotate(180deg); }

/* Dropdown */
.tlx-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: white;
    border-radius: 12px;
    padding: 8px;
    list-style: none;
    margin: 0;
    box-shadow: 0 12px 40px rgba(10,30,90,0.18), 0 2px 8px rgba(0,0,0,0.08);
    border-top: 3px solid var(--primary-color);
    z-index: 999;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.tlx-has-dropdown:hover .tlx-dropdown { display: block; }

.tlx-dropdown li a {
    display: block;
    padding: 10px 14px;
    color: #0A1E5A;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}
.tlx-dropdown li a:hover {
    background: #EEF6FB;
    color: var(--primary-color);
}

/* ---- Right Actions ---- */
.tlx-header-phone-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s;
    flex-shrink: 0;
}
.tlx-header-phone-icon:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    transform: scale(1.08);
}

/* CTA Button */
.tlx-header-cta {
    background: #46963C;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    gap: 7px !important;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
}
.tlx-header-cta:hover {
    background: #3a8030;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(70,150,60,0.35);
}
.tlx-header-cta i { font-size: 12px; color: #ffffff !important; }

/* ---- Mobile Toggle ---- */
.tlx-mobile-toggle {
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, border-color 0.25s;
    flex-shrink: 0;
}
.tlx-mobile-toggle:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}
.tlx-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

/* ---- Offcanvas ---- */
.tv-offcanvas-area .itoffcanvas,
.itoffcanvas {
    background-color: #0A1E5A !important;
    background: linear-gradient(160deg, #0A1E5A 0%, #0D2B75 50%, #061240 100%) !important;
    opacity: 1 !important;
}
.itoffcanvas.opened {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999999;
}

/* Body overlay — pastikan menutup konten di belakang offcanvas */
.body-overlay {
    background: rgba(6, 18, 64, 0.75) !important;
    z-index: 999 !important;
}
.body-overlay.apply {
    opacity: 1 !important;
    visibility: visible !important;
}

.itoffcanvas__logo img { max-height: 48px; }
.itoffcanvas__text p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    border-left: 3px solid #46963C;
    padding-left: 12px;
    margin: 16px 0;
}

/* ---- Offcanvas info icons — lingkaran hijau dengan ikon putih ---- */
.itoffcanvas__info-icon a {
    background-color: #46963C !important;
    color: #ffffff !important;
    border-radius: 50px !important;
}
.itoffcanvas__info-icon a:hover {
    background-color: #3a8030 !important;
    color: #ffffff !important;
}
.itoffcanvas__info-address span {
    color: rgba(255,255,255,0.65) !important;
}
.itoffcanvas__info-address a {
    color: #ffffff !important;
}
.itoffcanvas__info-address a:hover {
    color: #46963C !important;
}

/* Offcanvas close button — jelas terlihat */
.itoffcanvas__close-btn button {
    color: #ffffff !important;
    opacity: 0.85 !important;
}
.itoffcanvas__close-btn button:hover {
    opacity: 1 !important;
    color: #46963C !important;
}

/* Mobile nav menu inside offcanvas */
.tv-menu-mobile ul { padding: 0; margin: 0; list-style: none; }
.tv-menu-mobile ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    color: rgba(255,255,255,0.88);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 4px;
    transition: background 0.2s, color 0.2s;
    border-left: 3px solid transparent;
}
.tv-menu-mobile ul li a:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    border-left-color: var(--accent-color);
}

/* ---- Responsive Header ---- */
@media (max-width: 991px) {
    #header-sticky { padding: 12px 0; }
    .tlx-header-logo { max-height: 40px; }
}

@media (max-width: 767px) {
    #header-sticky { padding: 10px 0; }
    .tlx-header-logo { max-height: 36px; }
}

@media (max-width: 480px) {
    .tlx-header-logo { max-height: 32px; }
}

/* Override legacy .tv-header-menu styles */
.tv-header-area { background-color: transparent; }
.tv-header-menu .nav-pills li a { color: var(--text-white); }
.tv-header-menu .nav-pills li a:hover,
.tv-header-menu .nav-pills li a.active { color: var(--accent-color); }
.tv-submenu {
    background: var(--bg-white);
    border-top: 3px solid var(--primary-color);
}
.tv-submenu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.tv-btn-primary {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border: none;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tv-btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 110, 180, 0.3);
}

.tv-btn-primary .btn-text1,
.tv-btn-primary .btn-text2 {
    color: var(--text-white);
}

.tv-normal-btn {
    color: var(--primary-color);
}

.tv-normal-btn:hover {
    color: var(--primary-dark);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.preloader span {
    background: var(--text-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.tv-hero-area {
    background: linear-gradient(135deg, rgba(10,30,90,0.9) 0%, rgba(30,110,180,0.9) 100%);
    position: relative;
}

.tv-hero-area svg path[opacity],
[class*="tv-hero"] svg path[opacity] {
    opacity: 1 !important;
}

.tv-hero-area + div,
.tv-hero-about + div {
    margin-top: 0;
}

.tv-hero-subtitle {
    color: var(--accent-light);
    font-weight: 600;
}

.tv-hero-title {
    color: var(--text-white);
}

.tv-hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   SECTIONS
   ============================================ */
.tv-section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tv-section-title {
    color: var(--text-primary);
    font-weight: 700;
}

/* ============================================
   SERVICE BOXES
   ============================================ */
.single-service-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.single-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.single-service-item:hover::before {
    transform: scaleX(1);
}

.single-service-item:hover {
    box-shadow: 0 10px 30px rgba(30, 110, 180, 0.15);
    transform: translateY(-5px);
}

.single-service-item .service-icon {
    color: var(--primary-color);
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.single-service-item:hover .service-icon {
    color: var(--accent-color);
}

.service-section-title {
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.tv-about-list-item ul li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

.tv-about-list-item ul li svg path {
    fill: var(--primary-color);
}

.tv-about-list-item ul li svg path[fill="#2B4DFF"] {
    fill: var(--primary-color);
}

.phone-contact-wrap {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.phone-contact-wrap i {
    color: var(--primary-color);
    font-size: 32px;
}

.phone-contact-wrap h4 a {
    color: var(--primary-color);
}

.phone-contact-wrap h4 a:hover {
    color: var(--accent-color);
}

/* ============================================
   CTA SECTION
   ============================================ */
.tv-cta-area {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
}

.cta-content h1 {
    color: var(--text-white);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   FOOTER
   ============================================ */
.tv-footer-wrap {
    background: linear-gradient(180deg, #0A1E5A 0%, #061240 100%);
}

.footer-bg {
    background-color: #0A1E5A;
}

.tv-footer-top-left h1 {
    color: var(--text-white);
}

.tv-footer-top-left ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.tv-footer-top-left ul li a:hover {
    color: var(--accent-color);
}

.tv-footer-top-right p {
    color: rgba(255, 255, 255, 0.8);
}

.tv-footer-widget-social a {
    background: rgba(30, 110, 180, 0.15);
    color: var(--primary-light);
    border: 1px solid var(--primary-light);
}

.tv-footer-widget-social a:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    border-color: transparent;
}

.tv-copyright-left p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.scroll-top:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   SEARCH POPUP
   ============================================ */
.search__popup {
    background: rgba(10, 30, 90, 0.95);
}

.search-input-field:focus {
    border-color: var(--primary-color);
}

.search__form button {
    color: var(--primary-color);
}

.search__form button:hover {
    color: var(--accent-color);
}

/* ============================================
   OFFCANVAS INFO — handled in offcanvas block above
   ============================================ */
.itoffcanvas__info-address a:hover {
    color: var(--accent-color);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.experience-wrapper {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .tv-header-menu { background: var(--primary-dark); }
    .tv-hero-title  { font-size: 36px !important; }
    .tv-section-title { font-size: 28px !important; }
}

@media (max-width: 767px) {
    .tv-hero-title  { font-size: 28px !important; }
    .tv-section-title { font-size: 22px !important; }
    [class*="pt-130"] { padding-top: 80px !important; }
    [class*="pt-100"] { padding-top: 60px !important; }
    [class*="pb-100"] { padding-bottom: 60px !important; }
}

@media (max-width: 480px) {
    .tv-hero-title  { font-size: 24px !important; }
    [class*="pt-130"] { padding-top: 70px !important; }
}

/* ============================================
   CUSTOM ANIMATIONS
   ============================================ */
@keyframes pulseBlue {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(30, 110, 180, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(30, 110, 180, 0);
    }
}

.pulse-red,
.pulse-purple,
.pulse-blue {
    animation: pulseBlue 2s infinite;
}

/* ============================================
   GRADIENT PATTERN
   ============================================ */
.hexagon-pattern {
    background-image:
        linear-gradient(30deg, var(--primary-color) 12%, transparent 12.5%, transparent 87%, var(--primary-color) 87.5%, var(--primary-color)),
        linear-gradient(150deg, var(--primary-color) 12%, transparent 12.5%, transparent 87%, var(--primary-color) 87.5%, var(--primary-color)),
        linear-gradient(30deg, var(--primary-color) 12%, transparent 12.5%, transparent 87%, var(--primary-color) 87.5%, var(--primary-color)),
        linear-gradient(150deg, var(--primary-color) 12%, transparent 12.5%, transparent 87%, var(--primary-color) 87.5%, var(--primary-color));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    opacity: 0.05;
}

/* ============================================
   CLEAN BACKGROUND OVERRIDES (sesuai warna logo)
   ============================================ */

/* Hero section — clean navy-to-blue gradient */
[class*="tv-hero"],
.tv-hero-area,
.tv-hero-about,
.tv-hero-contact,
.tv-hero-page {
    background: linear-gradient(140deg, #0A1E5A 0%, #1260A8 60%, #1E6EB4 100%) !important;
}

/* Section backgrounds — clean white & light blue alternating */
.section,
section {
    background-color: #ffffff;
}

section:nth-child(even),
.section-bg,
.tv-bg-light {
    background-color: #F4F8FC !important;
}

/* Stat/counter section — clean navy */
.tv-counter-area,
[class*="counter"],
[class*="fact"],
.tv-fact-area {
    background: linear-gradient(135deg, #0A1E5A 0%, #1E6EB4 100%) !important;
}

/* Service/bidang usaha cards — white with blue top border */
.single-service-item,
.service-box,
.tv-service-item {
    background: #ffffff !important;
    border: 1px solid #C8D8EA !important;
    border-top: 3px solid #1E6EB4 !important;
}

/* Glass box — clean with blue border */
.glass-box {
    background: rgba(255,255,255,0.98) !important;
    border: 1px solid rgba(30,110,180,0.12) !important;
    box-shadow: 0 4px 24px rgba(10,30,90,0.08), 0 1px 4px rgba(10,30,90,0.04) !important;
}

/* Gradient box — clean */
.gradient-box {
    background: linear-gradient(145deg, #ffffff 0%, #F4F8FC 100%) !important;
    border: 1px solid rgba(30,110,180,0.10) !important;
}

/* CTA section — clean navy */
.tv-cta-area,
[class*="cta"],
.cta-section {
    background: linear-gradient(135deg, #0A1E5A 0%, #1E6EB4 100%) !important;
}

/* About section background */
.tv-about-area,
[class*="about"] {
    background-color: #ffffff;
}

/* Contact section background */
.tv-contact-area,
[class*="contact"] {
    background-color: #F4F8FC;
}

/* Buttons — clean solid style */
.tv-btn-primary,
button.tv-btn-primary,
a.tv-btn-primary {
    background: linear-gradient(90deg, #0A1E5A 0%, #1E6EB4 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
}
.tv-btn-primary:hover,
button.tv-btn-primary:hover,
a.tv-btn-primary:hover {
    background: linear-gradient(90deg, #1E6EB4 0%, #46963C 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(10,30,90,0.25) !important;
    color: #ffffff !important;
}

/* Outline/secondary buttons */
.tv-btn-secondary,
button.tv-btn-secondary,
a.tv-btn-secondary,
.btn-outline {
    background: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255,255,255,0.7) !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}
.tv-btn-secondary:hover,
a.tv-btn-secondary:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: #ffffff !important;
}

/* Section dividers / separators */
.hero-divider {
    background: linear-gradient(90deg, #1E6EB4 0%, #46963C 100%) !important;
    height: 3px !important;
    border-radius: 2px !important;
}

/* Icon wrappers in contact/about */
.icon-wrapper {
    background: linear-gradient(135deg, #0A1E5A 0%, #1E6EB4 100%) !important;
}

/* Link colors */
a[style*="color: #1E6EB4"],
.text-primary-blue { color: #1E6EB4; }

/* Form focus */
.form-control:focus {
    border-color: #1E6EB4 !important;
    box-shadow: 0 0 0 0.2rem rgba(30, 110, 180, 0.2) !important;
}

/* Confirm button colors in modals/sweetalert */
.swal2-confirm { background-color: #1E6EB4 !important; }

/* ============================================================
   FIX SISA ELEMEN UNGU/PINK — broad selectors
   ============================================================ */

/* Semua lingkaran ikon yang masih ungu */
.icon-circle,
.feature-icon,
.icon-box,
.service-icon-wrap,
.tv-icon-box,
[class*="icon-wrap"],
[class*="icon-box"],
[class*="icon-circle"] {
    background: linear-gradient(135deg, #0A1E5A 0%, #1E6EB4 100%) !important;
    color: #ffffff !important;
}

/* Card highlight/featured box — hapus border pink, ganti clean */
.highlight-box,
.featured-card,
.glass-card,
[class*="highlight"],
[class*="featured"] {
    border: 1px solid rgba(30,110,180,0.2) !important;
    box-shadow: 0 4px 20px rgba(10,30,90,0.10) !important;
}

/* Tag/badge ungu → navy */
.badge,
.tag,
[class*="badge"],
[class*="tag"] {
    background-color: #1E6EB4 !important;
    color: #ffffff !important;
}

/* Accordion/FAQ border ungu */
.accordion-button:not(.collapsed),
.accordion-button:focus {
    color: #0A1E5A !important;
    background-color: #EEF6FB !important;
    box-shadow: inset 0 -1px 0 rgba(30,110,180,0.15) !important;
}

/* Pagination */
.page-item.active .page-link {
    background-color: #1E6EB4 !important;
    border-color: #1E6EB4 !important;
}
.page-link { color: #1E6EB4 !important; }
.page-link:hover { background-color: #EEF6FB !important; }

/* Wave separator SVG — pastikan warna navy/biru bukan ungu */
.wave-separator svg path,
.wave-separator-top svg path {
    fill: #0A1E5A !important;
}

/* Section heading accent color */
[class*="section-subtitle"],
[class*="tv-section-subtitle"],
.sub-title,
.subtitle {
    color: #1E6EB4 !important;
}

/* Active nav item underline */
.tlx-nav-link::after {
    background: linear-gradient(90deg, #46963C, #1E6EB4) !important;
}

/* Preloader dot colors */
.preloader span:first-child { background: #1E6EB4 !important; }
.preloader span:last-child  { background: #46963C !important; }

/* ============================================================
   FIX: tv-hero-content background tumpang tindih & CTA putih
   ============================================================ */

/* Hapus background box di hero content area */
.tv-hero-content,
.tv-hero-content > div,
[class*="hero-content"],
[class*="hero_content"],
.hero-text-wrap,
.hero-text-box,
.hero-left,
.hero-col-left {
    background: transparent !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Juga hapus dark overlay box di dalam hero */
[class*="tv-hero"] > .container > .row > div[style*="background"],
[class*="tv-hero"] .col-lg-7[style*="background"],
[class*="tv-hero"] .col-lg-6[style*="background"],
[class*="tv-hero"] .col-xl-7[style*="background"],
[class*="tv-hero"] .col-xl-6[style*="background"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Background transparent — only on block elements, NOT span (span may use gradient clip-to-text) */
[class*="tv-hero"] h1,
[class*="tv-hero"] h2,
[class*="tv-hero"] h6,
[class*="tv-hero"] p {
    background: transparent !important;
    background-color: transparent !important;
}

/* Text color white for hero — span keeps its own background for gradient text effects */
[class*="tv-hero"] h1,
[class*="tv-hero"] h2,
[class*="tv-hero"] h6,
[class*="tv-hero"] p,
[class*="tv-hero"] span:not(.tlx-nav-link) {
    color: rgba(255,255,255,0.95);
}

/* Header CTA — pastikan putih di semua kondisi */
a.tlx-header-cta,
a.tlx-header-cta *,
a.tlx-header-cta span,
a.tlx-header-cta i {
    color: #ffffff !important;
}
