/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 1
   Root • Reset • Body • Typography • Utility
   Kementerian Agama Kabupaten Indramayu
==========================================================*/

/* =========================
   IMPORT FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =========================
   ROOT COLOR
========================= */

:root{

    --primary:#0F5132;
    --primary-light:#198754;
    --primary-dark:#0A3622;

    --secondary:#20C997;

    --success:#198754;
    --warning:#FFC107;
    --danger:#DC3545;
    --info:#0DCAF0;

    --white:#FFFFFF;
    --light:#F8F9FA;
    --gray:#6C757D;
    --gray-light:#EEF3F8;
    --gray-border:#DEE2E6;
    --dark:#212529;

    --body-bg:#EEF3F8;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.12);

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:25px;

    --transition:.30s ease;

}

/* =========================
   RESET
========================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

*::before,
*::after{

    box-sizing:border-box;

}

/* =========================
   HTML
========================= */

html{

    scroll-behavior:smooth;

}

/* =========================
   BODY
========================= */

body{

    background:var(--body-bg);

    color:var(--dark);

    font-family:'Poppins',sans-serif;

    font-size:15px;

    line-height:1.7;

    overflow-x:hidden;

    min-height:100vh;

}

/* =========================
   CONTAINER
========================= */

.container{

    max-width:1200px;

}

/* =========================
   LINK
========================= */

a{

    color:var(--primary);

    text-decoration:none;

    transition:var(--transition);

}

a:hover{

    color:var(--primary-light);

    text-decoration:none;

}

/* =========================
   IMAGE
========================= */

img{

    max-width:100%;

    height:auto;

    display:block;

}

/* =========================
   BUTTON
========================= */

button{

    transition:var(--transition);

}

button:focus{

    outline:none;

    box-shadow:none;

}

/* =========================
   FORM
========================= */

input,
textarea,
select{

    font-family:'Poppins',sans-serif;

}

input:focus,
textarea:focus,
select:focus{

    outline:none;

    box-shadow:none;

}

/* =========================
   HEADING
========================= */

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:700;

    color:var(--primary);

    margin-bottom:.75rem;

}

h1{

    font-size:3rem;

}

h2{

    font-size:2.2rem;

}

h3{

    font-size:1.7rem;

}

h4{

    font-size:1.35rem;

}

h5{

    font-size:1.15rem;

}

h6{

    font-size:1rem;

}

/* =========================
   PARAGRAPH
========================= */

p{

    margin-bottom:1rem;

    color:#555;

}

/* =========================
   LIST
========================= */

ul,
ol{

    padding-left:1.2rem;

}

/* =========================
   TABLE
========================= */

table{

    width:100%;

}

/* =========================
   SELECTION
========================= */

::selection{

    background:var(--primary);

    color:#fff;

}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary-light);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary);

}

/* =========================
   SHADOW
========================= */

.shadow-soft{

    box-shadow:var(--shadow-sm);

}

.shadow-medium{

    box-shadow:var(--shadow);

}

.shadow-large{

    box-shadow:var(--shadow-lg);

}

/* =========================
   BORDER RADIUS
========================= */

.radius-sm{

    border-radius:var(--radius-sm);

}

.radius{

    border-radius:var(--radius);

}

.radius-lg{

    border-radius:var(--radius-lg);

}

/* =========================
   TRANSITION
========================= */

.transition{

    transition:var(--transition);

}

/* =========================
   BACKGROUND
========================= */

.bg-gradient-primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

}

.bg-soft{

    background:#F8FBFD;

}

/* =========================
   SPACING
========================= */

.py-80{

    padding-top:80px;
    padding-bottom:80px;

}

.mt-60{

    margin-top:60px;

}

.mb-60{

    margin-bottom:60px;

}

/* =========================
   HOVER
========================= */

.hover-up{

    transition:var(--transition);

}

.hover-up:hover{

    transform:translateY(-5px);

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    h1{

        font-size:2.3rem;

    }

    h2{

        font-size:1.9rem;

    }

}

@media(max-width:768px){

    body{

        font-size:14px;

    }

    h1{

        font-size:2rem;

    }

    h2{

        font-size:1.6rem;

    }

}

@media(max-width:576px){

    .container{

        padding-left:18px;

        padding-right:18px;

    }

    h1{

        font-size:1.8rem;

    }

    h2{

        font-size:1.45rem;

    }

}
/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 2
   Header • Topbar • Logo • Digital Clock
