/* ======================================================
   DISHUB SMART TRANSPORTATION PORTAL
   Version : 1.0
   Author  : ChatGPT
====================================================== */

:root{

    --primary:#0B3C91;
    --secondary:#1565C0;
    --accent:#4FC3F7;
    --silver:#E5EAF2;
    --light:#F5F9FF;
    --white:#ffffff;
    --dark:#0F172A;

    --radius:18px;

    --shadow:
        0 12px 35px rgba(11,60,145,.12);

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:#23344d;

    overflow-x:hidden;

}

/* ==========================
HEADER
========================== */

#header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    transition:.35s;

}

.navbar-header{

    background:rgba(8,37,89,.55);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.15);

    transition:.35s;

}

.navbar{

    min-height:82px;

}

.logo-text{

    color:#fff !important;

    font-size:20px;

    font-weight:800;

    letter-spacing:.3px;

}

.logo-subtitle{

    color:#d7e6ff !important;

    font-size:13px;

}

/* menu */

.navbar-nav .nav-link{

    color:#fff !important;

    font-weight:600;

    margin:0 10px;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:#4FC3F7 !important;

}

/* search */

.input-search input{

    border-radius:50px;

}

.btn-search{

    border-radius:50px;

}

/* ==========================
HERO
========================== */

#hero{

    position:relative;

}

#slideshow{

    position:relative;

    min-height:100vh;

}

#slideshow:before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        135deg,

        rgba(8,37,89,.88),

        rgba(18,78,164,.72),

        rgba(79,195,247,.38)

    );

    z-index:2;

}

.hero-info{

    position:absolute;

    z-index:20;

    width:100%;

    top:50%;

    transform:translateY(-50%);

}

.hero-title{

    color:#fff;

    font-size:62px;

    font-weight:900;

    line-height:1.15;

    max-width:820px;

}

.hero-subtitle{

    color:#fff;

    font-size:21px;

    max-width:720px;

    margin-top:20px;

    opacity:.95;

}

/* ==========================
BUTTON
========================== */

.btn-smart{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 28px;

    border-radius:60px;

    background:linear-gradient(135deg,#1565C0,#42A5F5);

    color:#fff;

    font-weight:700;

    text-decoration:none;

    box-shadow:var(--shadow);

    transition:.35s;

}

.btn-smart:hover{

    color:#fff;

    transform:translateY(-4px);

}

/* ==========================
CARD
========================== */

.smart-card{

    background:#fff;

    border-radius:22px;

    padding:28px;

    box-shadow:var(--shadow);

    transition:.35s;

    border:1px solid #edf2fa;

}

.smart-card:hover{

    transform:translateY(-10px);

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:#0B3C91;

}

.section-subtitle{

    color:#5f6f82;

}

.py-smart{

    padding:90px 0;

}

/* ==========================
FOOTER
========================== */

footer{

    background:#082559;

    color:#fff;

}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:991px){

.hero-title{

font-size:42px;

}

.hero-subtitle{

font-size:17px;

}

}

@media(max-width:768px){

.hero-title{

font-size:34px;

}

}
/* =====================================================
SMART HERO
=====================================================*/

.hero-badge{

display:inline-block;

padding:10px 22px;

border-radius:40px;

background:rgba(255,255,255,.12);

backdrop-filter:blur(15px);

color:#fff;

font-weight:700;

margin-bottom:20px;

letter-spacing:.4px;

}

.hero-button-group{

margin-top:35px;

display:flex;

flex-wrap:wrap;

gap:18px;

}

.btn-outline-smart{

background:rgba(255,255,255,.15);

border:1px solid rgba(255,255,255,.35);

}

.btn-danger-smart{

background:#E53935;

}

.hero-stat-box{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:22px;

}

.hero-stat{

padding:35px;

border-radius:22px;

background:rgba(255,255,255,.15);

backdrop-filter:blur(20px);

color:#fff;

text-align:center;

border:1px solid rgba(255,255,255,.18);

transition:.35s;

}

.hero-stat:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.22);

}

.hero-stat h2{

font-size:34px;

font-weight:800;

margin-bottom:8px;

}

.hero-stat span{

font-size:15px;

opacity:.95;

}

@media(max-width:991px){

.hero-button-group{

justify-content:center;

}

.hero-stat-box{

margin-top:40px;

}

}
/* =======================================================
SMART SERVICES
=======================================================*/

.smart-services{

padding:90px 0;

background:#ffffff;

}

.section-label{

display:inline-block;

padding:8px 18px;

background:#eaf3ff;

color:#0d47a1;

border-radius:50px;

font-size:13px;

font-weight:700;

margin-bottom:15px;

}

.service-card{

display:block;

height:100%;

padding:35px;

border-radius:24px;

background:#fff;

text-decoration:none;

transition:.35s;

box-shadow:0 12px 30px rgba(0,0,0,.06);

border:1px solid #edf2f7;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(21,101,192,.18);

text-decoration:none;

}

.service-icon{

width:75px;

height:75px;

border-radius:20px;

background:linear-gradient(135deg,#1565C0,#4FC3F7);

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

margin-bottom:22px;

color:#fff;

}

.service-card h4{

font-size:22px;

font-weight:800;

color:#0B3C91;

margin-bottom:12px;

}

.service-card p{

color:#66768b;

line-height:1.8;

margin:0;

}
/* RUNNING INFO */

.running-info{

background:#083D77;

color:#fff;

}

.running-wrapper{

display:flex;

align-items:center;

}

.running-title{

background:#1565C0;

padding:18px 30px;

font-weight:700;

white-space:nowrap;

}

.running-text{

padding:18px;

width:100%;

font-size:15px;

}

.running-text marquee{

margin:0;

}
/* ==========================
SMART DASHBOARD
========================== */

.transport-dashboard{

background:#f5f9ff;

padding:90px 0;

}

.dashboard-card{

display:block;

height:100%;

padding:35px;

border-radius:24px;

background:#fff;

text-decoration:none;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.08);

border:1px solid #edf2fa;

}

.dashboard-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 45px rgba(21,101,192,.18);

text-decoration:none;

}

.dashboard-icon{

width:80px;

height:80px;

border-radius:22px;

background:linear-gradient(135deg,#0B3C91,#4FC3F7);

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

margin-bottom:25px;

color:#fff;

}

.dashboard-card h3{

font-size:22px;

font-weight:800;

color:#0B3C91;

margin-bottom:15px;

}

.dashboard-card p{

color:#66768b;

line-height:1.8;

margin-bottom:20px;

}

.dashboard-card span{

font-weight:700;

color:#1565C0;

}
/* ===================================================
DISHUB PROFILE
===================================================*/

#dishub-profile{

background:#ffffff;

padding:100px 0;

}

.kadis-photo{

position:relative;

border-radius:28px;

overflow:hidden;

box-shadow:0 25px 60px rgba(11,60,145,.18);

}

.kadis-photo img{

width:100%;

display:block;

}

.photo-badge{

position:absolute;

left:20px;

bottom:20px;

background:rgba(11,60,145,.90);

color:#fff;

padding:12px 20px;

border-radius:50px;

font-weight:700;

}

.profile-text{

font-size:18px;

line-height:1.9;

color:#5b6777;

margin:25px 0;

}

.profile-button{

display:flex;

gap:15px;

flex-wrap:wrap;

margin-bottom:35px;

}

.mini-counter{

background:#f4f8ff;

border-radius:18px;

padding:22px;

text-align:center;

transition:.35s;

border:1px solid #e8eef8;

height:100%;

}

.mini-counter:hover{

transform:translateY(-6px);

box-shadow:0 15px 35px rgba(11,60,145,.12);

}

.mini-counter h3{

font-size:28px;

font-weight:800;

color:#0B3C91;

margin-bottom:8px;

}

.mini-counter span{

font-size:14px;

color:#6b7280;

}
/* ==============================
BERITA
==============================*/

.news-section{

padding:100px 0;

background:#f6f9fd;

}

.news-wrapper{

margin-top:45px;

}

.news-section .card{

border:none;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.35s;

}

.news-section .card:hover{

transform:translateY(-8px);

box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.news-section img{

transition:.5s;

}

.news-section .card:hover img{

transform:scale(1.06);

}

.news-section .btn{

border-radius:50px;

}
/* ==========================================
GALERI PREMIUM
==========================================*/

.gallery-section{

padding:100px 0;

background:#ffffff;

}

.gallery-wrapper{

margin-top:50px;

}

.gallery-wrapper .card{

border:none;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.gallery-wrapper .card:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(11,60,145,.16);

}

.gallery-wrapper img{

width:100%;

transition:.5s;

}

.gallery-wrapper .card:hover img{

transform:scale(1.08);

}
/*======================================================
PRE FOOTER
======================================================*/

.pre-footer{

padding:70px 0;

background:linear-gradient(135deg,#0B3C91,#1565C0);

color:#fff;

}

.pre-footer h2{

font-size:36px;

font-weight:800;

margin-bottom:15px;

}

.pre-footer p{

font-size:18px;

opacity:.9;

margin:0;

}

.pre-footer .btn-smart{

margin-top:15px;

}
/*======================================================
FOOTER
======================================================*/

#footer{

background:#052C65;

color:#fff;

}

#footer h4,
#footer h5{

color:#fff;

font-weight:700;

}

#footer a{

color:#dbe7ff;

transition:.3s;

}

#footer a:hover{

color:#ffffff;

text-decoration:none;

}

.social-link-small{

background:rgba(255,255,255,.12);

width:42px;

height:42px;

display:inline-flex;

align-items:center;

justify-content:center;

border-radius:50%;

margin-right:8px;

transition:.3s;

}

.social-link-small:hover{

background:#4FC3F7;

transform:translateY(-4px);

}
/*==============================
HEADER PREMIUM
==============================*/

.navbar-header{

backdrop-filter:blur(18px);

background:rgba(255,255,255,.96);

box-shadow:0 8px 30px rgba(0,0,0,.06);

position:sticky;

top:0;

z-index:9999;

}

.logo-text{

font-weight:800;

font-size:22px;

color:#0B3C91;

}

.logo-subtitle{

font-size:13px;

color:#6c757d;

}

.header-action{

display:flex;

gap:12px;

margin-right:25px;

}

.header-btn{

padding:10px 18px;

background:#0B3C91;

color:#fff;

border-radius:50px;

font-size:14px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.header-btn:hover{

background:#1565C0;

color:#fff;

text-decoration:none;

}

.header-btn.outline{

background:#fff;

color:#0B3C91;

border:2px solid #0B3C91;

}
/*==================================================
 HERO PREMIUM V3
==================================================*/

.hero-info{

position:relative;

margin-top:-130px;

z-index:20;

}

.hero-info .container{

background:linear-gradient(135deg,
rgba(11,60,145,.95),
rgba(33,150,243,.92));

border-radius:30px;

padding:70px;

overflow:hidden;

box-shadow:0 35px 80px rgba(0,0,0,.18);

position:relative;

}

.hero-info .container:before{

content:"";

position:absolute;

right:-120px;

top:-120px;

width:320px;

height:320px;

background:rgba(255,255,255,.08);

border-radius:50%;

}

.hero-info .container:after{

content:"";

position:absolute;

left:-100px;

bottom:-100px;

width:250px;

height:250px;

background:rgba(255,255,255,.05);

border-radius:50%;

}

.hero-title{

font-size:58px;

font-weight:900;

line-height:1.1;

color:#fff;

margin-bottom:25px;

}

.hero-subtitle{

font-size:18px;

line-height:32px;

color:rgba(255,255,255,.92);

max-width:700px;

}

.hero-badge{

display:inline-block;

background:rgba(255,255,255,.15);

padding:10px 22px;

border-radius:50px;

font-size:14px;

font-weight:700;

letter-spacing:1px;

color:#fff;

margin-bottom:25px;

backdrop-filter:blur(10px);

}

.hero-button-group{

display:flex;

flex-wrap:wrap;

gap:15px;

margin-top:35px;

}

.hero-stat-box{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.hero-stat{

background:rgba(255,255,255,.12);

padding:28px;

border-radius:20px;

text-align:center;

backdrop-filter:blur(12px);

transition:.35s;

}

.hero-stat:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.20);

}

.hero-stat h2{

font-size:42px;

font-weight:900;

color:#fff;

margin-bottom:8px;

}

.hero-stat span{

color:#fff;

font-size:14px;

}

@media(max-width:991px){

.hero-info{

margin-top:30px;

}

.hero-info .container{

padding:40px 25px;

}

.hero-title{

font-size:38px;

}

.hero-stat-box{

margin-top:40px;

}

}
/*==================================================
TRANSPORT DASHBOARD
==================================================*/

.transport-dashboard{

padding:90px 0;

background:#f4f8fc;

}

.dashboard-card{

display:block;

background:#fff;

border-radius:24px;

padding:35px;

height:100%;

text-decoration:none;

transition:.35s;

box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.dashboard-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

text-decoration:none;

}

.dashboard-icon{

font-size:52px;

margin-bottom:20px;

}

.dashboard-card h4{

font-weight:800;

color:#0B3C91;

margin-bottom:12px;

}

.dashboard-card p{

color:#666;

margin:0;

line-height:28px;

}
/*=====================================
LIVE TRANSPORT CENTER
======================================*/

.live-transport{

padding:100px 0;

background:#ffffff;

}

.live-card{

background:#fff;

border-radius:25px;

overflow:hidden;

box-shadow:0 20px 60px rgba(0,0,0,.08);

height:100%;

}

.live-title{

padding:18px 25px;

font-size:20px;

font-weight:700;

background:linear-gradient(90deg,#0B3C91,#1976D2);

color:#fff;

}

.live-card iframe{

width:100%;

height:420px;

border:none;

}

.bmkg-box{

padding:50px;

text-align:center;

}

.bmkg-box p{

margin-top:20px;

line-height:28px;

color:#666;

}
/*==================================================
SMART COMMAND CENTER
==================================================*/

.smart-command-center{

padding:100px 0;

background:#f6f9fc;

}

.command-box{

background:#fff;

border-radius:24px;

padding:35px;

height:100%;

text-align:center;

box-shadow:0 15px 45px rgba(0,0,0,.08);

transition:.3s;

}

.command-box:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.command-icon{

font-size:54px;

margin-bottom:20px;

}

.command-box h4{

font-weight:800;

color:#0B3C91;

margin-bottom:15px;

}

.command-box p{

color:#666;

line-height:28px;

margin-bottom:25px;

}
/*======================================
TOP BAR SMART
=======================================*/

.topbar-smart{

background:#0B3C91;

color:#fff;

font-size:13px;

}

.topbar-wrapper{

display:flex;

justify-content:space-between;

align-items:center;

padding:10px 0;

}

.topbar-left{

font-weight:600;

}

.topbar-right{

display:flex;

gap:25px;

}

.topbar-right span{

display:flex;

align-items:center;

gap:8px;

}

.topbar-smart i{

color:#90CAF9;

}

@media(max-width:991px){

.topbar-wrapper{

display:block;

text-align:center;

}

.topbar-right{

margin-top:8px;

display:block;

}

.topbar-right span{

justify-content:center;

margin-bottom:5px;

}

}
/*====================================
BOOTSTRAP ICON STYLE
=====================================*/

.dashboard-icon i{
    font-size:52px;
    color:#0B3C91;
    transition:.3s ease;
}

.dashboard-card:hover .dashboard-icon i{
    transform:scale(1.15);
    color:#1976D2;
}
/*======================================
SMART NEWS
=======================================*/

.news-hero{

padding:80px 0;

background:linear-gradient(135deg,#0B3C91,#1976D2);

color:#fff;

}

.news-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:8px 18px;

background:rgba(255,255,255,.15);

border-radius:50px;

font-weight:700;

margin-bottom:20px;

}

.news-hero h1{

font-size:46px;

font-weight:800;

line-height:1.2;

margin-bottom:20px;

}

.news-hero p{

font-size:18px;

opacity:.95;

line-height:30px;

}

.news-hero-icon{

font-size:150px;

opacity:.18;

}

.news-section-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:35px;

padding-bottom:15px;

border-bottom:2px solid #eaf2fb;

}

.news-section-header h2{

margin:0;

font-weight:800;

color:#0B3C91;

}
/*====================================================
SMART NEWS LIST
====================================================*/

.cms-berita-list{

background:#ffffff;

border-radius:20px;

padding:20px;

box-shadow:0 15px 40px rgba(0,0,0,.06);

overflow:hidden;

}

.cms-berita-list table{

border-collapse:separate!important;

border-spacing:0 20px!important;

}

.cms-berita-list tbody tr{

background:#fff;

transition:.35s ease;

border-radius:18px;

box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.cms-berita-list tbody tr:hover{

transform:translateY(-4px);

box-shadow:0 15px 35px rgba(25,118,210,.15);

}

.cms-berita-list td{

vertical-align:middle!important;

padding:18px!important;

border:none!important;

}

.cms-berita-list img{

border-radius:14px;

object-fit:cover;

}

.cms-berita-list a{

font-weight:700;

color:#0B3C91;

text-decoration:none;

transition:.3s;

}

.cms-berita-list a:hover{

color:#1976D2;

}

#tabel-pagination{

margin-top:30px;

display:flex;

justify-content:center;

}
/*====================================================
NEWS SIDEBAR
====================================================*/

.sidebar-container{

background:#ffffff;

padding:25px;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.06);

position:sticky;

top:120px;

}

.sidebar-container .widget{

margin-bottom:30px;

}

.sidebar-container h4{

font-size:20px;

font-weight:800;

color:#0B3C91;

margin-bottom:20px;

padding-bottom:10px;

border-bottom:2px solid #eaf3ff;

}
/*====================================================
NEWS TOOLBAR
====================================================*/

.news-toolbar{

background:#fff;

padding:20px;

border-radius:18px;

margin-bottom:30px;

box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.news-search{

position:relative;

}

.news-search i{

position:absolute;

left:18px;

top:50%;

transform:translateY(-50%);

color:#1976D2;

}

.news-search input{

padding-left:50px;

height:52px;

border-radius:30px;

border:1px solid #dbe7f5;

}

.news-search input:focus{

border-color:#1976D2;

box-shadow:0 0 0 .2rem rgba(25,118,210,.15);

}

.news-counter{

font-weight:600;

color:#0B3C91;

}
/*========================================
HIDE DEFAULT ACEHCMS NEWS HERO
========================================*/

#berita-utama{

display:none;

}

#slideshow{

display:none;

}
/*========================================
NEWS SUMMARY
========================================*/

.dishub-news-intro{

margin-bottom:35px;

}

.news-mini-card{

background:#fff;

border-radius:18px;

padding:28px;

text-align:center;

box-shadow:0 10px 30px rgba(0,0,0,.08);

transition:.35s;

height:100%;

}

.news-mini-card:hover{

transform:translateY(-6px);

}

.news-mini-card i{

font-size:42px;

color:#1976D2;

margin-bottom:15px;

display:block;

}

.news-mini-card h3{

font-size:22px;

font-weight:700;

margin-bottom:6px;

color:#0B3C91;

}

.news-mini-card span{

color:#6c757d;

font-size:14px;

}
/*====================================================
SMART NEWS SUMMARY
====================================================*/

.dishub-news-intro{
    margin:35px 0;
}

.news-mini-card{
    background:#ffffff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
    border:1px solid #eef3f9;
}

.news-mini-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(25,118,210,.18);
}

.news-mini-card i{
    font-size:42px;
    color:#1976D2;
    margin-bottom:15px;
    display:block;
}

.news-mini-card h3{
    font-size:22px;
    font-weight:700;
    color:#0B3C91;
    margin-bottom:6px;
}

.news-mini-card span{
    color:#6c757d;
    font-size:14px;
}
/*====================================================
SMART NEWS CARD V2
====================================================*/

.cms-berita-list{

    background:#ffffff;

    border-radius:22px;

    padding:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.cms-berita-list tbody tr{

    background:#fff;

    border-radius:20px;

    transition:.35s;

    overflow:hidden;

}

.cms-berita-list tbody tr:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(25,118,210,.18);

}

.cms-berita-list td{

    border:none!important;

    padding:22px!important;

    vertical-align:top!important;

}

.cms-berita-list img{

    width:220px;

    height:140px;

    object-fit:cover;

    border-radius:16px;

}

.cms-berita-list h3{

    font-size:22px;

    font-weight:800;

    color:#0B3C91;

    line-height:1.4;

    margin-bottom:10px;

}

.cms-berita-list p{

    color:#6c757d;

    line-height:1.8;

}

.cms-berita-list a{

    color:#0B3C91;

    font-weight:700;

    text-decoration:none;

}

.cms-berita-list a:hover{

    color:#1976D2;

}

#tabel-pagination{

    margin-top:40px;

    display:flex;

    justify-content:center;

}
/*====================================================
SMART NEWS SIDEBAR
FASE 14 - STEP 5A
====================================================*/

.dishub-news-sidebar{
    position:sticky;
    top:100px;
}


/*====================================================
SIDEBAR CARD
====================================================*/

.news-sidebar-card{

    background:#ffffff;

    border:1px solid #e8eef5;

    border-radius:20px;

    padding:24px;

    margin-bottom:22px;

    box-shadow:0 12px 35px rgba(15,55,100,.08);

}


/*====================================================
SIDEBAR HEADER
====================================================*/

.news-sidebar-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:22px;

}

.news-sidebar-header h3{

    margin:5px 0 0;

    color:#0b3c91;

    font-size:21px;

    font-weight:800;

}

.news-sidebar-header > i{

    width:44px;

    height:44px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eaf3ff;

    color:#0b63ce;

    font-size:20px;

}


/*====================================================
SIDEBAR LABEL
====================================================*/

.sidebar-label{

    display:block;

    color:#1976d2;

    font-size:11px;

    font-weight:800;

    letter-spacing:.8px;

}


/*====================================================
SERVICE ITEM
====================================================*/

.sidebar-service-list{

    display:flex;

    flex-direction:column;

    gap:10px;

}


.sidebar-service-item{

    display:flex;

    align-items:center;

    gap:12px;

    padding:12px;

    border-radius:14px;

    background:#f7faff;

    border:1px solid transparent;

    color:#17365d;

    text-decoration:none!important;

    transition:.25s ease;

}


.sidebar-service-item:hover{

    background:#eef6ff;

    border-color:#d7e8fb;

    transform:translateX(4px);

}


.sidebar-service-icon{

    width:40px;

    height:40px;

    flex:0 0 40px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:11px;

    background:#e4f0ff;

    color:#0b63ce;

    font-size:18px;

}


.sidebar-service-text{

    flex:1;

    min-width:0;

}


.sidebar-service-text strong{

    display:block;

    color:#17365d;

    font-size:14px;

    font-weight:800;

    line-height:1.3;

}


.sidebar-service-text small{

    display:block;

    margin-top:3px;

    color:#718096;

    font-size:11px;

}


.sidebar-service-item > i{

    color:#9aabc0;

    font-size:12px;

}


/*====================================================
INFORMATION CARD
====================================================*/

.news-sidebar-info{

    display:flex;

    gap:15px;

    align-items:flex-start;

    background:linear-gradient(
        135deg,
        #f4f9ff 0%,
        #ffffff 100%
    );

}


.news-sidebar-info-icon{

    width:42px;

    height:42px;

    flex:0 0 42px;

    border-radius:12px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0b63ce;

    color:#ffffff;

    font-size:18px;

}


.news-sidebar-info h4{

    margin:6px 0 8px;

    color:#17365d;

    font-size:16px;

    font-weight:800;

    line-height:1.4;

}


.news-sidebar-info p{

    margin:0;

    color:#718096;

    font-size:12px;

    line-height:1.7;

}


/*====================================================
CONTACT CARD
====================================================*/

.news-sidebar-contact{

    background:linear-gradient(
        135deg,
        #0b3c91 0%,
        #0b63ce 100%
    );

    border:none;

}


.news-sidebar-contact .sidebar-label{

    color:#cfe5ff;

}


.news-sidebar-contact h3{

    margin:7px 0 8px;

    color:#ffffff;

    font-size:21px;

    font-weight:800;

}


.news-sidebar-contact p{

    color:#dbeafe;

    font-size:13px;

    line-height:1.7;

    margin-bottom:18px;

}


.sidebar-contact-button{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    padding:12px 16px;

    border-radius:12px;

    background:#ffffff;

    color:#0b3c91!important;

    font-size:13px;

    font-weight:800;

    text-decoration:none!important;

    transition:.25s ease;

}


.sidebar-contact-button:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}


/*====================================================
MOBILE
====================================================*/

@media (max-width:991px){

    .dishub-news-sidebar{

        position:static;

        margin-top:25px;

    }

}


@media (max-width:575px){

    .news-sidebar-card{

        padding:20px;

        border-radius:17px;

    }

    .news-sidebar-header h3{

        font-size:19px;

    }

}
/* =========================================================
   DISHUB SMART - GLOBAL HEADER
   ========================================================= */

.topbar-smart {
    background: #063b7a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.topbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-smart span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar-smart i {
    font-size: 13px;
}


/* =========================================================
   MAIN NAVBAR
   ========================================================= */

#header {
    position: relative;
    z-index: 1000;
}

#header .navbar-header {
    background: #ffffff;
    border-bottom: 1px solid #e7edf5;
    box-shadow: 0 4px 18px rgba(15, 55, 95, .06);
}

#header .navbar {
    min-height: 76px;
}

#header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 28px;
}

#header .logo-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

#header .logo-text {
    color: #063b7a;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
}

#header .logo-subtitle {
    color: #6b7c93;
    font-size: 11px;
    font-weight: 500;
    margin-top: 3px;
}


/* =========================================================
   MENU
   ========================================================= */

#navbarSupportedContent {
    align-items: center;
}

#navbarSupportedContent .navbar-nav {
    align-items: center;
    gap: 3px;
}

#navbarSupportedContent .nav-link {
    color: #26384d;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px !important;
    border-radius: 8px;
    transition: all .2s ease;
}

#navbarSupportedContent .nav-link:hover {
    color: #0d6efd;
    background: #eef6ff;
}

#navbarSupportedContent .nav-item.active > .nav-link {
    color: #0d6efd;
    background: #eef6ff;
}


/* =========================================================
   SEARCH
   ========================================================= */

#header .input-search {
    margin-left: 15px;
}

#header .input-search .form-control {
    height: 40px;
    min-width: 230px;
    border: 1px solid #dbe5f0;
    border-radius: 22px 0 0 22px;
    background: #f8fbff;
    color: #26384d;
    font-size: 12px;
    box-shadow: none;
}

#header .input-search .form-control:focus {
    border-color: #4da3ff;
    background: #ffffff;
    box-shadow: none;
}

#header .btn-search {
    height: 40px;
    width: 44px;
    border: 0;
    border-radius: 0 22px 22px 0;
    background: #0d6efd;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .btn-search:hover {
    background: #063b7a;
}


/* =========================================================
   MOBILE HEADER
   ========================================================= */

#header .navbar-toggler {
    border: 0;
    color: #063b7a;
    background: #eef6ff;
    border-radius: 8px;
}

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


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {

    .topbar-smart {
        display: none;
    }

    #header .navbar {
        min-height: 68px;
    }

    #header .navbar-brand {
        margin-right: 10px;
    }

    #header .logo-icon {
        width: 40px;
        height: 40px;
    }

    #header .logo-text {
        font-size: 14px;
    }

    #header .logo-subtitle {
        font-size: 10px;
    }

}

@media (max-width: 575px) {

    #header .logo-text {
        font-size: 13px;
    }

    #header .logo-subtitle {
        font-size: 9px;
    }

    #header .navbar-brand {
        gap: 8px;
    }

}
/* =========================================================
   PPID DISHUB ACEH BESAR
   SMART PPID PORTAL
   ========================================================= */

.ppid-page{
    background:#f5f9ff;
    color:#23344d;
    padding-bottom:80px;
}

/* =========================
   PPID HERO
   ========================= */

.ppid-hero{
    position:relative;
    overflow:hidden;
    padding:90px 30px;
    background:
        linear-gradient(
            135deg,
            #082559 0%,
            #0B3C91 50%,
            #1976D2 100%
        );
    color:#fff;
}

.ppid-hero:before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    right:-120px;
    top:-150px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
}

.ppid-hero:after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    left:-120px;
    bottom:-150px;
    background:rgba(79,195,247,.12);
    border-radius:50%;
}

.ppid-hero-content{
    position:relative;
    z-index:2;
    max-width:1100px;
    margin:auto;
}

.ppid-badge{
    display:inline-block;
    padding:9px 18px;
    margin-bottom:20px;
    border-radius:50px;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.20);
    color:#fff;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
}

.ppid-hero h1{
    max-width:850px;
    margin:0 0 20px;
    color:#fff;
    font-size:48px;
    line-height:1.15;
    font-weight:900;
}

.ppid-hero p{
    max-width:720px;
    margin:0;
    color:rgba(255,255,255,.90);
    font-size:18px;
    line-height:1.8;
}


/* =========================
   SECTION HEADING
   ========================= */

.ppid-services{
    padding:90px 30px;
    background:#fff;
}

.ppid-section-heading{
    max-width:900px;
    margin:0 auto 45px;
    text-align:center;
}

.ppid-section-heading > span{
    display:inline-block;
    padding:8px 18px;
    margin-bottom:14px;
    border-radius:50px;
    background:#eaf3ff;
    color:#0d47a1;
    font-size:13px;
    font-weight:800;
}

.ppid-section-heading h2{
    margin:0 0 12px;
    color:#0B3C91;
    font-size:38px;
    font-weight:900;
}

.ppid-section-heading p{
    max-width:700px;
    margin:0 auto;
    color:#6b7c93;
    font-size:16px;
    line-height:1.8;
}