==========================================================*/

/* =========================
   TOPBAR
========================= */

.topbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(15,81,50,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.08);

    box-shadow:0 8px 30px rgba(0,0,0,.12);

    transition:all .35s ease;

}

/* =========================
   HEADER SAAT DISCROLL
========================= */

.topbar.scrolled{

    background:#0F5132;

    box-shadow:0 12px 35px rgba(0,0,0,.18);

}

.topbar .container{

    padding-top:14px;

    padding-bottom:14px;

}

/* =========================
   LOGO
========================= */

.logo-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--primary);

    font-size:26px;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

    transition:.30s;

}

.logo-icon:hover{

    transform:rotate(-8deg) scale(1.05);

}

/* =========================
   NAMA APLIKASI
========================= */

.logo-title{

    color:#fff;

    font-size:26px;

    font-weight:700;

    letter-spacing:.4px;

    line-height:1.2;

}

.logo-sub{

    color:#dff8e8;

    font-size:13px;

    margin-top:2px;

    letter-spacing:.3px;

}

/* =========================
   JAM DIGITAL
========================= */

#jamDigital{

    color:#fff;

    font-size:28px;

    font-weight:700;

    letter-spacing:1px;

    line-height:1;

}

#tanggalDigital{

    color:#dff8e8;

    font-size:13px;

    margin-top:5px;

}

/* =========================
   STATUS ONLINE
========================= */

.status-online{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:rgba(255,255,255,.12);

    padding:7px 14px;

    border-radius:30px;

    color:#fff;

    font-size:13px;

}

.status-online::before{

    content:"";

    width:10px;

    height:10px;

    border-radius:50%;

    background:#28e070;

    animation:pulseOnline 1.8s infinite;

}

@keyframes pulseOnline{

    0%{

        box-shadow:0 0 0 0 rgba(40,224,112,.7);

    }

    70%{

        box-shadow:0 0 0 10px rgba(40,224,112,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(40,224,112,0);

    }

}

/* =========================
   HEADER SHADOW
========================= */

.topbar::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:1px;

    background:rgba(255,255,255,.08);

}

/* =========================
   LOGO GROUP
========================= */

.logo-group{

    display:flex;

    align-items:center;

    gap:16px;

}

/* =========================
   RIGHT AREA
========================= */

.header-right{

    display:flex;

    align-items:center;

    gap:20px;

}

/* =========================
   ICON BUTTON
========================= */

.header-btn{

    width:42px;

    height:42px;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.30s;

}

.header-btn:hover{

    background:#20C997;

    transform:translateY(-3px);

    color:#fff;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .logo-title{

        font-size:22px;

    }

    #jamDigital{

        font-size:22px;

    }

}

@media(max-width:768px){

    .topbar .container{

        padding-top:10px;

        padding-bottom:10px;

    }

    .logo-icon{

        width:48px;

        height:48px;

        font-size:22px;

    }

    .logo-title{

        font-size:18px;

    }

    .logo-sub{

        font-size:11px;

    }

    #jamDigital{

        font-size:18px;

    }

    #tanggalDigital{

        font-size:11px;

    }

}

@media(max-width:576px){

    .logo-title{

        font-size:16px;

    }

    .logo-sub{

        display:none;

    }

    .header-right{

        gap:10px;

    }

    .status-online{

        display:none;

    }

}
/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 3
   Hero • Background • Glass Card • Animation
==========================================================*/

/* =========================
   HERO
========================= */

.hero{

    position:relative;

    overflow:hidden;

    min-height:620px;

    margin-top:88px;

    display:flex;

    align-items:center;

    background:linear-gradient(
        135deg,
        #0F5132 0%,
        #157347 35%,
        #198754 70%,
        #20C997 100%
    );

}

/* =========================
   BACKGROUND BUBBLE
========================= */

.hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-180px;

    right:-180px;

}

.hero::after{

    content:"";

    position:absolute;

    width:360px;

    height:360px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    left:-120px;

    bottom:-120px;

}

/* =========================
   HERO CONTAINER
========================= */

.hero .container{

    position:relative;

    z-index:10;

}

/* =========================
   BADGE
========================= */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.18);

    color:#fff;

    font-size:14px;

    font-weight:600;

    backdrop-filter:blur(12px);

    margin-bottom:25px;

}

.hero-badge i{

    color:#FFD54F;

}

/* =========================
   HERO TITLE
========================= */

.hero h1{

    color:#fff;

    font-size:56px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:25px;

}

.hero h1 span{

    color:#FFE082;

}

/* =========================
   HERO DESCRIPTION
========================= */

.hero p{

    color:#ECFFF3;

    font-size:18px;

    line-height:1.9;

    max-width:650px;

    margin-bottom:35px;

}

/* =========================
   HERO BUTTON
========================= */

.hero-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:15px 34px;

    border-radius:50px;

    background:#fff;

    color:#0F5132;

    font-weight:700;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}

.hero-btn:hover{

    background:#FFD54F;

    color:#0F5132;

    transform:translateY(-4px);

}

/* =========================
   HERO ICON
========================= */

.hero-icon{

    font-size:220px;

    color:rgba(255,255,255,.92);

    text-shadow:0 20px 45px rgba(0,0,0,.20);

}

/* =========================
   FLOATING ICON
========================= */

.float-animation{

    animation:floatHero 4s ease-in-out infinite;

}

@keyframes floatHero{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}

/* =========================
   GLASS CARD
========================= */

.glass{

    background:rgba(255,255,255,.16);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.22);

    border-radius:22px;

    padding:28px 20px;

    text-align:center;

    color:#fff;

    transition:.35s;

    height:100%;

}

.glass:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.22);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/* =========================
   GLASS ICON
========================= */

.glass i{

    font-size:40px;

    color:#FFD54F;

    margin-bottom:18px;

}

/* =========================
   GLASS TITLE
========================= */

.glass h6{

    color:#fff;

    font-size:18px;

    font-weight:600;

    margin-bottom:10px;

}

.glass p{

    color:#E8FFF1;

    font-size:14px;

    margin:0;

}

/* =========================
   DECORATION
========================= */

.hero-decoration{

    position:absolute;

    right:8%;

    bottom:8%;

    width:120px;

    height:120px;

    border-radius:50%;

    border:2px dashed rgba(255,255,255,.18);

    animation:rotateHero 18s linear infinite;

}

@keyframes rotateHero{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/* =========================
   SCROLL DOWN
========================= */

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:28px;

    animation:bounceHero 2s infinite;

}

@keyframes bounceHero{

    0%,20%,50%,80%,100%{

        transform:translate(-50%,0);

    }

    40%{

        transform:translate(-50%,-12px);

    }

    60%{

        transform:translate(-50%,-6px);

    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero{

        text-align:center;

        padding:90px 0;

        min-height:auto;

    }

    .hero h1{

        font-size:42px;

    }

    .hero p{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-icon{

        margin-top:50px;

        font-size:170px;

    }

}

@media(max-width:768px){

    .hero{

        margin-top:74px;

    }

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:16px;

    }

    .hero-icon{

        font-size:140px;

    }

    .glass{

        margin-bottom:20px;

    }

}

@media(max-width:576px){

    .hero{

        padding:70px 0;

    }

    .hero h1{

        font-size:30px;

    }

    .hero p{

        font-size:15px;

    }

    .hero-icon{

        font-size:110px;

    }

    .hero-badge{

        font-size:12px;

        padding:8px 18px;

    }

}
/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 4
   Search Card • Form • Button • Info Card • Loading
==========================================================*/

/* =========================
   SEARCH SECTION
========================= */

.search-section{

    position:relative;

    margin-top:-90px;

    z-index:100;

}

/* =========================
   SEARCH CARD
========================= */

.search-card{

    background:#fff;

    border-radius:28px;

    border:none;

    overflow:hidden;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    transition:.35s;

}

.search-card:hover{

    transform:translateY(-5px);

    box-shadow:0 30px 70px rgba(0,0,0,.15);

}

.search-card .card-body{

    padding:50px;

}

/* =========================
   SEARCH TITLE
========================= */

.search-title{

    color:var(--primary);

    font-size:32px;

    font-weight:700;

    margin-bottom:10px;

}

.search-subtitle{

    color:#6c757d;

    font-size:15px;

    line-height:1.8;

    margin-bottom:0;

}

/* =========================
   INPUT GROUP
========================= */

.input-group{

    overflow:hidden;

    border-radius:60px;

}

.input-group-text{

    border:none;

    background:#fff;

    color:var(--primary);

    padding-left:25px;

    padding-right:20px;

    font-size:20px;

    box-shadow:none;

}

/* =========================
   FORM CONTROL
========================= */

.form-control{

    height:62px;

    border:none;

    background:#f6f9fc;

    font-size:16px;

    padding-left:5px;

    color:#333;

    box-shadow:none;

}

.form-control:focus{

    background:#fff;

    box-shadow:0 0 0 .25rem rgba(25,135,84,.18);

}

.form-control::placeholder{

    color:#9aa4b2;

}

/* =========================
   BUTTON PREMIUM
========================= */

.btn-premium{

    height:62px;

    border:none;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    font-size:16px;

    font-weight:600;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.btn-premium:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(25,135,84,.30);

}

.btn-premium:active{

    transform:scale(.98);

}

/* Ripple */

.btn-premium::before{

    content:"";

    position:absolute;

    top:50%;

    left:50%;

    width:0;

    height:0;

    border-radius:50%;

    background:rgba(255,255,255,.25);

    transform:translate(-50%,-50%);

    transition:.5s;

}

.btn-premium:hover::before{

    width:320px;

    height:320px;

}

/* =========================
   ALERT
========================= */

.alert{

    border:none;

    border-radius:18px;

    font-size:15px;

}

.alert-warning{

    background:#fff8e1;

    color:#7a5a00;

}

/* =========================
   SEARCH INFO
========================= */

.search-info{

    margin-top:25px;

    background:#f8fbfc;

    border-radius:20px;

    padding:22px;

}

.search-info strong{

    color:var(--primary);

}

.search-info small{

    color:#777;

}

.search-info i{

    color:var(--primary-light);

    margin-right:8px;

}

/* =========================
   INFO CARD
========================= */

.info-card{

    background:#fff;

    border:none;

    border-radius:20px;

    padding:30px 25px;

    text-align:center;

    height:100%;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.14);

}