/* =========================
   SERVICE GRID
   ========================= */

.ppid-service-grid{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.ppid-service-card{
    position:relative;
    padding:30px;
    background:#fff;
    border:1px solid #e8eef6;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(15,55,100,.07);
    transition:all .3s ease;
}

.ppid-service-card:hover{
    transform:translateY(-8px);
    border-color:#cfe3fa;
    box-shadow:0 22px 50px rgba(11,60,145,.14);
}

.ppid-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #0B3C91,
        #1976D2
    );
    color:#fff;
    font-size:14px;
    font-weight:900;
}

.ppid-service-card h3{
    margin:0 0 10px;
    color:#0B3C91;
    font-size:20px;
    font-weight:800;
}

.ppid-service-card p{
    margin:0;
    color:#6b7c93;
    font-size:14px;
    line-height:1.8;
}


/* =========================
   PROFILE
   ========================= */

.ppid-profile{
    padding:90px 30px;
    background:#f5f9ff;
}

.ppid-profile-content{
    max-width:1000px;
    margin:auto;
    padding:50px;
    background:#fff;
    border-radius:28px;
    border:1px solid #e6edf6;
    box-shadow:0 18px 50px rgba(15,55,100,.08);
}

.ppid-label{
    display:inline-block;
    margin-bottom:12px;
    color:#1976D2;
    font-size:12px;
    font-weight:900;
    letter-spacing:1px;
}

.ppid-profile h2{
    margin:0 0 20px;
    color:#0B3C91;
    font-size:34px;
    font-weight:900;
}

.ppid-profile p{
    margin:0 0 15px;
    color:#607086;
    font-size:16px;
    line-height:1.9;
}

.ppid-profile p:last-child{
    margin-bottom:0;
}


/* =========================
   CONTACT
   ========================= */

.ppid-contact{
    max-width:1100px;
    margin:70px auto 0;
    padding:55px;
    border-radius:28px;
    background:
        linear-gradient(
            135deg,
            #0B3C91,
            #1976D2
        );
    color:#fff;
    box-shadow:0 25px 60px rgba(11,60,145,.20);
}

.ppid-contact-content{
    max-width:800px;
}

.ppid-contact .ppid-label{
    color:#cfe5ff;
}

.ppid-contact h2{
    margin:0 0 12px;
    color:#fff;
    font-size:34px;
    font-weight:900;
}

.ppid-contact p{
    margin:0;
    color:rgba(255,255,255,.90);
    font-size:16px;
    line-height:1.8;
}


/* =========================
   RESPONSIVE TABLET
   ========================= */

@media(max-width:991px){

    .ppid-hero{
        padding:70px 25px;
    }

    .ppid-hero h1{
        font-size:40px;
    }

    .ppid-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .ppid-contact{
        margin-left:25px;
        margin-right:25px;
    }

}


/* =========================
   RESPONSIVE MOBILE
   ========================= */

@media(max-width:575px){

    .ppid-hero{
        padding:55px 20px;
    }

    .ppid-hero h1{
        font-size:31px;
    }

    .ppid-hero p{
        font-size:15px;
    }

    .ppid-services{
        padding:65px 20px;
    }

    .ppid-section-heading h2{
        font-size:29px;
    }

    .ppid-service-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .ppid-profile{
        padding:65px 20px;
    }

    .ppid-profile-content{
        padding:30px 24px;
        border-radius:22px;
    }

    .ppid-profile h2{
        font-size:27px;
    }

    .ppid-contact{
        margin:50px 20px 0;
        padding:32px 25px;
        border-radius:22px;
    }

    .ppid-contact h2{
        font-size:28px;
    }

}

/* =====================================================
   PPID DISHUB ACEH BESAR
===================================================== */

.ppid-hero{
    padding:100px 0;
    background:linear-gradient(135deg,#061b3a 0%,#0d47a1 55%,#1976d2 100%);
    color:#fff;
    position:relative;
    overflow:hidden;
}

.ppid-hero:after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-180px;
    top:-180px;
}

.ppid-badge{
    display:inline-block;
    padding:9px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    font-size:12px;
    font-weight:700;
    letter-spacing:.8px;
    margin-bottom:20px;
}

.ppid-title{
    font-size:46px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
}

.ppid-subtitle{
    font-size:17px;
    line-height:1.8;
    max-width:680px;
    color:rgba(255,255,255,.88);
}

.ppid-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.ppid-hero-card{
    position:relative;
    z-index:2;
    background:rgba(255,255,255,.1);
    border:1px solid rgba(255,255,255,.2);
    border-radius:24px;
    padding:40px;
    backdrop-filter:blur(15px);
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

.ppid-hero-card h3{
    font-weight:800;
    margin-bottom:12px;
}

.ppid-hero-card p{
    line-height:1.7;
    color:rgba(255,255,255,.85);
}

.ppid-status{
    margin-top:25px;
    padding:12px 16px;
    border-radius:12px;
    background:rgba(255,255,255,.1);
    font-size:13px;
    font-weight:700;
}

/* QUICK MENU */

.ppid-menu{
    padding:90px 0;
    background:#fff;
}

.ppid-card-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#eaf3ff;
    margin-bottom:20px;
}

.ppid-menu h4{
    font-weight:800;
    color:#102a43;
}

.ppid-menu p{
    color:#667085;
    line-height:1.7;
}

.ppid-card{
    display:inline-block;
    margin-top:10px;
    color:#0d47a1;
    font-weight:700;
    text-decoration:none;
}

.ppid-card:hover{
    color:#1976d2;
    text-decoration:none;
}

/* CONTENT */

.ppid-content{
    padding:90px 0;
    background:#f7faff;
}

.ppid-info-box{
    background:#fff;
    border-radius:24px;
    padding:40px;
    box-shadow:0 15px 45px rgba(13,71,161,.08);
    border:1px solid #e8eef7;
}

.ppid-info-box h3{
    font-weight:800;
    color:#102a43;
}

.ppid-info-box p{
    color:#667085;
    line-height:1.8;
}

/* INFORMASI */

.ppid-information{
    padding:90px 0;
    background:#fff;
}

.information-box{
    height:100%;
    padding:30px;
    border-radius:20px;
    background:#f8fbff;
    border:1px solid #e5edf7;
    transition:.3s;
}

.information-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(13,71,161,.1);
}

.information-box h4{
    font-weight:800;
    color:#102a43;
}

.information-box p{
    color:#667085;
    line-height:1.7;
}

.information-box a{
    color:#0d47a1;
    font-weight:700;
    text-decoration:none;
}

/* DOKUMEN */

.ppid-documents{
    padding:90px 0;
    background:#f7faff;
}

.document-item{
    display:flex;
    align-items:center;
    gap:20px;
    padding:25px;
    background:#fff;
    border:1px solid #e5edf7;
    border-radius:18px;
    transition:.3s;
}

.document-item:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 35px rgba(13,71,161,.08);
}

.document-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:14px;
    background:#eaf3ff;
}

.document-item h5{
    margin:0 0 5px;
    font-weight:800;
    color:#102a43;
}

.document-item div:last-child{
    color:#667085;
}

/* PERMOHONAN */

.ppid-request{
    padding:80px 0;
    background:linear-gradient(135deg,#0d47a1,#1976d2);
    color:#fff;
}

.ppid-request .section-title,
.ppid-request p{
    color:#fff;
}

.ppid-request p{
    opacity:.88;
    line-height:1.8;
}

/* KONTAK */

.ppid-contact{
    padding:90px 0;
    background:#fff;
}

.contact-box{
    height:100%;
    padding:30px;
    background:#f8fbff;
    border:1px solid #e5edf7;
    border-radius:20px;
}

.contact-box h4{
    font-weight:800;
    color:#102a43;
}

.contact-box p{
    color:#667085;
    line-height:1.7;
    margin-bottom:0;
}

/* MOBILE */

@media(max-width:767px){

    .ppid-hero{
        padding:70px 0;
    }

    .ppid-title{
        font-size:34px;
    }

    .ppid-subtitle{
        font-size:15px;
    }

    .ppid-hero-card{
        margin-top:35px;
        padding:30px;
    }

    .ppid-buttons{
        flex-direction:column;
    }

    .ppid-buttons .btn-smart{
        width:100%;
        text-align:center;
    }

}
/* =====================================================
   PPID PREMIUM POLISH
===================================================== */

.ppid-card-icon,
.ppid-large-icon,
.document-icon,
.ppid-hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO ICON */
.ppid-hero-icon::before {
    content: "\f4d0";
    font-family: "bootstrap-icons";
    font-size: 54px;
}

/* QUICK MENU */
.ppid-card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eaf4ff, #d8ebff);
    color: #0d47a1;
    font-size: 28px;
}

.ppid-card-icon::before {
    font-family: "bootstrap-icons";
}

.ppid-menu .col-lg-4:nth-child(1) .ppid-card-icon::before {
    content: "\f4da";
}

.ppid-menu .col-lg-4:nth-child(2) .ppid-card-icon::before {
    content: "\f4e3";
}

.ppid-menu .col-lg-4:nth-child(3) .ppid-card-icon::before {
    content: "\f3f9";
}

.ppid-menu .col-lg-4:nth-child(4) .ppid-card-icon::before {
    content: "\f4e7";
}

.ppid-menu .col-lg-4:nth-child(5) .ppid-card-icon::before {
    content: "\f3ed";
}

.ppid-menu .col-lg-4:nth-child(6) .ppid-card-icon::before {
    content: "\f32c";
}

/* PROFILE ICON */
.ppid-large-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: #fff;
    font-size: 36px;
}

.ppid-large-icon::before {
    content: "\f4da";
    font-family: "bootstrap-icons";
}

/* DOCUMENT ICON */
.document-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: #eaf4ff;
    color: #0d47a1;
    font-size: 24px;
}

.document-icon::before {
    content: "\f3f9";
    font-family: "bootstrap-icons";
}

/* DOCUMENT CARD */
.document-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e6edf5;
    transition: all .25s ease;
}

.document-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 71, 161, .10);
    border-color: #b9d7f5;
}

.document-item h5 {
    margin-bottom: 4px;
    color: #17324d;
    font-weight: 700;
}

.document-item span {
    color: #718096;
    font-size: 14px;
}

.document-download {
    margin-left: auto;
    font-size: 20px;
    color: #0d47a1;
}

/* CONTACT */
.contact-box {
    height: 100%;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #e6edf5;
    transition: all .25s ease;
}

.contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 71, 161, .10);
}

.contact-box h4 {
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 10px;
}

.contact-box p {
    margin-bottom: 0;
    color: #667085;
}

/* MOBILE */
@media (max-width: 767px) {

    .ppid-title {
        font-size: 32px;
    }

    .ppid-subtitle {
        font-size: 15px;
    }

    .document-item {
        padding: 18px;
    }

}
/* =====================================================
   PPID CONTACT ICON
===================================================== */

.contact-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #eaf4ff;
    color: #0d47a1;
    font-size: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: #0d47a1;
    font-weight: 700;
    text-decoration: none;
}

.contact-link:hover {
    color: #08306b;
    text-decoration: none;
}

.contact-link.disabled {
    color: #98a2b3;
    cursor: default;
}
.contact-email-link {
    display: block;
    color: #0d47a1;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    word-break: break-word;
    font-size: 14px;
}

.contact-email-link:hover {
    color: #08306b;
    text-decoration: underline;
}
/* =========================================================
   PPID CLEAN PAGE
   Menyembunyikan layout berita/sidebar hanya pada halaman PPID
   ========================================================= */

body.ppid-clean-page .berita-terkini,
body.ppid-clean-page .dishub-news-sidebar,
body.ppid-clean-page #daftar-galeri,
body.ppid-clean-page #list-page {
    display: none !important;
}
/* =====================================================
   SMART EXTRA MENU
   PUSAT INFORMASI & LAYANAN TRANSPORTASI
===================================================== */

.smart-extra-menu {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f5f9ff;
}

.smart-extra-menu .section-heading {
    margin-bottom: 45px;
}

.smart-extra-menu .section-label {
    display: inline-block;
    padding: 8px 18px;
    background: #e8f2ff;
    color: #0d47a1;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 14px;
}

.smart-extra-menu .section-title {
    color: #0b3d91;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
}

.smart-extra-menu .section-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================
   EXTRA MENU CARD
========================= */

.extra-menu-card {
    position: relative;
    display: block;
    height: 100%;
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #e2eaf4;
    border-radius: 18px;
    text-decoration: none !important;
    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(13, 71, 161, 0.06);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


/* garis biru di bagian atas */

.extra-menu-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #0d47a1,
        #42a5f5
    );

    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}


/* hover */

.extra-menu-card:hover {
    transform: translateY(-8px);

    border-color: #b8d4f5;

    box-shadow:
        0 18px 40px rgba(13, 71, 161, 0.14);
}

.extra-menu-card:hover::before {
    transform: scaleX(1);
}


/* =========================
   ICON
========================= */

.extra-menu-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: linear-gradient(
        135deg,
        #e8f2ff,
        #d6e9ff
    );

    color: #0d47a1;

    font-size: 25px;

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.extra-menu-card:hover .extra-menu-icon {
    background: linear-gradient(
        135deg,
        #0d47a1,
        #1565c0
    );

    color: #ffffff;

    transform: scale(1.08);
}


/* =========================
   TITLE
========================= */

.extra-menu-card h4 {
    color: #102a43;

    font-size: 18px;
    font-weight: 750;

    line-height: 1.35;

    margin-bottom: 10px;
}


/* =========================
   DESCRIPTION
========================= */

.extra-menu-card p {
    color: #667085;

    font-size: 13px;

    line-height: 1.7;

    margin-bottom: 18px;
}


/* =========================
   LINK
========================= */

.extra-menu-card span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #0d47a1;

    font-size: 13px;
    font-weight: 700;

    transition: gap .3s ease;
}


.extra-menu-card span i {
    font-size: 14px;
}