.info-card i{

    width:75px;

    height:75px;

    line-height:75px;

    border-radius:50%;

    background:rgba(25,135,84,.10);

    color:var(--primary);

    font-size:32px;

    margin-bottom:20px;

}

.info-card h6{

    color:var(--primary);

    font-size:18px;

    font-weight:700;

    margin-bottom:12px;

}

.info-card p{

    color:#666;

    font-size:14px;

    line-height:1.8;

    margin:0;

}

/* =========================
   BADGE
========================= */

.search-card .badge{

    font-size:13px;

    border-radius:50px;

    padding:10px 18px;

    font-weight:600;

}

/* =========================
   LOADING SCREEN
========================= */

#loadingBox{

    position:fixed;

    inset:0;

    display:none;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.82);

    backdrop-filter:blur(6px);

    z-index:999999;

}

.loading-card{

    width:260px;

    background:#fff;

    border-radius:22px;

    text-align:center;

    padding:35px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.loading-card h5{

    color:var(--primary);

    font-weight:600;

    margin-top:20px;

}

.loading-card small{

    color:#777;

}

.spinner-border{

    width:4rem;

    height:4rem;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .search-card .card-body{

        padding:35px;

    }

    .search-title{

        font-size:26px;

    }

}

@media(max-width:768px){

    .search-section{

        margin-top:-60px;

    }

    .search-card .card-body{

        padding:28px;

    }

    .search-title{

        font-size:24px;

    }

    .btn-premium{

        margin-top:12px;

    }

}

@media(max-width:576px){

    .search-card{

        border-radius:20px;

    }

    .search-card .card-body{

        padding:22px;

    }

    .search-title{

        font-size:22px;

    }

    .form-control{

        height:56px;

        font-size:15px;

    }

    .btn-premium{

        height:56px;

        font-size:15px;

    }

    .info-card{

        padding:25px 18px;

    }

    .loading-card{

        width:220px;

    }

}
/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 5
   Result Header • Status • Progress • Detail Card
==========================================================*/

/* =========================
   RESULT SECTION
========================= */

.result-section{

    padding:70px 0;

}

/* =========================
   RESULT CARD
========================= */

.result-card{

    background:#fff;

    border:none;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.result-card:hover{

    transform:translateY(-4px);

    box-shadow:0 22px 55px rgba(0,0,0,.12);

}

/* =========================
   RESULT HEADER
========================= */

.result-header{

    padding:35px 40px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    position:relative;

    overflow:hidden;

}

.result-header::after{

    content:"";

    position:absolute;

    right:-70px;

    top:-70px;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.result-title{

    font-size:28px;

    font-weight:700;

    margin-bottom:8px;

    color:#fff;

}

.result-subtitle{

    color:rgba(255,255,255,.85);

    margin:0;

    font-size:15px;

}

/* =========================
   TRACKING CODE
========================= */

.kode-tracking{

    display:inline-block;

    margin-top:18px;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    color:#fff;

    font-weight:600;

    letter-spacing:1px;

    backdrop-filter:blur(8px);

}

/* =========================
   STATUS BADGE
========================= */

.status-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:40px;

    font-weight:600;

    font-size:14px;

}

.status-proses{

    background:#FFF3CD;

    color:#856404;

}

.status-selesai{

    background:#D1E7DD;

    color:#0F5132;

}

.status-ditolak{

    background:#F8D7DA;

    color:#842029;

}

.status-menunggu{

    background:#E2E3E5;

    color:#41464B;

}

/* =========================
   CONTENT
========================= */

.result-content{

    padding:35px;

}

/* =========================
   PROGRESS
========================= */

.progress-area{

    margin-bottom:35px;

}

.progress-label{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    font-weight:600;

    color:#555;

}

.progress{

    height:14px;

    border-radius:20px;

    background:#E9ECEF;

    overflow:hidden;

}

.progress-bar{

    border-radius:20px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );

    animation:progressLoad 1.5s ease;

}

@keyframes progressLoad{

    from{

        width:0;

    }

}

/* =========================
   STATISTIC CARD
========================= */

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:25px;

    text-align:center;

    height:100%;

    border:1px solid #E9ECEF;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-5px);

    border-color:var(--primary-light);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.stat-card i{

    width:65px;

    height:65px;

    line-height:65px;

    border-radius:50%;

    background:rgba(25,135,84,.12);

    color:var(--primary);

    font-size:28px;

    margin-bottom:15px;

}

.stat-card h3{

    color:var(--primary);

    font-size:28px;

    margin-bottom:6px;

}

.stat-card p{

    margin:0;

    color:#666;

}

/* =========================
   DETAIL CARD
========================= */

.detail-card{

    background:#fff;

    border:1px solid #EDF1F5;

    border-radius:20px;

    padding:30px;

    margin-bottom:25px;

    transition:.35s;

}

.detail-card:hover{

    border-color:rgba(25,135,84,.25);

    box-shadow:0 12px 28px rgba(0,0,0,.08);

}

.detail-title{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--primary);

    font-size:20px;

    font-weight:700;

    margin-bottom:22px;

}

.detail-title i{

    width:45px;

    height:45px;

    line-height:45px;

    text-align:center;

    border-radius:50%;

    background:rgba(25,135,84,.12);

    color:var(--primary);

}

/* =========================
   DETAIL ITEM
========================= */

.detail-item{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    padding:14px 0;

    border-bottom:1px dashed #E9ECEF;

}

.detail-item:last-child{

    border-bottom:none;

}

.detail-label{

    color:#6C757D;

    font-weight:500;

    min-width:180px;

}

.detail-value{

    color:#212529;

    font-weight:600;

    text-align:right;

}

/* =========================
   NOTE BOX
========================= */

.note-box{

    background:#F8FBFC;

    border-left:5px solid var(--primary);

    border-radius:14px;

    padding:20px;

    color:#555;

    margin-top:25px;

}

/* =========================
   ACTION BUTTON
========================= */

.result-action{

    margin-top:30px;

}

.result-action .btn{

    border-radius:50px;

    padding:12px 28px;

    font-weight:600;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .result-header{

        padding:30px;

    }

    .result-content{

        padding:30px;

    }

}

@media(max-width:768px){

    .detail-item{

        flex-direction:column;

        gap:6px;

    }

    .detail-value{

        text-align:left;

    }

    .detail-label{

        min-width:auto;

    }

    .result-title{

        font-size:24px;

    }

}

@media(max-width:576px){

    .result-header{

        padding:24px;

    }

    .result-content{

        padding:22px;

    }

    .detail-card{

        padding:22px;

    }

    .stat-card{

        margin-bottom:18px;

    }

}
/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 6
   Timeline • Riwayat Status • Activity