.extra-menu-card:hover span {
    gap: 12px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .smart-extra-menu {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .smart-extra-menu .section-title {
        font-size: 30px;
    }

}


@media (max-width: 767px) {

    .smart-extra-menu {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .smart-extra-menu .section-title {
        font-size: 27px;
    }

    .smart-extra-menu .section-subtitle {
        font-size: 14px;
    }

    .extra-menu-card {
        padding: 25px 22px;
    }

}
/* =========================================================
   DISHUB ACEH BESAR
   SMART TRANSPORTATION INFORMATION SECTION
   MODERN DYNAMIC BACKGROUND
   ========================================================= */

.smart-extra-menu {
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px;
    background:
        radial-gradient(circle at 10% 20%, rgba(38, 126, 255, .18), transparent 28%),
        radial-gradient(circle at 90% 15%, rgba(0, 190, 255, .16), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(30, 82, 170, .15), transparent 35%),
        linear-gradient(135deg, #071a38 0%, #0a2c5c 45%, #07172f 100%);
    color: #fff;
}

/* =========================================================
   BACKGROUND GRID / JALUR TRANSPORTASI
   ========================================================= */

.smart-extra-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 70px 70px;
    transform: perspective(500px) rotateX(55deg) scale(1.8);
    transform-origin: center bottom;
    animation: transportGrid 18s linear infinite;
    pointer-events: none;
}

@keyframes transportGrid {
    from {
        transform: perspective(500px) rotateX(55deg)
                   scale(1.8) translateY(0);
    }

    to {
        transform: perspective(500px) rotateX(55deg)
                   scale(1.8) translateY(70px);
    }
}

/* =========================================================
   GARIS JALUR CAHAYA
   ========================================================= */

.smart-extra-menu::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -250px;
    top: -250px;

    background:
        repeating-linear-gradient(
            135deg,
            transparent 0,
            transparent 55px,
            rgba(82, 180, 255, .12) 56px,
            rgba(82, 180, 255, .12) 58px,
            transparent 59px,
            transparent 110px
        );

    border-radius: 50%;
    animation: orbitTransport 25s linear infinite;
    pointer-events: none;
}

@keyframes orbitTransport {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* =========================================================
   KONTEN AGAR DI ATAS BACKGROUND
   ========================================================= */

.smart-extra-menu > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   JUDUL SECTION
   ========================================================= */

.smart-extra-menu .section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 18px;
    margin-bottom: 14px;

    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;

    background: rgba(255,255,255,.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #bfe5ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;

    box-shadow:
        0 8px 30px rgba(0,0,0,.15);
}

.smart-extra-menu h2,
.smart-extra-menu .section-title {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,.25);
}

.smart-extra-menu .section-description {
    color: rgba(255,255,255,.72);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   GRID KARTU
   ========================================================= */

.smart-extra-menu .row {
    position: relative;
    z-index: 3;
}

/* =========================================================
   KARTU TRANSPORTASI
   ========================================================= */

.smart-extra-menu .service-card,
.smart-extra-menu .info-card,
.smart-extra-menu .extra-card {
    position: relative;

    height: 100%;
    min-height: 220px;

    padding: 26px 24px;

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.98),
            rgba(244,249,255,.92)
        );

    border: 1px solid rgba(255,255,255,.8);

    box-shadow:
        0 18px 45px rgba(0, 20, 60, .20);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

/* Garis cahaya di bagian atas kartu */

.smart-extra-menu .service-card::before,
.smart-extra-menu .info-card::before,
.smart-extra-menu .extra-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #0d47a1,
            #29b6f6,
            #7dd3fc
        );

    opacity: .85;
}

/* Efek cahaya pojok */

.smart-extra-menu .service-card::after,
.smart-extra-menu .info-card::after,
.smart-extra-menu .extra-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(52, 152, 255, .10);

    transition: .4s ease;
}

/* =========================================================
   HOVER KARTU
   ========================================================= */

.smart-extra-menu .service-card:hover,
.smart-extra-menu .info-card:hover,
.smart-extra-menu .extra-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 60px rgba(0, 30, 80, .30);

    border-color: rgba(85, 180, 255, .55);
}

.smart-extra-menu .service-card:hover::after,
.smart-extra-menu .info-card:hover::after,
.smart-extra-menu .extra-card:hover::after {
    width: 220px;
    height: 220px;
    right: -90px;
    bottom: -90px;
}

/* =========================================================
   ICON
   ========================================================= */

.smart-extra-menu .service-icon,
.smart-extra-menu .info-icon,
.smart-extra-menu .extra-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 15px;

    background:
        linear-gradient(
            145deg,
            #e5f1ff,
            #c9e3ff
        );

    color: #0d47a1;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.8),
        0 8px 20px rgba(13,71,161,.12);

    transition: .35s ease;
}

.smart-extra-menu .service-card:hover .service-icon,
.smart-extra-menu .info-card:hover .info-icon,
.smart-extra-menu .extra-card:hover .extra-icon {
    transform: scale(1.08) rotate(-3deg);

    background:
        linear-gradient(
            145deg,
            #0d47a1,
            #1976d2
        );

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(13,71,161,.30);
}

/* =========================================================
   JUDUL KARTU
   ========================================================= */

.smart-extra-menu .service-card h3,
.smart-extra-menu .service-card h4,
.smart-extra-menu .info-card h3,
.smart-extra-menu .info-card h4,
.smart-extra-menu .extra-card h3,
.smart-extra-menu .extra-card h4 {
    color: #071a38;

    font-size: 17px;
    font-weight: 800;

    line-height: 1.35;

    margin-bottom: 10px;
}

/* =========================================================
   DESKRIPSI
   ========================================================= */

.smart-extra-menu .service-card p,
.smart-extra-menu .info-card p,
.smart-extra-menu .extra-card p {
    color: #63738a;

    font-size: 13px;
    line-height: 1.7;

    margin-bottom: 16px;
}

/* =========================================================
   LINK
   ========================================================= */

.smart-extra-menu .service-card a,
.smart-extra-menu .info-card a,
.smart-extra-menu .extra-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: #0d47a1;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none;

    transition: .3s ease;
}

.smart-extra-menu .service-card a::after,
.smart-extra-menu .info-card a::after,
.smart-extra-menu .extra-card a::after {
    content: "→";

    font-size: 15px;

    transition: transform .3s ease;
}

.smart-extra-menu .service-card:hover a,
.smart-extra-menu .info-card:hover a,
.smart-extra-menu .extra-card:hover a {
    color: #1976d2;
}

.smart-extra-menu .service-card:hover a::after,
.smart-extra-menu .info-card:hover a::after,
.smart-extra-menu .extra-card:hover a::after {
    transform: translateX(5px);
}

/* =========================================================
   EFEK CAHAYA BERGERAK
   ========================================================= */

.smart-extra-menu .transport-light {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 10px #ffffff,
        0 0 25px #29b6f6,
        0 0 45px #29b6f6;

    opacity: .8;

    animation: transportLight 7s linear infinite;

    z-index: 1;
}

@keyframes transportLight {
    0% {
        left: -10%;
        top: 80%;
        opacity: 0;
    }

    10% {
        opacity: .9;
    }

    50% {
        left: 50%;
        top: 35%;
    }

    90% {
        opacity: .9;
    }

    100% {
        left: 110%;
        top: 10%;
        opacity: 0;
    }
}

/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 991px) {

    .smart-extra-menu {
        padding: 70px 0 80px;
    }

    .smart-extra-menu .service-card,
    .smart-extra-menu .info-card,
    .smart-extra-menu .extra-card {
        min-height: 205px;
    }
}

/* =========================================================
   RESPONSIVE HP
   ========================================================= */

@media (max-width: 767px) {

    .smart-extra-menu {
        padding: 60px 0 70px;
    }

    .smart-extra-menu h2,
    .smart-extra-menu .section-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .smart-extra-menu .service-card,
    .smart-extra-menu .info-card,
    .smart-extra-menu .extra-card {
        min-height: auto;
        padding: 23px 21px;
        border-radius: 16px;
    }

    .smart-extra-menu .service-icon,
    .smart-extra-menu .info-icon,
    .smart-extra-menu .extra-icon {
        width: 48px;
        height: 48px;
    }
}
/* =========================================================
   DISHUB ACEH BESAR — MODERN TRANSPORT NETWORK BACKGROUND
   ========================================================= */

.smart-services,
.transport-dashboard,
.dashboard-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(30,136,229,.12), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(0,188,212,.10), transparent 30%),
        linear-gradient(135deg, #f8fbff 0%, #eef6ff 48%, #f7fbff 100%);
}

/* GRID JARINGAN DIGITAL */
.smart-services::before,
.transport-dashboard::before,
.dashboard-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .45;

    background-image:
        linear-gradient(rgba(13,71,161,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,71,161,.055) 1px, transparent 1px);

    background-size: 55px 55px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 18%,
        black 82%,
        transparent
    );
}

/* JALUR TRANSPORTASI DIAGONAL */
.smart-services::after,
.transport-dashboard::after,
.dashboard-section::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 180px;

    left: -40%;
    top: 42%;

    transform: rotate(-8deg);

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,0) 20%,
            rgba(255,255,255,.65) 48%,
            rgba(255,255,255,0) 76%,
            transparent 100%
        );

    filter: blur(18px);

    animation: transportLight 9s linear infinite;
}

@keyframes transportLight {

    0% {
        transform: translateX(-35%) rotate(-8deg);
        opacity: 0;
    }

    20% {
        opacity: .25;
    }

    50% {
        opacity: .8;
    }

    80% {
        opacity: .25;
    }

    100% {
        transform: translateX(35%) rotate(-8deg);
        opacity: 0;
    }
}


/* =========================================================
   NODE / TITIK JARINGAN TRANSPORTASI
   ========================================================= */

.smart-services .container,
.transport-dashboard .container,
.dashboard-section .container {
    position: relative;
    z-index: 3;
}

.smart-services .container::before,
.transport-dashboard .container::before,
.dashboard-section .container::before {
    content: "";
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #42a5f5;

    box-shadow:
        0 0 0 6px rgba(66,165,245,.10),
        0 0 25px rgba(33,150,243,.7);

    top: 20px;
    right: 8%;
    
    animation: networkPulse 2.5s ease-in-out infinite;
}

@keyframes networkPulse {

    0%,
    100% {
        transform: scale(.8);
        opacity: .5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}


/* =========================================================
   8 KARTU — GLASS PREMIUM
   ========================================================= */

.smart-services .service-card,
.smart-services .smart-card,
.smart-services .service-box,
.transport-dashboard .dashboard-card,
.dashboard-section .dashboard-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.92),
            rgba(255,255,255,.70)
        );

    border: 1px solid rgba(255,255,255,.85);

    border-radius: 24px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 45px rgba(13,71,161,.10),
        inset 0 1px 0 rgba(255,255,255,.9);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

    overflow: hidden;
}


/* CAHAYA DI DALAM KARTU */

.smart-services .service-card::before,
.smart-services .smart-card::before,
.smart-services .service-box::before,
.transport-dashboard .dashboard-card::before,
.dashboard-section .dashboard-card::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(33,150,243,.16),
            transparent 70%
        );

    pointer-events: none;
}


/* GARIS CAHAYA ATAS */

.smart-services .service-card::after,
.smart-services .smart-card::after,
.smart-services .service-box::after,
.transport-dashboard .dashboard-card::after,
.dashboard-section .dashboard-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(33,150,243,.45),
            transparent
        );

    opacity: .7;

    pointer-events: none;
}


/* HOVER */

.smart-services .service-card:hover,
.smart-services .smart-card:hover,
.smart-services .service-box:hover,
.transport-dashboard .dashboard-card:hover,
.dashboard-section .dashboard-card:hover {

    transform: translateY(-9px);

    border-color: rgba(33,150,243,.35);

    box-shadow:
        0 25px 65px rgba(13,71,161,.18),
        0 0 0 1px rgba(33,150,243,.08),
        inset 0 1px 0 rgba(255,255,255,.95);
}


/* =========================================================
   ICON KARTU
   ========================================================= */

.smart-services .service-card i,
.smart-services .smart-card i,
.smart-services .service-box i,
.transport-dashboard .dashboard-card i,
.dashboard-section .dashboard-card i {

    transition:
        transform .35s ease,
        filter .35s ease;
}

.smart-services .service-card:hover i,
.smart-services .smart-card:hover i,
.smart-services .service-box:hover i,
.transport-dashboard .dashboard-card:hover i,
.dashboard-section .dashboard-card:hover i {

    transform: scale(1.12) translateY(-2px);

    filter:
        drop-shadow(0 5px 12px rgba(33,150,243,.35));
}


/* =========================================================
   EFEK KILAUAN SAAT HOVER
   ========================================================= */

.smart-services .service-card .card-shine,
.smart-services .smart-card .card-shine,
.smart-services .service-box .card-shine {

    position: absolute;

    width: 80px;
    height: 220%;

    top: -60%;

    left: -120px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.55),
            transparent
        );

    transform: rotate(20deg);

    transition: left .8s ease;

    pointer-events: none;
}

.smart-services .service-card:hover .card-shine,
.smart-services .smart-card:hover .card-shine,
.smart-services .service-box:hover .card-shine {

    left: 130%;
}


/* =========================================================
   ANIMASI HALUS UNTUK KARTU
   ========================================================= */

.smart-services .service-card,
.smart-services .smart-card,
.smart-services .service-box {

    animation: cardFloat 5s ease-in-out infinite;
}

.smart-services .service-card:nth-child(2),
.smart-services .smart-card:nth-child(2),
.smart-services .service-box:nth-child(2) {
    animation-delay: .4s;
}

.smart-services .service-card:nth-child(3),
.smart-services .smart-card:nth-child(3),
.smart-services .service-box:nth-child(3) {
    animation-delay: .8s;
}

.smart-services .service-card:nth-child(4),
.smart-services .smart-card:nth-child(4),
.smart-services .service-box:nth-child(4) {
    animation-delay: 1.2s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

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


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .smart-services::before,
    .transport-dashboard::before,
    .dashboard-section::before {
        background-size: 35px 35px;
    }

    .smart-services .service-card,
    .smart-services .smart-card,
    .smart-services .service-box,
    .transport-dashboard .dashboard-card,
    .dashboard-section .dashboard-card {
        border-radius: 20px;
    }

}
/* =========================================================
   DISHUB ACEH BESAR
   SMART TRANSPORTATION ROAD NETWORK
   HTML TIDAK PERLU DIUBAH
   ========================================================= */

/* AREA UTAMA */
.smart-services,
.transport-dashboard,
.dashboard-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================================
   JALUR JALAN DIGITAL 1
   ========================================================= */

.smart-services::before,
.transport-dashboard::before,
.dashboard-section::before {

    content: "";

    position: absolute;

    width: 120%;
    height: 420px;

    left: -10%;
    top: 25%;

    z-index: -1;

    pointer-events: none;

    background:

        /* jalan utama */
        linear-gradient(
            115deg,
            transparent 0%,
            transparent 31%,
            rgba(13,71,161,.07) 31.2%,
            rgba(13,71,161,.07) 32.5%,
            transparent 32.7%,
            transparent 48%,
            rgba(33,150,243,.08) 48.2%,
            rgba(33,150,243,.08) 49.5%,
            transparent 49.7%,
            transparent 67%,
            rgba(13,71,161,.06) 67.2%,
            rgba(13,71,161,.06) 68.5%,
            transparent 68.7%
        );

    transform: rotate(-3deg);

    opacity: .9;
}


/* =========================================================
   GARIS JALAN PUTIH / SILVER
   ========================================================= */

.smart-services::after,
.transport-dashboard::after,
.dashboard-section::after {

    content: "";

    position: absolute;

    width: 150%;
    height: 3px;

    left: -25%;
    top: 52%;

    z-index: -1;

    pointer-events: none;

    background:
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 25px,
            rgba(255,255,255,.75) 25px,
            rgba(255,255,255,.75) 55px,
            transparent 55px,
            transparent 90px
        );

    transform: rotate(-7deg);

    opacity: .8;

    filter:
        drop-shadow(0 0 5px rgba(255,255,255,.7));

    animation:
        roadLineMove 7s linear infinite;
}