==========================================================*/

/* =========================
   TIMELINE SECTION
========================= */

.timeline-section{

    margin-top:40px;

}

/* =========================
   TIMELINE CARD
========================= */

.timeline-card{

    background:#fff;

    border-radius:22px;

    padding:35px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    border:1px solid #edf1f5;

}

/* =========================
   TITLE
========================= */

.timeline-title{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:35px;

    color:var(--primary);

    font-size:24px;

    font-weight:700;

}

.timeline-title i{

    width:50px;

    height:50px;

    line-height:50px;

    text-align:center;

    border-radius:50%;

    background:rgba(25,135,84,.12);

    color:var(--primary);

    font-size:22px;

}

/* =========================
   TIMELINE
========================= */

.timeline{

    position:relative;

    margin-left:22px;

    padding-left:45px;

}

/* Garis */

.timeline::before{

    content:"";

    position:absolute;

    left:12px;

    top:0;

    bottom:0;

    width:4px;

    background:#dbe7df;

    border-radius:20px;

}

/* =========================
   ITEM
========================= */

.timeline-item{

    position:relative;

    margin-bottom:35px;

    animation:fadeTimeline .6s ease;

}

.timeline-item:last-child{

    margin-bottom:0;

}

@keyframes fadeTimeline{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* =========================
   ICON
========================= */

.timeline-icon{

    position:absolute;

    left:-45px;

    top:0;

    width:30px;

    height:30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:14px;

    border:4px solid #fff;

    box-shadow:0 5px 15px rgba(0,0,0,.15);

    z-index:2;

}

/* Status */

.timeline-icon.wait{

    background:#6c757d;

}

.timeline-icon.process{

    background:#0dcaf0;

}

.timeline-icon.success{

    background:#198754;

}

.timeline-icon.reject{

    background:#dc3545;

}

/* =========================
   CONTENT
========================= */

.timeline-content{

    background:#f8fbfc;

    border-radius:18px;

    padding:22px;

    border-left:5px solid var(--primary);

    transition:.30s;

}

.timeline-content:hover{

    background:#fff;

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/* =========================
   HEADER
========================= */

.timeline-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:12px;

}

.timeline-status{

    font-size:18px;

    font-weight:700;

    color:var(--primary);

}

.timeline-date{

    font-size:14px;

    color:#6c757d;

}

/* =========================
   BODY
========================= */

.timeline-body{

    color:#555;

    line-height:1.8;

    font-size:15px;

}

/* =========================
   PETUGAS
========================= */

.timeline-petugas{

    margin-top:18px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(25,135,84,.10);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

}

.timeline-petugas i{

    font-size:16px;

}

/* =========================
   LAST ITEM
========================= */

.timeline-item.active .timeline-icon{

    animation:pulseStatus 2s infinite;

}

@keyframes pulseStatus{

    0%{

        box-shadow:0 0 0 0 rgba(25,135,84,.50);

    }

    70%{

        box-shadow:0 0 0 14px rgba(25,135,84,0);

    }

    100%{

        box-shadow:0 0 0 0 rgba(25,135,84,0);

    }

}

/* =========================
   EMPTY TIMELINE
========================= */

.timeline-empty{

    text-align:center;

    padding:70px 20px;

    color:#999;

}

.timeline-empty i{

    font-size:70px;

    color:#d8dee3;

    margin-bottom:20px;

}

.timeline-empty h5{

    color:#6c757d;

    margin-bottom:10px;

}

.timeline-empty p{

    margin:0;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .timeline{

        padding-left:32px;

        margin-left:10px;

    }

    .timeline::before{

        left:8px;

    }

    .timeline-icon{

        left:-33px;

        width:24px;

        height:24px;

        font-size:11px;

    }

    .timeline-card{

        padding:25px;

    }

    .timeline-title{

        font-size:20px;

    }

    .timeline-header{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media(max-width:576px){

    .timeline-card{

        padding:20px;

        border-radius:18px;

    }

    .timeline-content{

        padding:18px;

    }

    .timeline-status{

        font-size:16px;

    }

    .timeline-body{

        font-size:14px;

    }

}
/* ==========================================================
   SIMPATI PENMAD
   TRACKING.CSS
   BAGIAN 7
   Modal • Footer • Back To Top • Print • Loading
==========================================================*/

/* =========================
   MODAL
========================= */

.modal-content{

    border:none;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(0,0,0,.18);

}

.modal-header{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    border:none;

    padding:22px 28px;

}

.modal-header .modal-title{

    color:#fff;

    font-size:22px;

    font-weight:700;

}

.modal-header .btn-close{

    filter:invert(1);

    opacity:1;

}

.modal-body{

    padding:30px;

    background:#fff;

}

.modal-footer{

    border:none;

    padding:20px 30px;

    background:#fafafa;

}

/* =========================
   MODAL DETAIL
========================= */

.modal-detail{

    display:flex;

    justify-content:space-between;

    padding:14px 0;

    border-bottom:1px dashed #E5E7EB;

}

.modal-detail:last-child{

    border-bottom:none;

}

.modal-label{

    width:200px;

    color:#6c757d;

    font-weight:600;

}

.modal-value{

    flex:1;

    color:#212529;

    font-weight:600;

}

/* =========================
   MODAL NOTE
========================= */

.modal-note{

    margin-top:25px;

    padding:20px;

    border-radius:15px;

    background:#F8FBFC;

    border-left:5px solid var(--primary);

}

/* =========================
   BUTTON PRINT
========================= */

.btn-print{

    background:var(--primary);

    color:#fff;

    border:none;

    border-radius:50px;

    padding:12px 28px;

    transition:.30s;

}

.btn-print:hover{

    background:var(--primary-dark);

    color:#fff;

    transform:translateY(-2px);

}

/* =========================
   BUTTON CLOSE
========================= */

.btn-close-modal{

    border-radius:50px;

    padding:12px 28px;

}

/* =========================
   FOOTER
========================= */

.footer{

    margin-top:80px;

    background:#0F5132;

    color:#fff;

    padding:50px 0 25px;

}

.footer-title{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:18px;

}

.footer p{

    color:rgba(255,255,255,.85);

}

.footer hr{

    border-color:rgba(255,255,255,.15);

    margin:30px 0;

}

.footer-copy{

    text-align:center;

    color:rgba(255,255,255,.70);

    font-size:14px;

}

.footer-contact{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

}

.footer-contact i{

    color:#20C997;

    font-size:18px;

    margin-top:4px;

}

.footer-contact span{

    color:#fff;

}

/* =========================
   SOCIAL ICON
========================= */

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.30s;

}

.footer-social a:hover{

    background:#20C997;

    transform:translateY(-4px);

}

/* =========================
   BACK TO TOP
========================= */

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

    box-shadow:0 12px 30px rgba(0,0,0,.20);

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}

/* =========================
   LOADING OVERLAY
========================= */

.loading-overlay{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(6px);

    z-index:999999;

    visibility:hidden;

    opacity:0;

    transition:.30s;

}

.loading-overlay.active{

    visibility:visible;

    opacity:1;

}

.loading-box{

    width:220px;

    background:#fff;

    border-radius:20px;

    text-align:center;

    padding:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.18);

}

.loading-box h6{

    margin-top:20px;

    color:var(--primary);

}

.loading-box p{

    margin:5px 0 0;

    color:#6c757d;

    font-size:14px;

}

/* =========================
   ANIMATION
========================= */

.fade-up{

    animation:fadeUp .6s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.zoom-in{

    animation:zoomIn .4s ease;

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* =========================
   PRINT
========================= */

@media print{

    body{

        background:#fff;

    }

    .topbar,
    .hero,
    .footer,
    .back-to-top,
    .btn,
    .modal,
    .loading-overlay{

        display:none !important;

    }

    .search-section{

        display:none;

    }

    .result-card{

        box-shadow:none;

        border:1px solid #ccc;

    }

    .timeline-card{

        box-shadow:none;

        border:1px solid #ccc;

    }

    .detail-card{

        page-break-inside:avoid;

    }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .modal-detail{

        flex-direction:column;

        gap:6px;

    }

    .modal-label{

        width:100%;

    }

    .footer{

        text-align:center;

    }

    .footer-contact{

        justify-content:center;

    }

    .footer-social{

        justify-content:center;

    }

}

@media(max-width:576px){

    .modal-body{

        padding:20px;

    }

    .modal-footer{

        padding:15px 20px;

    }

    .back-to-top{

        width:45px;

        height:45px;

        font-size:18px;

        right:15px;

        bottom:15px;

    }

}