@keyframes roadLineMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 180px 0;
    }
}


/* =========================================================
   JALUR CAHAYA TRANSPORTASI
   ========================================================= */

.smart-services .container::after,
.transport-dashboard .container::after,
.dashboard-section .container::after {

    content: "";

    position: absolute;

    width: 240px;
    height: 2px;

    top: 35%;
    left: -260px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(33,150,243,.15),
            rgba(33,150,243,1),
            rgba(255,255,255,1),
            transparent
        );

    box-shadow:
        0 0 12px rgba(33,150,243,.75),
        0 0 25px rgba(33,150,243,.35);

    transform: rotate(-7deg);

    pointer-events: none;

    animation:
        trafficLight 6s linear infinite;
}


@keyframes trafficLight {

    0% {
        left: -280px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        left: 115%;
        opacity: 0;
    }
}


/* =========================================================
   TITIK NODE TRANSPORTASI
   ========================================================= */

.smart-services .container,
.transport-dashboard .container,
.dashboard-section .container {

    position: relative;
}


/* NODE 1 */

.smart-services .container::before,
.transport-dashboard .container::before,
.dashboard-section .container::before {

    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    top: 24%;
    right: 10%;

    background: #42a5f5;

    box-shadow:
        0 0 0 5px rgba(66,165,245,.10),
        0 0 15px rgba(33,150,243,.8),
        0 0 35px rgba(33,150,243,.4);

    animation:
        nodePulse 2.2s ease-in-out infinite;

    pointer-events: none;
}


@keyframes nodePulse {

    0%,
    100% {
        transform: scale(.7);
        opacity: .5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}


/* =========================================================
   GARIS JARINGAN TAMBAHAN
   ========================================================= */

.smart-services .container,
.transport-dashboard .container,
.dashboard-section .container {

    background-image:

        linear-gradient(
            25deg,
            transparent 49.5%,
            rgba(33,150,243,.045) 50%,
            transparent 50.5%
        ),

        linear-gradient(
            155deg,
            transparent 49.5%,
            rgba(13,71,161,.04) 50%,
            transparent 50.5%
        );

    background-size:
        280px 180px,
        360px 240px;

}


/* =========================================================
   EFEK "KENDARAAN" DIGITAL
   Titik cahaya bergerak sepanjang jalur
   ========================================================= */

.smart-services .service-card:nth-child(1)::before,
.transport-dashboard .dashboard-card:nth-child(1)::before,
.dashboard-section .dashboard-card:nth-child(1)::before {

    content: "";

    position: absolute;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 8px #2196f3,
        0 0 18px #2196f3,
        0 0 35px rgba(33,150,243,.6);

    left: -20px;
    top: 18px;

    z-index: 10;

    animation:
        miniVehicle 5s linear infinite;
}


@keyframes miniVehicle {

    0% {
        left: -20px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        left: 50%;
        opacity: 1;
    }

    90% {
        left: calc(100% + 20px);
        opacity: 1;
    }

    100% {
        left: calc(100% + 30px);
        opacity: 0;
    }
}


/* =========================================================
   KENDARAAN DIGITAL KE-2
   ========================================================= */

.smart-services .service-card:nth-child(3)::before,
.transport-dashboard .dashboard-card:nth-child(3)::before,
.dashboard-section .dashboard-card:nth-child(3)::before {

    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 8px rgba(0,188,212,.9),
        0 0 20px rgba(0,188,212,.65);

    right: -20px;
    bottom: 22px;

    animation:
        vehicleReverse 6s linear infinite;

    z-index: 10;
}


@keyframes vehicleReverse {

    0% {
        right: -20px;
        opacity: 0;
    }

    12% {
        opacity: 1;
    }

    50% {
        right: 50%;
        opacity: 1;
    }

    88% {
        right: calc(100% + 20px);
        opacity: 1;
    }

    100% {
        right: calc(100% + 30px);
        opacity: 0;
    }
}


/* =========================================================
   GLASS CARD LEBIH PREMIUM
   ========================================================= */

.smart-services .service-card,
.smart-services .smart-card,
.smart-services .service-box,
.transport-dashboard .dashboard-card,
.dashboard-section .dashboard-card {

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.88),
            rgba(255,255,255,.68)
        );

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border:
        1px solid rgba(255,255,255,.9);

    box-shadow:

        0 12px 35px rgba(13,71,161,.10),

        inset 0 1px 0
        rgba(255,255,255,.95);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}


/* =========================================================
   HOVER KARTU
   ========================================================= */

.smart-services .service-card:hover,
.smart-services .smart-card:hover,
.smart-services .service-box:hover,
.transport-dashboard .dashboard-card:hover,
.dashboard-section .dashboard-card:hover {

    transform:
        translateY(-8px)
        scale(1.015);

    border-color:
        rgba(33,150,243,.35);

    box-shadow:

        0 25px 60px
        rgba(13,71,161,.18),

        0 0 25px
        rgba(33,150,243,.08),

        inset 0 1px 0
        rgba(255,255,255,1);

}


/* =========================================================
   KILAUAN KARTU
   ========================================================= */

.smart-services .service-card:hover::after,
.smart-services .smart-card:hover::after,
.smart-services .service-box:hover::after,
.transport-dashboard .dashboard-card:hover::after,
.dashboard-section .dashboard-card:hover::after {

    opacity: 1;

    box-shadow:
        0 0 15px rgba(33,150,243,.45);

}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .smart-services *,
    .transport-dashboard *,
    .dashboard-section * {

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .smart-services::before,
    .transport-dashboard::before,
    .dashboard-section::before {

        opacity: .55;
    }

    .smart-services::after,
    .transport-dashboard::after,
    .dashboard-section::after {

        opacity: .45;
    }

}
/* =========================================================
DISHUB ACEH BESAR
JADWAL BUS & ANGKUTAN
SMART PUBLIC TRANSPORTATION — PREMIUM V3
========================================================= */

.dishub-bus-page{
--db-blue:#083b66;
--db-blue-dark:#062b4a;
--db-blue-light:#eaf4fb;
--db-orange:#f28c28;
--db-orange-dark:#d86f0b;
--db-red:#c93632;
--db-white:#ffffff;
--db-text:#183247;
--db-muted:#647789;
--db-border:#dce7ef;
--db-shadow:0 18px 45px rgba(5,45,75,.12);

```
font-family:Inter,Arial,sans-serif;
color:var(--db-text);
background:#f4f8fb;
overflow:hidden;
```

}

.dishub-bus-page *{
box-sizing:border-box;
}

.dbus-container{
width:100%;
max-width:1180px;
margin:0 auto;
padding-left:20px;
padding-right:20px;
}

/* =========================================================
HERO
========================================================= */

.dbus-hero{
position:relative;
min-height:560px;
display:flex;
align-items:center;
background:
radial-gradient(circle at 85% 20%,rgba(242,140,40,.30),transparent 25%),
radial-gradient(circle at 15% 80%,rgba(20,112,170,.35),transparent 30%),
linear-gradient(135deg,#052b4a 0%,#07517d 55%,#0b6d9d 100%);
color:#fff;
overflow:hidden;
}

.dbus-hero:before{
content:"";
position:absolute;
width:520px;
height:520px;
right:-170px;
top:-180px;
border:1px solid rgba(255,255,255,.14);
border-radius:50%;
}

.dbus-hero:after{
content:"";
position:absolute;
width:380px;
height:380px;
left:-170px;
bottom:-220px;
border:1px solid rgba(255,255,255,.12);
border-radius:50%;
}

.dbus-hero-overlay{
position:absolute;
inset:0;
background:
linear-gradient(90deg,rgba(2,27,47,.55),transparent 65%),
repeating-linear-gradient(
120deg,
transparent 0,
transparent 70px,
rgba(255,255,255,.025) 71px,
transparent 72px
);
}

.dbus-hero-content{
position:relative;
z-index:2;
width:100%;
}

.dbus-eyebrow{
display:inline-flex;
align-items:center;
gap:10px;
padding:9px 17px;
margin-bottom:22px;
border:1px solid rgba(255,255,255,.25);
border-radius:50px;
background:rgba(255,255,255,.10);
backdrop-filter:blur(8px);
color:#fff;
font-size:12px;
font-weight:800;
letter-spacing:2px;
}

.dbus-eyebrow:before{
content:"";
width:9px;
height:9px;
border-radius:50%;
background:var(--db-orange);
box-shadow:0 0 0 5px rgba(242,140,40,.16);
}

.dbus-hero h1{
max-width:800px;
margin:0 0 22px;
color:#fff;
font-size:clamp(42px,6vw,76px);
line-height:1.02;
font-weight:900;
letter-spacing:-2px;
}

.dbus-hero p{
max-width:680px;
margin:0 0 32px;
color:rgba(255,255,255,.86);
font-size:18px;
line-height:1.8;
}

.dbus-hero-actions{
display:flex;
flex-wrap:wrap;
gap:14px;
}

.dbus-btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:52px;
padding:0 26px;
border-radius:12px;
text-decoration:none!important;
font-size:14px;
font-weight:800;
transition:.25s ease;
}

.dbus-btn-primary{
background:var(--db-orange);
color:#fff!important;
box-shadow:0 12px 30px rgba(242,140,40,.28);
}

.dbus-btn-primary:hover{
transform:translateY(-3px);
background:#ff9e38;
color:#fff!important;
}

.dbus-btn-outline{
border:1px solid rgba(255,255,255,.35);
background:rgba(255,255,255,.08);
color:#fff!important;
}

.dbus-btn-outline:hover{
transform:translateY(-3px);
background:#fff;
color:var(--db-blue)!important;
}

.dbus-hero-status{
margin-top:45px;
color:rgba(255,255,255,.58);
font-size:12px;
font-weight:700;
letter-spacing:1px;
text-transform:uppercase;
}

/* =========================================================
SEARCH
========================================================= */

.dbus-search-section{
position:relative;
z-index:5;
margin-top:-65px;
padding-bottom:30px;
}

.dbus-search-card{
padding:25px;
border-radius:20px;
background:#fff;
box-shadow:0 22px 55px rgba(3,44,70,.17);
border:1px solid rgba(7,67,103,.08);
}

.dbus-search-title{
display:flex;
align-items:center;
gap:15px;
margin-bottom:15px;
color:var(--db-blue);
}

.dbus-search-title:first-letter{
color:var(--db-orange);
}

.dbus-search-title div{
display:flex;
flex-direction:column;
}

.dbus-search-title small{
margin-bottom:3px;
color:var(--db-orange-dark);
font-size:10px;
font-weight:900;
letter-spacing:1.5px;
}

.dbus-search-title strong{
font-size:20px;
font-weight:850;
}

.dbus-search-input-wrap{
position:relative;
}

.dbus-search-input-wrap:before{
content:"";
position:absolute;
left:18px;
top:50%;
width:18px;
height:18px;
border:2px solid #8ba0af;
border-radius:50%;
transform:translateY(-60%);
}

.dbus-search-input-wrap:after{
content:"";
position:absolute;
left:34px;
top:58%;
width:8px;
height:2px;
background:#8ba0af;
transform:rotate(45deg);
}

#dbusRouteSearch{
width:100%;
height:58px;
padding:0 20px 0 55px;
border:2px solid #dce7ef;
border-radius:13px;
outline:none;
background:#f8fbfd;
color:#183247;
font-size:15px;
font-weight:600;
transition:.2s ease;
}

#dbusRouteSearch::placeholder{
color:#91a0ad;
}

#dbusRouteSearch:focus{
border-color:var(--db-orange);
background:#fff;
box-shadow:0 0 0 4px rgba(242,140,40,.10);
}

/* =========================================================
HEADING
========================================================= */

.dbus-heading{
margin-bottom:38px;
}

.dbus-heading-light{
color:#fff;
}

.dbus-heading{
color:var(--db-blue);
}

.dbus-heading h2{
margin:8px 0 8px;
font-size:38px;
line-height:1.15;
font-weight:900;
letter-spacing:-1px;
}

.dbus-heading p{
max-width:700px;
margin:0;
color:var(--db-muted);
font-size:15px;
line-height:1.7;
}

.dbus-heading-light h2{
color:#fff;
}

.dbus-heading-light p{
color:rgba(255,255,255,.72);
}

.dbus-heading:first-line{
font-size:11px;
font-weight:900;
letter-spacing:2px;
}

/* =========================================================
OPERATORS
========================================================= */

.dbus-operators{
padding:75px 0 85px;
background:#f4f8fb;
}

.dbus-operator-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.dbus-operator-card{
position:relative;
min-height:245px;
padding:28px;
border:1px solid var(--db-border);
border-radius:20px;
background:#fff;
box-shadow:0 10px 30px rgba(5,45,75,.06);
overflow:hidden;
transition:.3s ease;
}

.dbus-operator-card:after{
content:"";
position:absolute;
right:-40px;
bottom:-70px;
width:150px;
height:150px;
border-radius:50%;
background:rgba(242,140,40,.07);
}

.dbus-operator-card:hover{
transform:translateY(-8px);
box-shadow:var(--db-shadow);
}

.dbus-operator-top{
display:flex;
align-items:center;
justify-content:space-between;
margin-bottom:22px;
color:#16845b;
font-size:10px;
font-weight:900;
letter-spacing:1px;
}

.dbus-operator-icon{
display:flex;
align-items:center;
justify-content:center;
width:62px;
height:62px;
border-radius:16px;
background:linear-gradient(135deg,var(--db-blue),#0b78aa);
color:#fff;
font-size:28px;
box-shadow:0 10px 22px rgba(8,59,102,.20);
}

.dbus-operator-card:nth-child(2) .dbus-operator-icon{
background:linear-gradient(135deg,#b92d2d,#e15a35);
}

.dbus-operator-card:nth-child(3) .dbus-operator-icon{
background:linear-gradient(135deg,#245f9b,#3e91c9);
}

.dbus-operator-card h3{
position:relative;
z-index:1;
margin:0 0 9px;
color:var(--db-blue);
font-size:23px;
font-weight:900;
}

.dbus-operator-card p{
position:relative;
z-index:1;
min-height:52px;
margin:0 0 20px;
color:var(--db-muted);
font-size:14px;
line-height:1.65;
}

.dbus-card-line{
width:45px;
height:4px;
margin-bottom:12px;
border-radius:10px;
background:var(--db-orange);
}

.dbus-operator-card small{
color:#718392;
font-size:10px;
font-weight:900;
letter-spacing:1.4px;
}

/* =========================================================
SCHEDULE
========================================================= */

.dbus-schedule-section{
padding:85px 0 100px;
background:
radial-gradient(circle at 90% 10%,rgba(242,140,40,.12),transparent 25%),
linear-gradient(145deg,#062c4b,#084d75 65%,#063655);
}

.dbus-schedule-card{
position:relative;
margin-bottom:18px;
padding:27px 30px;
border:1px solid rgba(255,255,255,.12);
border-radius:18px;
background:rgba(255,255,255,.98);
box-shadow:0 15px 35px rgba(0,0,0,.13);
transition:.3s ease;
overflow:hidden;
}

.dbus-schedule-card:hover{
transform:translateY(-4px);
box-shadow:0 22px 45px rgba(0,0,0,.20);
}

.dbus-schedule-card:before{
content:"";
position:absolute;
left:0;
top:0;
bottom:0;
width:5px;
background:var(--db-orange);
}

.dbus-schedule-card:nth-of-type(3):before,
.dbus-schedule-card:nth-of-type(4):before{
background:var(--db-red);
}

.dbus-school-card:before

.dbus-schedule-header{
display:flex;
align-items:center;
justify-content:space-between;
gap:25px;
}

.dbus-label-orange,
.dbus-label-red,
.dbus-label-blue{
display:inline-block;
margin-bottom:8px;
padding:6px 10px;
border-radius:6px;
font-size:9px;
font-weight:900;
letter-spacing:1.3px;
}

.dbus-label-orange{
background:#fff1df;
color:#bd6209;
}

.dbus-label-red{
background:#fde8e8;
color:#a92727;
}

.dbus-label-blue{
background:#e8f2fb;
color:#236496;
}

.dbus-schedule-header h3{
margin:0;
color:var(--db-blue);
font-size:25px;
line-height:1.25;
font-weight:900;
}

.dbus-schedule-header h3 strong{
margin:0 7px;
color:var(--db-orange);
}

.dbus-time{
min-width:145px;
padding-left:25px;
border-left:1px dashed #ccd9e1;
text-align:right;
}

.dbus-time small{
display:block;
margin-bottom:2px;
color:#8796a1;
font-size:9px;
font-weight:900;
letter-spacing:1.4px;
}

.dbus-time strong{
display:block;
color:var(--db-blue);
font-size:35px;
line-height:1;
font-weight:900;
}

.dbus-time strong:after{
content:" WIB";
color:#80919e;
font-size:10px;
font-weight:800;
}

.dbus-route-line{
display:flex;
align-items:center;
gap:15px;
margin-top:22px;
padding-top:18px;
border-top:1px solid #e8eef2;
color:#526b7c;
font-size:13px;
font-weight:800;
}

.dbus-route-line:before{
content:"";
width:10px;
height:10px;
border:3px solid var(--db-orange);
border-radius:50%;
}

.dbus-route-line:after{
content:"";
width:65px;
height:1px;
background:#cbd7df;
}

.dbus-meta{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-top:17px;
color:#627687;
font-size:11px;
font-weight:700;
}

.dbus-meta span{
display:inline-block;
padding:7px 10px;
border-radius:7px;
background:#f1f5f7;
}

.dbus-note{
margin-top:13px;
color:#9a6a2d;
font-size:11px;
font-weight:700;
}

.dbus-school-route{
margin-top:20px;
padding:16px 18px;
border-radius:10px;
background:#f4f8fb;
color:#415c6e;
font-size:13px;
line-height:1.9;
font-weight:700;
}

.dbus-school-route strong{
margin:0 7px;
color:#2878ae;
}

/* =========================================================
EMPTY SEARCH
========================================================= */

.dbus-empty{
display:none;
margin-top:20px;
padding:18px 20px;
border:1px solid rgba(242,140,40,.25);
border-radius:12px;
background:#fff6e9;
color:#81521d;
font-size:13px;
text-align:center;
}

.dbus-empty strong{
margin-right:5px;
}

/* =========================================================
INFO
========================================================= */

.dbus-info{
display:flex;
align-items:center;
justify-content:space-between;
gap:30px;
margin-top:35px;
padding:30px;
border:1px solid rgba(255,255,255,.12);
border-radius:18px;
background:rgba(255,255,255,.08);
color:#fff;
}

.dbus-info > div:first-child{
color:rgba(255,255,255,.55);
font-size:10px;
font-weight:900;
letter-spacing:1.5px;
}

.dbus-info h3{
margin:7px 0 5px;
color:#fff;
font-size:20px;
letter-spacing:0;
}

.dbus-info p{
max-width:650px;
margin:0;
color:rgba(255,255,255,.65);
font-size:12px;
line-height:1.6;
font-weight:500;
letter-spacing:0;
}

.dbus-total{
min-width:120px;
padding-left:25px;
border-left:1px solid rgba(255,255,255,.15);
color:rgba(255,255,255,.55);
font-size:10px;
font-weight:900;
letter-spacing:1px;
}

.dbus-total strong{
display:block;
color:var(--db-orange);
font-size:38px;
line-height:1;
}

/* =========================================================
FINAL CTA
========================================================= */

.dbus-final{
padding:65px 0;
background:#fff;
}

.dbus-final .dbus-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

.dbus-final .dbus-container > div:first-child{
color:#8796a1;
font-size:10px;
font-weight:900;
letter-spacing:2px;
}

.dbus-final h2{
margin:10px 0 0;
color:var(--db-blue);
font-size:35px;
line-height:1.2;
font-weight:900;
letter-spacing:-1px;
}

.dbus-final-mark{
min-width:170px;
padding:18px 25px;
border-left:4px solid var(--db-orange);
color:#80909d;
font-size:12px;
line-height:1.5;
font-weight:800;
letter-spacing:1px;
}

.dbus-final-mark strong{
color:var(--db-blue);
font-size:18px;
}

/* =========================================================
SEARCH RESULT ANIMATION
========================================================= */

.dbus-search-item{
transition:opacity .2s ease,transform .2s ease;
}

.dbus-search-item.dbus-hidden{
display:none!important;
}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:991px){

```
.dbus-hero{
    min-height:500px;
}

.dbus-hero h1{
    font-size:52px;
}

.dbus-operator-grid{
    grid-template-columns:1fr;
}

.dbus-operator-card{
    min-height:auto;
}
```

}

@media(max-width:767px){

```
.dbus-container{
    padding-left:15px;
    padding-right:15px;
}

.dbus-hero{
    min-height:560px;
}

.dbus-hero h1{
    font-size:42px;
    letter-spacing:-1px;
}

.dbus-hero p{
    font-size:15px;
    line-height:1.7;
}

.dbus-hero-actions{
    flex-direction:column;
    align-items:stretch;
}

.dbus-btn{
    width:100%;
}

.dbus-search-section{
    margin-top:-40px;
}

.dbus-search-card{
    padding:18px;
}

.dbus-search-title strong{
    font-size:17px;
}

.dbus-heading h2{
    font-size:30px;
}

.dbus-schedule-section{
    padding:65px 0 70px;
}

.dbus-schedule-card{
    padding:22px 20px;
}

.dbus-schedule-header{
    align-items:flex-start;
    flex-direction:column;
}

.dbus-time{
    width:100%;
    min-width:0;
    padding:15px 0 0;
    border-left:0;
    border-top:1px dashed #ccd9e1;
    text-align:left;
}

.dbus-time strong{
    font-size:34px;
}

.dbus-route-line{
    flex-wrap:wrap;
}

.dbus-school-route{
    font-size:12px;
}

.dbus-info{
    flex-direction:column;
    align-items:flex-start;
}

.dbus-total{
    width:100%;
    padding:18px 0 0;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.15);
}

.dbus-final .dbus-container{
    align-items:flex-start;
    flex-direction:column;
}

.dbus-final h2{
    font-size:29px;
}
```

}

@media(max-width:480px){

```
.dbus-hero h1{
    font-size:36px;
}

.dbus-eyebrow{
    font-size:9px;
    letter-spacing:1.2px;
}

.dbus-operator-card h3{
    font-size:21px;
}

.dbus-schedule-header h3{
    font-size:21px;
}

.dbus-time strong{
    font-size:31px;
}
```

}
/* =========================================================
   DISHUB ACEH BESAR
   SMART BUS & PUBLIC TRANSPORTATION
   FINAL CSS
========================================================= */

.dbus-page{
    --dbus-blue:#063b73;
    --dbus-blue-dark:#031d3b;
    --dbus-blue-light:#168cff;
    --dbus-cyan:#43d5ff;
    --dbus-orange:#ff8a18;
    --dbus-orange-dark:#e86b00;
    --dbus-white:#ffffff;
    --dbus-text:#172b46;
    --dbus-muted:#718096;
    --dbus-bg:#f4f8fc;
    --dbus-border:#dce8f3;

    font-family:Inter,Arial,Helvetica,sans-serif;
    color:var(--dbus-text);
    overflow:hidden;
    background:#fff;
}

.dbus-page *,
.dbus-page *::before,
.dbus-page *::after{
    box-sizing:border-box;
}

.dbus-container{
    width:min(1180px,calc(100% - 40px));
    margin:0 auto;
    position:relative;
    z-index:3;
}

/* =========================================================
   HERO
========================================================= */

.dbus-hero{
    position:relative;
    min-height:680px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 85% 25%,rgba(67,213,255,.22),transparent 28%),
        radial-gradient(circle at 15% 80%,rgba(255,138,24,.12),transparent 25%),
        linear-gradient(125deg,#02172f 0%,#063b73 52%,#0875bd 100%);
    color:#fff;
    isolation:isolate;
}

.dbus-hero::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.14;
    background-image:
        linear-gradient(120deg,transparent 0 45%,rgba(255,255,255,.2) 45.2%,transparent 45.5%),
        linear-gradient(30deg,transparent 0 48%,rgba(255,255,255,.12) 48.2%,transparent 48.5%);
    background-size:150px 150px;
    pointer-events:none;
}

.dbus-hero::after{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    right:-300px;
    top:-260px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:50%;
    box-shadow:
        0 0 0 80px rgba(255,255,255,.025),
        0 0 0 160px rgba(255,255,255,.02),
        0 0 0 240px rgba(255,255,255,.015);
}

.dbus-hero-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(10px);
    pointer-events:none;
}

.dbus-glow-one{
    width:260px;
    height:260px;
    right:22%;
    top:12%;
    background:rgba(67,213,255,.13);
    animation:dbusGlow 6s ease-in-out infinite;
}

.dbus-glow-two{
    width:220px;
    height:220px;
    left:-100px;
    bottom:-100px;
    background:rgba(255,138,24,.13);
    animation:dbusGlow 8s ease-in-out infinite reverse;
}

@keyframes dbusGlow{
    0%,100%{transform:scale(1);opacity:.65}
    50%{transform:scale(1.25);opacity:1}
}

.dbus-hero-grid{
    display:grid;
    grid-template-columns:48% 52%;
    align-items:center;
    gap:20px;
    min-height:680px;
}

.dbus-hero-text{
    position:relative;
    z-index:5;
    padding:70px 0;
}

.dbus-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:9px 16px;
    margin-bottom:22px;
    border:1px solid rgba(255,255,255,.22);
    border-radius:50px;
    background:rgba(255,255,255,.09);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    color:#bceeff;
    font-size:11px;
    font-weight:800;
    letter-spacing:1.8px;
}

.dbus-badge::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:#43d5ff;
    box-shadow:0 0 14px #43d5ff;
}

.dbus-hero h1{
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(42px,5vw,68px);
    line-height:1.02;
    font-weight:900;
    letter-spacing:-2.5px;
}

.dbus-hero p{
    max-width:610px;
    margin:0 0 30px;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.75;
}

.dbus-hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:36px;
}

.dbus-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 25px;
    border-radius:12px;
    text-decoration:none!important;
    font-size:14px;
    font-weight:800;
    transition:.3s ease;
}

.dbus-btn-orange{
    background:linear-gradient(135deg,#ff9d32,#f16d00);
    color:#fff!important;
    box-shadow:0 12px 30px rgba(241,109,0,.25);
}

.dbus-btn-orange:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(241,109,0,.4);
}

.dbus-btn-dark{
    border:1px solid rgba(255,255,255,.22);
    background:rgba(255,255,255,.08);
    color:#fff!important;
    backdrop-filter:blur(10px);
}

.dbus-btn-dark:hover{
    transform:translateY(-3px);
    background:rgba(255,255,255,.16);
}

.dbus-hero-info{
    display:flex;
    gap:34px;
}

.dbus-hero-info div{
    display:flex;
    flex-direction:column;
    color:rgba(255,255,255,.58);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.dbus-hero-info strong{
    margin-bottom:3px;
    color:#fff;
    font-size:22px;
    letter-spacing:0;
}

/* =========================================================
   HERO BUS VISUAL
========================================================= */

.dbus-hero-visual{
    position:relative;
    height:560px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dbus-bus-scene{
    position:relative;
    width:100%;
    height:100%;
    min-height:480px;
}

.dbus-road{
    position:absolute;
    left:0;
    right:-100px;
    bottom:80px;
    height:4px;
    background:rgba(255,255,255,.28);
    box-shadow:
        0 18px 0 rgba(255,255,255,.04),
        0 -18px 0 rgba(255,255,255,.04);
}

.dbus-road::before{
    content:"";
    position:absolute;
    top:-5px;
    left:0;
    width:100%;
    height:14px;
    background:repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.55) 0 55px,
        transparent 55px 105px
    );
    opacity:.35;
}

.dbus-bus{
    position:absolute;
    width:510px;
    height:245px;
    left:50%;
    top:50%;
    transform:translate(-44%,-42%);
    border-radius:38px 55px 28px 28px;
    background:
        linear-gradient(180deg,#f7fbff 0%,#e7eef5 55%,#b7c6d4 100%);
    box-shadow:
        0 30px 60px rgba(0,0,0,.35),
        inset 0 -8px 0 rgba(3,29,59,.14);
    animation:dbusFloat 4.5s ease-in-out infinite;
}

@keyframes dbusFloat{
    0%,100%{transform:translate(-44%,-42%)}
    50%{transform:translate(-44%,-46%)}
}

.dbus-bus-top{
    position:absolute;
    left:35px;
    right:55px;
    top:17px;
    height:16px;
    border-radius:20px;
    background:linear-gradient(90deg,#063b73,#168cff,#43d5ff);
}

.dbus-bus-window{
    position:absolute;
    top:48px;
    width:91px;
    height:78px;
    border-radius:12px;
    border:4px solid #a9bdcf;
    background:
        linear-gradient(135deg,rgba(67,213,255,.35),rgba(3,29,59,.95));
    overflow:hidden;
}

.dbus-bus-window::after{
    content:"";
    position:absolute;
    width:130%;
    height:30px;
    left:-20px;
    top:18px;
    transform:rotate(-25deg);
    background:rgba(255,255,255,.08);
}

.window-one{left:35px}
.window-two{left:137px}
.window-three{left:239px}

.dbus-bus-body-line{
    position:absolute;
    left:0;
    right:0;
    top:139px;
    height:13px;
    background:linear-gradient(90deg,#063b73,#168cff,#43d5ff,#ff8a18);
}

.dbus-bus-front{
    position:absolute;
    right:0;
    top:47px;
    width:75px;
    height:112px;
    border-radius:12px 38px 15px 8px;
    background:linear-gradient(135deg,#d9e4ed,#9fb1c1);
    border-left:4px solid #8da2b4;
}

.dbus-bus-front::after{
    content:"";
    position:absolute;
    right:9px;
    bottom:15px;
    width:30px;
    height:7px;
    border-radius:20px;
    background:#ff8a18;
    box-shadow:0 0 14px rgba(255,138,24,.7);
}

.dbus-wheel{
    position:absolute;
    bottom:-32px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:#071523;
    border:9px solid #8fa1b2;
    box-shadow:inset 0 0 0 9px #17283a;
}

.dbus-wheel::after{
    content:"";
    position:absolute;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#9eb0bf;
    left:16px;
    top:16px;
}

.wheel-one{left:76px}
.wheel-two{right:80px}

.dbus-bus-logo{
    position:absolute;
    right:98px;
    top:172px;
    color:#063b73;
    font-size:13px;
    line-height:1.05;
    font-weight:800;
    letter-spacing:1px;
    text-align:center;
}

.dbus-bus-logo strong{
    color:#f07808;
    font-size:16px;
}

.dbus-floating-card{
    position:absolute;
    z-index:10;
    padding:15px 18px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:15px;
    background:rgba(255,255,255,.11);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.18);
    font-size:11px;
}

.dbus-floating-card strong{
    display:block;
    margin-bottom:4px;
    color:#fff;
    font-size:13px;
}

.dbus-floating-top{
    top:100px;
    right:0;
    animation:dbusCardFloat 4s ease-in-out infinite;
}

.dbus-floating-bottom{
    bottom:105px;
    left:15px;
    animation:dbusCardFloat 5s ease-in-out infinite reverse;
}

.dbus-floating-bottom strong{
    margin-top:5px;
    color:#43d5ff;
    font-size:25px;
}

@keyframes dbusCardFloat{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-8px)}
}

/* =========================================================
   SECTION HEADING
========================================================= */

.dbus-section-heading{
    max-width:700px;
    margin:0 auto 48px;
    text-align:center;
}

.dbus-kicker{
    margin-bottom:12px;
    color:var(--dbus-orange);
    font-size:11px;
    font-weight:900;
    letter-spacing:2px;
}

.dbus-section-heading h2{
    margin:0 0 12px;
    color:var(--dbus-blue-dark);
    font-size:clamp(32px,4vw,48px);
    line-height:1.1;
    font-weight:900;
    letter-spacing:-1.5px;
}

.dbus-section-heading p{
    margin:0;
    color:var(--dbus-muted);
    font-size:15px;
    line-height:1.7;
}

/* =========================================================
   SERVICES
========================================================= */

.dbus-services{
    position:relative;
    padding:105px 0;
    background:
        radial-gradient(circle at 10% 10%,rgba(22,140,255,.06),transparent 22%),
        #f5f9fd;
}

.dbus-services::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:1px;
    background:linear-gradient(90deg,transparent,#d8e6f2,transparent);
}

.dbus-service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.dbus-service-card{
    overflow:hidden;
    border:1px solid #e0eaf3;
    border-radius:24px;
    background:#fff;
    box-shadow:0 12px 35px rgba(3,29,59,.07);
    transition:.35s ease;
}

.dbus-service-card:hover{
    transform:translateY(-9px);
    border-color:#c4dced;
    box-shadow:0 25px 55px rgba(3,29,59,.13);
}

.dbus-service-image{
    position:relative;
    height:205px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

.dbus-trans-image{
    background:
        radial-gradient(circle at 75% 25%,rgba(67,213,255,.4),transparent 28%),
        linear-gradient(135deg,#052a52,#087bc1);
}

.dbus-damri-image{
    background:
        radial-gradient(circle at 75% 25%,rgba(255,138,24,.35),transparent 30%),
        linear-gradient(135deg,#192b3e,#596d80);
}

.dbus-school-image{
    background:
        radial-gradient(circle at 75% 25%,rgba(255,255,255,.3),transparent 28%),
        linear-gradient(135deg,#1668a4,#46bde0);
}

.dbus-service-image::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
}

.dbus-service-image::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:55px;
    background:linear-gradient(transparent,rgba(0,0,0,.25));
}

.dbus-mini-bus{
    position:relative;
    width:220px;
    height:92px;
    border-radius:18px 25px 12px 12px;
    background:linear-gradient(180deg,#f9fcff,#d7e2eb);
    box-shadow:0 16px 30px rgba(0,0,0,.25);
    z-index:3;
}

.dbus-mini-bus::before{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:25px;
    height:7px;
    background:linear-gradient(90deg,#063b73,#168cff,#43d5ff);
}

.dbus-mini-bus::after{
    content:"TRANS JANTHO";
    position:absolute;
    right:17px;
    bottom:9px;
    color:#063b73;
    font-size:7px;
    font-weight:900;
}

.dbus-mini-window{
    position:absolute;
    top:15px;
    width:43px;
    height:35px;
    border-radius:7px;
    border:2px solid #9db1c1;
    background:linear-gradient(135deg,#43d5ff,#063b73);
}

.dbus-mini-window:nth-child(1){left:14px}
.dbus-mini-window:nth-child(2){left:63px}
.dbus-mini-window:nth-child(3){left:112px}

.dbus-mini-wheel{
    position:absolute;
    bottom:-13px;
    width:31px;
    height:31px;
    border-radius:50%;
    background:#0b1725;
    border:5px solid #8397a9;
    z-index:4;
}

.dbus-mini-wheel:nth-last-child(2){left:35px}
.dbus-mini-wheel:last-child{right:35px}

.damri-bus{
    background:linear-gradient(180deg,#fff,#e7e7e7);
}

.damri-bus::before{
    background:linear-gradient(90deg,#243746,#536d7f,#ff8a18);
}

.damri-bus::after{
    content:"DAMRI";
    color:#263b4b;
}

.school-bus{
    background:linear-gradient(180deg,#fff,#f2c84b);
}

.school-bus::before{
    background:#e8a900;
}

.school-bus::after{
    content:"BUS SEKOLAH";
    color:#5e4700;
}

.dbus-image-label{
    position:absolute;
    left:18px;
    bottom:15px;
    z-index:6;
    padding:6px 10px;
    border-radius:7px;
    background:rgba(0,0,0,.35);
    color:#fff;
    font-size:9px;
    font-weight:900;
    letter-spacing:1.2px;
    backdrop-filter:blur(5px);
}

.dbus-service-content{
    padding:25px;
}

.dbus-status{
    display:inline-flex;
    padding:5px 10px;
    margin-bottom:11px;
    border-radius:50px;
    background:#e8f8ef;
    color:#159447;
    font-size:9px;
    font-weight:900;
    letter-spacing:1px;
}

.dbus-status-school{
    background:#fff4d9;
    color:#a36b00;
}

.dbus-service-content h3{
    margin:0 0 9px;
    color:var(--dbus-blue-dark);
    font-size:23px;
    font-weight:900;
}

.dbus-service-content p{
    min-height:48px;
    margin:0 0 19px;
    color:#718096;
    font-size:13px;
    line-height:1.65;
}

.dbus-service-route{
    display:flex;
    align-items:center;
    gap:10px;
    padding-top:17px;
    border-top:1px solid #e8eef4;
    color:#718096;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
}

.dbus-service-route strong{
    color:var(--dbus-orange);
    font-size:18px;
}

/* =========================================================
   SCHEDULE
========================================================= */

.dbus-schedule{
    position:relative;
    padding:110px 0;
    background:
        radial-gradient(circle at 10% 15%,rgba(67,213,255,.12),transparent 25%),
        radial-gradient(circle at 90% 80%,rgba(255,138,24,.08),transparent 25%),
        linear-gradient(135deg,#021a34,#063b73 55%,#052d56);
    overflow:hidden;
}

.dbus-schedule::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.07;
    background-image:
        linear-gradient(90deg,rgba(255,255,255,.8) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.8) 1px,transparent 1px);
    background-size:55px 55px;
}

.dbus-heading-light h2{
    color:#fff;
}

.dbus-heading-light p{
    color:rgba(255,255,255,.62);
}

/* =========================================================
   TICKET
========================================================= */

.dbus-ticket{
    position:relative;
    display:grid;
    grid-template-columns:145px 1fr 155px;
    align-items:center;
    min-height:145px;
    margin-bottom:18px;
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.13);
    transition:.3s ease;
}

.dbus-ticket:hover{
    transform:translateX(6px);
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.dbus-ticket::before,
.dbus-ticket::after{
    content:"";
    position:absolute;
    left:128px;
    width:25px;
    height:25px;
    border-radius:50%;
    background:#063b73;
    z-index:5;
}

.dbus-ticket::before{top:-12px}
.dbus-ticket::after{bottom:-12px}

.dbus-ticket-brand{
    align-self:stretch;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:20px;
    background:linear-gradient(145deg,#eaf6ff,#d6ecfb);
    color:#063b73;
    font-size:13px;
    font-weight:800;
    line-height:1.05;
    letter-spacing:1px;
    text-align:center;
}

.dbus-ticket-brand strong{
    margin-top:3px;
    color:#f07808;
    font-size:18px;
}

.dbus-ticket-brand.damri{
    background:linear-gradient(145deg,#eef1f4,#d6dde3);
    color:#33495b;
}

.dbus-ticket-brand.damri strong{
    color:#263b4b;
}

.dbus-ticket-brand.school{
    background:linear-gradient(145deg,#fff7dc,#ffebae);
    color:#7b5a00;
}

.dbus-ticket-brand.school strong{
    color:#b07900;
    font-size:15px;
}

.dbus-ticket-route{
    padding:23px 30px;
}

.dbus-ticket-label{
    display:block;
    margin-bottom:8px;
    color:#9aa8b6;
    font-size:9px;
    font-weight:900;
    letter-spacing:1.5px;
}

.dbus-route-big{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:8px;
    color:#122d4b;
    font-size:25px;
    font-weight:900;
}

.dbus-route-big strong{
    color:#ff8315;
    font-size:23px;
}

.dbus-ticket-meta{
    color:#8997a5;
    font-size:9px;
    font-weight:800;
    letter-spacing:.7px;
}

.dbus-ticket-time{
    align-self:stretch;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    border-left:1px dashed #cdd8e1;
    color:#8c9aa7;
    font-size:8px;
    font-weight:900;
    letter-spacing:1px;
}

.dbus-ticket-time strong{
    margin-top:5px;
    color:#063b73;
    font-size:32px;
    line-height:1;
    letter-spacing:-1px;
}

.dbus-ticket-time small{
    margin-top:4px;
    color:#ff7a08;
    font-size:9px;
    font-weight:900;
}

/* =========================================================
   SCHOOL TICKET
========================================================= */

.dbus-school-ticket .dbus-route-big{
    font-size:20px;
}

.dbus-school-route{
    margin-bottom:8px;
    color:#173553;
    font-size:16px;
    line-height:1.6;
    font-weight:800;
}

.dbus-school-route strong{
    color:#e98700;
}

/* =========================================================
   IMPORTANT INFO
========================================================= */

.dbus-important{
    display:flex;
    align-items:center;
    gap:17px;
    margin-top:30px;
    padding:20px 23px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:17px;
    background:rgba(255,255,255,.07);
    color:#fff;
}

.dbus-important-icon{
    width:38px;
    height:38px;
    flex:0 0 38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ff8a18;
    color:#fff;
    font-size:19px;
    font-weight:900;
}

.dbus-important strong{
    font-size:11px;
    letter-spacing:1px;
}

.dbus-important p{
    margin:4px 0 0;
    color:rgba(255,255,255,.6);
    font-size:12px;
}

/* =========================================================
   CTA
========================================================= */

.dbus-cta{
    position:relative;
    padding:75px 0;
    overflow:hidden;
    background:
        radial-gradient(circle at 90% 50%,rgba(67,213,255,.12),transparent 28%),
        linear-gradient(135deg,#eef7ff,#fff);
}

.dbus-cta::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    right:-300px;
    top:-250px;
    border:1px solid rgba(6,59,115,.08);
    border-radius:50%;
    box-shadow:
        0 0 0 70px rgba(6,59,115,.025),
        0 0 0 140px rgba(6,59,115,.018);
}

.dbus-cta .dbus-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.dbus-cta h2{
    margin:0 0 12px;
    color:#062c54;
    font-size:clamp(30px,4vw,48px);
    line-height:1.08;
    font-weight:900;
    letter-spacing:-1.5px;
}

.dbus-cta p{
    margin:0;
    color:#718096;
    font-size:14px;
    line-height:1.7;
}

.dbus-cta-mark{
    position:relative;
    padding:22px 28px;
    border:1px solid #d8e7f3;
    border-radius:17px;
    background:#fff;
    color:#063b73;
    font-size:18px;
    font-weight:900;
    letter-spacing:1px;
    box-shadow:0 12px 30px rgba(3,29,59,.07);
}

.dbus-cta-mark strong{
    display:block;
    color:#ff7b08;
    font-size:13px;
}

/* =========================================================
   ANIMATIONS
========================================================= */

.dbus-service-card,
.dbus-ticket{
    will-change:transform;
}

/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px){

    .dbus-hero{
        min-height:auto;
    }

    .dbus-hero-grid{
        grid-template-columns:1fr;
        min-height:auto;
        padding:55px 0 30px;
    }

    .dbus-hero-text{
        padding:30px 0 10px;
        text-align:center;
    }

    .dbus-hero-text p{
        margin-left:auto;
        margin-right:auto;
    }

    .dbus-hero-buttons,
    .dbus-hero-info{
        justify-content:center;
    }

    .dbus-hero-visual{
        height:470px;
    }

    .dbus-floating-top{
        right:8%;
    }

    .dbus-floating-bottom{
        left:8%;
    }

    .dbus-service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .dbus-service-card:last-child{
        grid-column:1/-1;
        max-width:calc(50% - 12px);
        width:100%;
        margin:auto;
    }

    .dbus-ticket{
        grid-template-columns:120px 1fr 130px;
    }

    .dbus-ticket::before,
    .dbus-ticket::after{
        left:108px;
    }

    .dbus-route-big{
        font-size:22px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px){

    .dbus-container{
        width:min(100% - 28px,1180px);
    }

    .dbus-hero{
        min-height:auto;
    }

    .dbus-hero-grid{
        padding:40px 0 15px;
    }

    .dbus-hero h1{
        font-size:42px;
        letter-spacing:-1.8px;
    }

    .dbus-hero p{
        font-size:14px;
        line-height:1.65;
    }

    .dbus-hero-buttons{
        flex-direction:column;
        align-items:stretch;
    }

    .dbus-btn{
        width:100%;
    }

    .dbus-hero-info{
        gap:20px;
    }

    .dbus-hero-visual{
        height:350px;
        min-height:350px;
    }

    .dbus-bus{
        width:350px;
        height:175px;
        border-radius:27px 40px 20px 20px;
        transform:translate(-48%,-40%) scale(.82);
    }

    @keyframes dbusFloat{
        0%,100%{transform:translate(-48%,-40%) scale(.82)}
        50%{transform:translate(-48%,-44%) scale(.82)}
    }

    .dbus-floating-top{
        top:20px;
        right:0;
        transform:scale(.85);
        transform-origin:right top;
    }

    .dbus-floating-bottom{
        bottom:45px;
        left:0;
        transform:scale(.85);
        transform-origin:left bottom;
    }

    .dbus-services,
    .dbus-schedule{
        padding:75px 0;
    }

    .dbus-section-heading{
        margin-bottom:32px;
    }

    .dbus-section-heading h2{
        font-size:34px;
    }

    .dbus-service-grid{
        grid-template-columns:1fr;
    }

    .dbus-service-card:last-child{
        grid-column:auto;
        max-width:none;
    }

    .dbus-service-image{
        height:185px;
    }

    .dbus-ticket{
        display:grid;
        grid-template-columns:90px 1fr;
        min-height:150px;
    }

    .dbus-ticket::before,
    .dbus-ticket::after{
        left:78px;
    }

    .dbus-ticket-brand{
        padding:12px 8px;
        font-size:10px;
    }

    .dbus-ticket-brand strong{
        font-size:13px;
    }

    .dbus-ticket-route{
        padding:18px 16px;
    }

    .dbus-route-big{
        gap:8px;
        font-size:18px;
    }

    .dbus-route-big strong{
        font-size:17px;
    }

    .dbus-ticket-meta{
        line-height:1.5;
    }

    .dbus-ticket-time{
        grid-column:2;
        min-height:55px;
        flex-direction:row;
        gap:8px;
        justify-content:flex-start;
        padding:0 16px;
        border-left:0;
        border-top:1px dashed #cdd8e1;
    }

    .dbus-ticket-time strong{
        margin:0;
        font-size:25px;
    }

    .dbus-ticket-time small{
        margin:0;
    }

    .dbus-school-route{
        font-size:13px;
    }

    .dbus-important{
        align-items:flex-start;
        padding:17px;
    }

    .dbus-cta{
        padding:55px 0;
    }

    .dbus-cta .dbus-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .dbus-cta-mark{
        width:100%;
        text-align:center;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media(max-width:420px){

    .dbus-hero h1{
        font-size:36px;
    }

    .dbus-badge{
        font-size:9px;
        letter-spacing:1.3px;
    }

    .dbus-hero-info{
        gap:13px;
    }

    .dbus-hero-info strong{
        font-size:19px;
    }

    .dbus-bus{
        transform:translate(-50%,-40%) scale(.67);
    }

    @keyframes dbusFloat{
        0%,100%{transform:translate(-50%,-40%) scale(.67)}
        50%{transform:translate(-50%,-44%) scale(.67)}
    }

    .dbus-floating-card{
        font-size:9px;
        padding:11px 13px;
    }

    .dbus-floating-bottom strong{
        font-size:19px;
    }

    .dbus-ticket{
        grid-template-columns:78px 1fr;
    }

    .dbus-ticket::before,
    .dbus-ticket::after{
        left:66px;
    }

    .dbus-ticket-brand{
        font-size:8px;
    }

    .dbus-ticket-brand strong{
        font-size:11px;
    }

    .dbus-route-big{
        font-size:16px;
    }

    .dbus-ticket-meta{
        font-size:8px;
    }

    .dbus-ticket-time{
        padding-left:12px;
    }
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

@media(prefers-reduced-motion:reduce){

    .dbus-page *,
    .dbus-page *::before,
    .dbus-page *::after{
        animation:none!important;
        transition:none!important;
    }
}
/* =========================================================
   STEP 2 — PREMIUM TRANS JANTHO HERO
========================================================= */

.dbus-hero{
    min-height:720px;
}

/* Efek garis jalan */
.dbus-hero::before{
    opacity:.18;
    background:
        linear-gradient(115deg,
            transparent 0 35%,
            rgba(255,255,255,.08) 35.2%,
            transparent 35.5%
        ),
        linear-gradient(25deg,
            transparent 0 60%,
            rgba(255,255,255,.06) 60.2%,
            transparent 60.5%
        );
    background-size:180px 180px;
}

/* Lingkaran teknologi */
.dbus-hero::after{
    width:850px;
    height:850px;
    right:-380px;
    top:-330px;
    border-color:rgba(67,213,255,.14);
}

/* =========================================================
   HERO TEXT
========================================================= */

.dbus-hero h1{
    text-shadow:
        0 3px 25px rgba(0,0,0,.18);
}

.dbus-hero p{
    max-width:560px;
}

/* =========================================================
   BUS SCENE
========================================================= */

.dbus-hero-visual{
    min-height:560px;
}

.dbus-bus-scene{
    perspective:1000px;
}

/* Cahaya di belakang bus */
.dbus-bus-scene::before{
    content:"";
    position:absolute;
    width:520px;
    height:260px;
    left:50%;
    top:48%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    background:rgba(67,213,255,.14);
    filter:blur(45px);
    animation:dbusBusLight 5s ease-in-out infinite;
}

@keyframes dbusBusLight{
    0%,100%{
        transform:translate(-50%,-50%) scale(.9);
        opacity:.55;
    }
    50%{
        transform:translate(-50%,-50%) scale(1.12);
        opacity:1;
    }
}

/* =========================================================
   ROAD
========================================================= */

.dbus-road{
    bottom:75px;
    height:6px;
    background:rgba(255,255,255,.18);
    box-shadow:
        0 18px 0 rgba(255,255,255,.035),
        0 -18px 0 rgba(255,255,255,.035);
}

.dbus-road::before{
    height:7px;
    top:0;
    background:repeating-linear-gradient(
        90deg,
        rgba(255,255,255,.8) 0 65px,
        transparent 65px 125px
    );
    animation:dbusRoadMove 2s linear infinite;
}

@keyframes dbusRoadMove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-125px);
    }
}

/* =========================================================
   PREMIUM BUS
========================================================= */

.dbus-bus{
    width:530px;
    height:255px;
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #edf4f9 45%,
            #c3d2de 100%
        );

    border-radius:42px 62px 27px 27px;

    box-shadow:
        0 35px 70px rgba(0,0,0,.35),
        0 0 45px rgba(67,213,255,.13),
        inset 0 -9px 0 rgba(3,29,59,.14);
}

/* Atap */
.dbus-bus-top{
    left:32px;
    right:60px;
    top:16px;
    height:19px;

    background:
        linear-gradient(
            90deg,
            #062d59,
            #087bd0,
            #43d5ff,
            #087bd0,
            #062d59
        );

    box-shadow:
        0 0 18px rgba(67,213,255,.35);
}

/* Kaca */
.dbus-bus-window{
    top:50px;
    width:96px;
    height:80px;

    border:3px solid #8fa9bc;

    background:
        linear-gradient(
            135deg,
            #2b668b,
            #06243f 60%,
            #0c587c
        );

    box-shadow:
        inset 0 0 20px rgba(67,213,255,.12);
}

/* Pantulan kaca */

.dbus-bus-window::after{
    width:150%;
    height:25px;
    top:20px;
    left:-30px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.25),
            transparent
        );

    transform:rotate(-27deg);

    animation:dbusGlass 4s ease-in-out infinite;
}

@keyframes dbusGlass{
    0%,70%,100%{
        opacity:.2;
        transform:translateX(-25px) rotate(-27deg);
    }

    40%{
        opacity:.7;
        transform:translateX(40px) rotate(-27deg);
    }
}

.window-one{
    left:34px;
}

.window-two{
    left:140px;
}

.window-three{
    left:246px;
}

/* Garis body */
.dbus-bus-body-line{
    top:140px;
    height:14px;

    background:
        linear-gradient(
            90deg,
            #052b55 0%,
            #0877c5 35%,
            #43d5ff 60%,
            #ff8a18 100%
        );

    box-shadow:
        0 2px 8px rgba(3,29,59,.18);
}

/* Depan bus */
.dbus-bus-front{
    right:0;
    top:47px;
    width:79px;
    height:116px;

    border-radius:14px 42px 17px 8px;

    background:
        linear-gradient(
            135deg,
            #e5edf3,
            #a5b8c7
        );

    box-shadow:
        inset 4px 0 0 rgba(255,255,255,.3);
}

/* Lampu depan */
.dbus-bus-front::before{
    content:"";
    position:absolute;
    right:11px;
    bottom:35px;

    width:22px;
    height:10px;

    border-radius:20px;

    background:#fff;

    box-shadow:
        0 0 8px #fff,
        0 0 20px rgba(255,255,255,.9);
}

/* Lampu orange */
.dbus-bus-front::after{
    right:10px;
    bottom:17px;

    width:32px;
    height:8px;

    background:#ff8a18;

    box-shadow:
        0 0 10px rgba(255,138,24,.8);
}

/* =========================================================
   BUS LOGO
========================================================= */

.dbus-bus-logo{
    right:101px;
    top:173px;

    padding:5px 9px;

    border-radius:7px;

    background:rgba(255,255,255,.55);

    box-shadow:
        0 4px 12px rgba(3,29,59,.08);

    color:#063b73;
}

/* =========================================================
   WHEELS
========================================================= */

.dbus-wheel{
    width:72px;
    height:72px;
    bottom:-35px;

    background:
        radial-gradient(
            circle,
            #8ea1b1 0 12px,
            #1a2b3b 13px 23px,
            #071421 24px
        );

    border:6px solid #8398aa;

    box-shadow:
        0 5px 15px rgba(0,0,0,.3);
}

.dbus-wheel::after{
    width:15px;
    height:15px;

    left:22px;
    top:22px;

    background:#dce7ef;

    box-shadow:
        0 0 6px rgba(255,255,255,.4);
}

/* =========================================================
   FLOATING INFORMATION
========================================================= */

.dbus-floating-card{
    border-color:rgba(255,255,255,.25);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.14),
            rgba(255,255,255,.05)
        );

    box-shadow:
        0 20px 45px rgba(0,0,0,.22),
        inset 0 1px 0 rgba(255,255,255,.15);
}

.dbus-floating-top::before{
    content:"●";
    margin-right:7px;
    color:#42e88b;
    text-shadow:0 0 10px #42e88b;
}

.dbus-floating-bottom{
    border-left:3px solid #ff8a18;
}

/* =========================================================
   HERO INFO
========================================================= */

.dbus-hero-info div{
    position:relative;
}

.dbus-hero-info div:not(:last-child)::after{
    content:"";
    position:absolute;
    width:1px;
    height:32px;
    right:-18px;
    top:2px;
    background:rgba(255,255,255,.15);
}

/* =========================================================
   MOBILE OVERRIDE
========================================================= */

@media(max-width:700px){

    .dbus-hero{
        min-height:auto;
    }

    .dbus-hero-visual{
        min-height:380px;
    }

    .dbus-bus{
        width:530px;
        height:255px;
    }

    .dbus-floating-top{
        top:10px;
    }

    .dbus-floating-bottom{
        bottom:30px;
    }
}

@media(max-width:420px){

    .dbus-hero-visual{
        min-height:330px;
    }

    .dbus-bus{
        width:530px;
        height:255px;
    }

    .dbus-floating-card{
        transform:scale(.75);
    }
}
 /* =========================================================
    STEP 3A — SMART ROUTE FILTER
 ========================================================= */

.dbus-route-filter{
    position:relative;
    z-index:10;
    max-width:980px;
    margin:-35px auto 50px;
}

.dbus-filter-title{
    margin-bottom:20px;
    text-align:center;
}

.dbus-filter-title span{
    display:inline-block;
    margin-bottom:7px;
    color:#43d5ff;
    font-size:10px;
    font-weight:900;
    letter-spacing:2px;
}

.dbus-filter-title h3{
    margin:0 0 6px;
    color:#fff;
    font-size:28px;
    font-weight:900;
}

.dbus-filter-title p{
    margin:0;
    color:rgba(255,255,255,.6);
    font-size:13px;
}

.dbus-filter-box{
    display:grid;
    grid-template-columns:1fr 60px 1fr 160px;
    align-items:end;
    gap:12px;
    padding:18px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:22px;
    background:rgba(255,255,255,.09);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 20px 45px rgba(0,0,0,.2);
}

.dbus-filter-field{
    display:flex;
    flex-direction:column;
    gap:7px;
}

.dbus-filter-field label{
    padding-left:3px;
    color:rgba(255,255,255,.55);
    font-size:9px;
    font-weight:900;
    letter-spacing:1.5px;
}

.dbus-filter-field select{
    width:100%;
    height:50px;
    padding:0 15px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:12px;
    outline:none;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-family:inherit;
    font-size:14px;
    font-weight:800;
    cursor:pointer;
    appearance:auto;
}

.dbus-filter-field select option{
    background:#063b73;
    color:#fff;
}

.dbus-filter-field select:focus{
    border-color:#43d5ff;
    box-shadow:0 0 0 3px rgba(67,213,255,.12);
}

.dbus-filter-arrow{
    width:46px;
    height:46px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(67,213,255,.25);
    border-radius:50%;
    background:rgba(67,213,255,.1);
    color:#43d5ff;
    font-size:22px;
    font-weight:800;
}

#dbusSearchRoute{
    height:50px;
    border:0;
    border-radius:12px;
    background:linear-gradient(135deg,#ff9b2f,#ee6900);
    color:#fff;
    font-family:inherit;
    font-size:11px;
    font-weight:900;
    letter-spacing:1px;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(238,105,0,.25);
    transition:.3s ease;
}

#dbusSearchRoute:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(238,105,0,.4);
}

#dbusSearchRoute:active{
    transform:translateY(0);
}

/* Hasil filter */
.dbus-route-result{
    display:none;
    margin:20px auto 0;
    padding:15px 20px;
    border:1px solid rgba(67,213,255,.18);
    border-radius:14px;
    background:rgba(67,213,255,.07);
    color:#fff;
    text-align:center;
    font-size:13px;
}

.dbus-route-result strong{
    color:#43d5ff;
}

/* =========================================================
   MOBILE
========================================================= */

@media(max-width:700px){

    .dbus-route-filter{
        width:calc(100% - 28px);
        margin:-15px auto 35px;
    }

    .dbus-filter-title h3{
        font-size:24px;
    }

    .dbus-filter-box{
        grid-template-columns:1fr;
        gap:10px;
        padding:15px;
    }

    .dbus-filter-arrow{
        transform:rotate(90deg);
        margin:2px auto;
    }

    #dbusSearchRoute{
        width:100%;
    }
}
@keyframes dbusTicketShow {
    from {
        opacity:0;
        transform:translateY(15px);
    }

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

.dbus-route-result{
    width:100%;
    margin-top:18px;
    padding:15px 20px;
    border:1px solid rgba(67,213,255,.2);
    border-radius:14px;
    background:rgba(67,213,255,.08);
    color:#fff;
    text-align:center;
    font-size:13px;
}

.dbus-route-result strong{
    color:#43d5ff;
}