/* ============================================================
   FILE: custom-landing.css
   PROJECT: SIM ORMAWA UMPKU
   DESCRIPTION: Custom styles for Landing Page (Hero, About, Timeline, Story)
   ============================================================ */

/* --- 1. GLOBAL VARIABLES --- */
:root {
    --umpku-orange: #ff770f;
    --umpku-dark: #cc7306;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 119, 15, 0.2);
    --color-rgb-blue: 59, 130, 246;
    --color-rgb-green: 16, 185, 129;
    --color-rgb-orange: 245, 158, 11;
    --color-rgb-purple: 139, 92, 246;
}

/* ============================================================
   SECTION 1: HERO SLIDER (Intro)
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Gunakan min-height agar aman di mobile */
    background: #020617; /* Latar belakang lebih gelap/pekat */
    display: flex;
    align-items: center;
    overflow: hidden; /* Penting agar elemen floating tidak keluar */
    padding-top: 170px; /* Ruang untuk navbar */
}

/* --- 1. BACKGROUND & OVERLAY --- */
.hero-slider,
.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-slider {
    z-index: 0;
}

.slide-item {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    animation: kenBurnsDramatic 24s infinite linear;
}
.slide-item:nth-child(1) {
    animation-delay: 0s;
}
.slide-item:nth-child(2) {
    animation-delay: 8s;
}
.slide-item:nth-child(3) {
    animation-delay: 16s;
}

@keyframes kenBurnsDramatic {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    5% {
        opacity: 0.6;
    } /* Opasitas gambar lebih rendah agar gelap */
    33% {
        opacity: 0.6;
        transform: scale(1);
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient lebih dramatis, gelap di pinggir */
    background: radial-gradient(
        circle at center,
        rgba(2, 6, 23, 0.7) 0%,
        #020617 100%
    );
    z-index: 1;
    backdrop-filter: blur(3px);
}

/* --- 2. FLOATING ELEMENTS (ORBS & PARTICLES) --- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 1;
    animation: floatOrb 15s infinite ease-in-out alternate;
}
.orb-1 {
    width: 400px;
    height: 400px;
    background: #ff770f;
    top: -10%;
    right: -10%;
    animation-duration: 18s;
}
.orb-2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: -5%;
    left: -5%;
    animation-delay: -5s;
}
.orb-3 {
    width: 200px;
    height: 200px;
    background: #8b5cf6;
    top: 40%;
    right: 30%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(40px, -40px) rotate(20deg);
    }
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: riseUp 10s infinite linear;
}
.p-1 {
    width: 4px;
    height: 4px;
    left: 10%;
    bottom: -10px;
    animation-duration: 7s;
}
.p-2 {
    width: 6px;
    height: 6px;
    left: 30%;
    bottom: -20px;
    animation-delay: 2s;
}
.p-3 {
    width: 3px;
    height: 3px;
    left: 50%;
    bottom: -10px;
    animation-duration: 12s;
    animation-delay: 1s;
}
.p-4 {
    width: 5px;
    height: 5px;
    left: 70%;
    bottom: -30px;
    animation-duration: 9s;
    animation-delay: 3s;
}
.p-5 {
    width: 4px;
    height: 4px;
    left: 90%;
    bottom: -10px;
    animation-duration: 11s;
    animation-delay: 5s;
}

@keyframes riseUp {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

/* --- 3. MAIN GLASS WRAPPER (LAYOUT HYBRID) --- */
.hero-glass-wrapper {
    display: flex; /* Menggunakan Flexbox untuk layout kiri-kanan */
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    /* Style Glassmorphism yang LEBIH RINGAN & BERSIH */
    background: rgba(255, 255, 255, 0.03); /* Sangat transparan */
    backdrop-filter: blur(20px); /* Blur lebih kuat */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top-color: rgba(255, 255, 255, 0.2); /* Efek cahaya di atas */
    padding: 50px 50px;
    border-radius: 20px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1100px; /* Lebih lebar */
    margin: 0 auto;
}

/* --- LEFT CONTENT (TEXT) --- */
.hero-text-content {
    flex: 1; /* Mengambil sisa ruang */
    text-align: left;
    max-width: 600px;
}

.badge-glow {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 119, 15, 0.1);
    border: 1px solid rgba(255, 119, 15, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 119, 15, 0.2);
    gap: 5px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin: 20px 0;
    letter-spacing: -1px;
}

.text-gradient-orange {
    background: linear-gradient(to right, #ff770f, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typewriter-modern {
    font-size: 1.5rem;
    color: #cbd5e1;
    font-weight: 400;
    padding: 0;
}
.text-highlight {
    color: #ff770f;
    font-weight: 700;
    position: relative;
}
.text-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #ff770f;
    opacity: 0.5;
}

.hero-desc-modern {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 40px;
}
/* 1. Style untuk kata "Digitalisasi" (Besar & Tebal) */
.text-bold-xl {
    font-weight: 600 !important; /* Sangat Tebal */
    font-size: 1.5em !important; /* 1.5x lebih besar dari teks biasa */
    color: #94a3b8; /* Warna abu-abu muted */
    letter-spacing: 0.5px;
    line-height: 1;
}
/* 2. Container Typewriter agar sejajar */
.typewriter-modern {
    display: flex; /* Pastikan sejajar ke samping */
    align-items: center; /* Rata tengah secara vertikal */
    font-size: 1.5rem; /* Ukuran dasar */
    color: #cbd5e1;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Agar aman di layar HP */
}
.text-highlight {
    color: #ff770f; /* Warna Orange */
    font-weight: 700;
    margin-left: 5px; /* Jarak sedikit dari "Digitalisasi" */
}
.cursor {
    display: inline-block;
    width: 3px; /* Ketebalan kursor */
    height: 1.2em; /* Tinggi menyesuaikan huruf */
    background-color: #ff770f; /* Warna kursor orange */
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.btn-row-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Tombol Utama yang Menyala */
.btn-glow-primary {
    padding: 15px 35px;
    background: linear-gradient(135deg, #ff770f, #e65100);
    color: white !important;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    box-shadow:
        0 10px 25px -5px rgba(255, 119, 15, 0.5),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    gap: 15px;
}
.btn-glow-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(255, 119, 15, 0.7);
}
/* Efek kilatan cahaya lewat di tombol */
.btn-glow-primary::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20px;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(25deg);
    animation: btnShine 4s infinite;
}
@keyframes btnShine {
    0%,
    80% {
        left: -60%;
    }
    100% {
        left: 150%;
    }
}

.btn-outline-light {
    padding: 15px 35px;
    background: transparent;
    color: white !important;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    gap: 15px;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Stats Modern */
.hero-stats-modern {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    margin-top: 25px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.stat-box h3 {
    font-size: 24px;
    color: white;
    font-weight: 800;
    margin: 0;
}
.stat-box p {
    font-size: 13px;
    color: #94a3b8;
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- RIGHT CONTENT (VISUAL ILLUSTRATION) --- */
.hero-visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* Untuk efek 3D */
}

/* Membuat Ilustrasi Dashboard Melayang dengan CSS */
.floating-dashboard {
    position: relative;
    width: 400px;
    height: 300px;
    transform-style: preserve-3d;
    animation: hoverDashboard 6s infinite ease-in-out alternate;
}
@keyframes hoverDashboard {
    0% {
        transform: translateY(0) rotateX(5deg) rotateY(-5deg);
    }
    100% {
        transform: translateY(-20px) rotateX(0deg) rotateY(0deg);
    }
}

.dash-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}
/* Kartu Utama */
.card-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 20px;
    background: linear-gradient(
        135deg,
        rgba(30, 41, 59, 0.9),
        rgba(15, 23, 42, 0.9)
    );
}
.dash-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.red {
    background: #ef4444;
}
.yellow {
    background: #f59e0b;
}
.green {
    background: #22c55e;
}
.skeleton-line {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}
.skeleton-graph {
    height: 100px;
    background: linear-gradient(to top, rgba(255, 119, 15, 0.2), transparent);
    border-bottom: 2px solid #ff770f;
    position: relative;
}
.skeleton-graph::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff770f;
    box-shadow: 0 0 20px #ff770f;
}

/* Kartu Melayang Kecil */
.card-2,
.card-3 {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    font-size: 14px;
    color: white;
    font-weight: 600;
    white-space: nowrap;
}
.card-2 {
    top: -30px;
    right: -30px;
    animation: floatCard 4s infinite ease-in-out alternate-reverse;
}
.card-3 {
    bottom: -30px;
    left: -30px;
    animation: floatCard 5s infinite ease-in-out alternate;
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}
.icon-floating {
    font-size: 20px;
}
.text-orange {
    color: #ff770f !important;
}
.text-blue {
    color: #3b82f6 !important;
}

/* --- RESPONSIVE (PENTING) --- */
@media (max-width: 992px) {
    .hero-glass-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    .hero-text-content {
        max-width: 100%;
    }
    .hero-title-modern {
        font-size: 2.5rem;
    }
    .btn-row-modern {
        justify-content: center;
    }
    .hero-stats-modern {
        justify-content: center;
    }
    .hero-visual-content {
        display: none; /* Sembunyikan visual di tablet/HP agar rapi */
    }
    .orb {
        opacity: 0.3;
    } /* Kurangi intensitas orb di layar kecil */
}
@media (max-width: 576px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    .typewriter-modern {
        font-size: 1.2rem;
    }
    .btn-glow-primary,
    .btn-outline-light {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   SECTION 2: ABOUT US (Modern Cards & Gradients)
   ============================================================ */
#about {
    background-color: #f8fafc;
}

/* Text Gradient & Animation */
@keyframes lamp-glow {
    0% {
        filter: drop-shadow(0 0 2px rgba(255, 119, 15, 0.6))
            drop-shadow(0 0 5px rgba(255, 119, 15, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 5px rgba(255, 119, 15, 1))
            drop-shadow(0 0 15px rgba(242, 117, 34, 0.6))
            drop-shadow(0 0 30px rgba(255, 165, 0, 0.4));
    }
    100% {
        filter: drop-shadow(0 0 2px rgba(255, 119, 15, 0.6))
            drop-shadow(0 0 5px rgba(255, 119, 15, 0.4));
    }
}

.gradient-text {
    background: linear-gradient(135deg, #ff770f 0%, #cc7306 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    animation: lamp-glow 2.5s infinite alternate ease-in-out;
}

.gradient-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: #ff770f;
    border-radius: 2px;
}

.highlight-text {
    color: #cc7306;
    font-weight: 700;
    background: rgba(255, 119, 15, 0.12);
    padding: 2px 6px;
    border-radius: 4px;
}

.text-desc {
    color: #64748b;
    line-height: 1.8;
    font-size: 15px;
}

/* Modern Cards */
.modern-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    z-index: 1;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

/* Icons & Pulse Animation */
.modern-icon-wrp {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 26px;
    color: white;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--active-color), 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--active-color), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--active-color), 0);
    }
}

.modern-card:hover .modern-icon-wrp {
    animation: pulse-glow 1.5s infinite;
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #334155;
    margin-top: 15px;
    margin-bottom: 8px;
    display: block;
}

.card-desc {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Card Themes */
.theme-blue {
    --active-color: 59, 130, 246;
}
.theme-blue .modern-icon-wrp {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
}
.theme-blue:hover {
    border-bottom: 4px solid #2563eb;
}

.theme-green {
    --active-color: 16, 185, 129;
}
.theme-green .modern-icon-wrp {
    background: linear-gradient(135deg, #34d399, #059669);
}
.theme-green:hover {
    border-bottom: 4px solid #059669;
}

.theme-orange {
    --active-color: 245, 158, 11;
}
.theme-orange .modern-icon-wrp {
    background: linear-gradient(135deg, #fbbf24, #d97706);
}
.theme-orange:hover {
    border-bottom: 4px solid #d97706;
}

.theme-purple {
    --active-color: 139, 92, 246;
}
.theme-purple .modern-icon-wrp {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}
.theme-purple:hover {
    border-bottom: 4px solid #7c3aed;
}

/* ============================================================
   SECTION 3: WORKFLOW & STATS (Timeline & HUD)
   ============================================================ */
/* Timeline (Left) */
.timeline-wrap {
    position: relative;
    padding-left: 30px;
    border-left: 3px solid rgba(255, 119, 15, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
    border-color: var(--umpku-orange);
}

.timeline-dot {
    position: absolute;
    left: -41px;
    top: 25px;
    width: 20px;
    height: 20px;
    background: var(--umpku-orange);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--umpku-orange);
    border: 3px solid #fff;
}

.t-title {
    font-size: 18px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 5px;
    display: block;
}

.t-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* HUD Stats (Right) */
.hud-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 119, 15, 0.08);
    border: 1px solid rgba(255, 119, 15, 0.1);
}

.stat-row {
    margin-bottom: 25px;
}

.stat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: 700;
    color: #334155;
}

.custom-progress {
    height: 10px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff770f 0%, #cc7306 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 119, 15, 0.5);
}

.bar-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* ============================================================
   SECTION 4: OUR STORY (Glass Card & Slideshow)
   ============================================================ */
/* Text Styling */
#story {
    display: flex !important;
    align-items: center !important;
    min-height: 700px; /* Atur tinggi sesuai selera, bisa 100vh untuk full layar */
}
.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btn {
    background: linear-gradient(135deg, #ff770f 0%, #ea580c 100%);
    color: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 119, 15, 0.6);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 119, 15, 0.9);
}

/* Glass Card */
.glass-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 5;
    color: #fff;
}

/* Slideshow Background */
.bg-slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.bg-slideshow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    z-index: 1;
}

.bg-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 60s linear infinite 0s;
}

/* --- IMAGE URLS (Sesuaikan path ini dengan folder project Anda) --- */
/* Disarankan menaruh gambar di: public/assets/images/story/ */

.bg-slideshow li:nth-child(1) span {
    background-image: url("/assets/images/landingpage/DSC06079-min.JPG");
}
.bg-slideshow li:nth-child(2) span {
    background-image: url("/assets/images/landingpage/DSC06150-min.JPG");
    animation-delay: 6s;
}
.bg-slideshow li:nth-child(3) span {
    background-image: url("/assets/images/landingpage/DSC06442-min.JPG");
    animation-delay: 12s;
}
.bg-slideshow li:nth-child(4) span {
    background-image: url("/assets/images/landingpage/DSC06143-min.JPG");
    animation-delay: 18s;
}
.bg-slideshow li:nth-child(5) span {
    background-image: url("/assets/images/landingpage/DSC06079.JPG");
    animation-delay: 24s;
}
.bg-slideshow li:nth-child(6) span {
    background-image: url("/assets/images/landingpage/DSC06079.JPG");
    animation-delay: 30s;
}
.bg-slideshow li:nth-child(7) span {
    background-image: url("/assets/images/landingpage/DSC06079.JPG");
    animation-delay: 36s;
}
.bg-slideshow li:nth-child(8) span {
    background-image: url("/assets/images/landingpage/DSC06079.JPG");
    animation-delay: 42s;
}
.bg-slideshow li:nth-child(9) span {
    background-image: url("/assets/images/landingpage/DSC06065-min.JPG");
    animation-delay: 48s;
}
.bg-slideshow li:nth-child(10) span {
    background-image: url("/assets/images/landingpage/DSC06079.JPG");
    animation-delay: 54s;
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ============================================================
   SECTION 5: TESTIMONIAL REVAMP
   ============================================================ */

/* Background Section */
.testimonial-bg {
    background-color: #f8fafc; /* Abu-abu sangat muda */
    overflow: hidden;
}

/* Dekorasi Bulatan Blur di Background (Agar tidak flat) */
.bg-decoration-1,
.bg-decoration-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
}

.bg-decoration-1 {
    width: 300px;
    height: 300px;
    background: rgba(255, 119, 15, 0.15); /* Orange tipis */
    top: -50px;
    left: -100px;
}

.bg-decoration-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.1); /* Biru tipis */
    bottom: -100px;
    right: -100px;
}

/* Judul Kecil */
.text-orange {
    color: #ff770f;
}
.text-dark {
    color: #1e293b;
}
.text-lite {
    color: #64748b;
}
.small-text {
    font-size: 16px;
    margin-top: 5px;
}

/* Styles untuk Kartu Review */
.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); /* Shadow lembut */
    text-align: center;
    max-width: 800px;
    margin: 20px auto; /* Center posisi */
    position: relative;
    border-top: 5px solid #ff770f; /* Aksen garis atas orange */
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px); /* Efek naik dikit saat hover */
}

/* Ikon Kutip (Quote) */
.quote-icon {
    color: #cbd5e1; /* Warna abu-abu silver */
    margin-bottom: 20px;
}

/* Teks Review */
.review-text {
    font-size: 1.7rem;
    line-height: 1.8;
    color: #334155;
    font-style: italic;
    margin-bottom: 30px;
}

/* Profil Reviewer */
.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.r-img img {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f1f5f9; /* Ring border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.r-detail {
    text-align: left;
}

.r-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.2;
}

.r-role {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* Custom Dots Owl Carousel (Navigasi bulat di bawah) */
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #cbd5e1 !important;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px; /* Dot aktif jadi panjang */
    background: #ff770f !important;
}

/* ============================================================
   SECTION 6: TEAM REVAMP (Modern Cards)
   ============================================================ */

/* Layout Section */
.team-bg {
    background: #f8fafc; /* Putih bersih */
}

.mr-b-50 {
    margin-bottom: 50px;
}

.divider-orange {
    width: 60px;
    height: 4px;
    background: #ff770f;
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Grid Layout (Responsif) */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

/* Card Style */
.team-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    top: 0;
}

.team-card:hover {
    top: -10px; /* Naik saat hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

/* Image Wrapper */
.team-img-wrp {
    position: relative;
    overflow: hidden;
    height: 300px; /* Tinggi seragam untuk foto */
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.1); /* Zoom in dikit saat hover */
}

/* Social Media Overlay (Hidden by Default) */
.team-social {
    position: absolute;
    bottom: -50px; /* Sembunyi di bawah */
    left: 0;
    width: 100%;
    background: rgba(255, 119, 15, 0.9); /* Orange transparan */
    padding: 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0; /* Muncul ke atas */
}

.team-social a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.2s;
}

.team-social a:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Info Text */
.team-info {
    padding: 25px 20px;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 0.9rem;
    color: #ff770f; /* Orange UMPKU */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================================
   SECTION 7: MODERN FOOTER (LIGHT VERSION)
   ============================================================ */

/* Base Footer Styling */
.modern-footer-light {
    background-color: #f8fafc; /* Warna Off-White (Abu sangat muda) */
    color: #475569; /* Teks abu-abu gelap */
    padding-top: 60px;
    padding-bottom: 30px;
    position: relative;
    font-size: 15px;
    border-top: 1px solid #e2e8f0; /* Border halus pemisah section */
}

/* Garis Aksen Oranye di Atas */
.footer-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff770f 0%, #f9fafb 100%);
}

/* Typography Colors */
.text-body {
    color: #64748b;
}
.text-muted {
    color: #94a3b8;
}
.text-dark {
    color: #1e293b;
}
.bold-2 {
    font-weight: 600;
}

/* Logo Teks */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a; /* Hitam kebiruan */
    margin: 0;
    letter-spacing: -0.5px;
}

/* Judul Kolom */
.f-title-light {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a; /* Hitam tegas */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.f-title-light::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ff770f;
    border-radius: 2px;
}

/* Links List */
.f-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
}

.f-list-light li {
    margin-bottom: 12px;
}

.f-list-light li a {
    color: #64748b; /* Abu medium */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
}

.f-list-light li a:hover {
    color: #ff770f;
    transform: translateX(5px);
}

/* Social Buttons (Card Style) */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: #ffffff; /* Kotak putih */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #64748b;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Bayangan halus */
}

.social-btn:hover {
    background: #ff770f;
    color: #fff;
    border-color: #ff770f;
    box-shadow: 0 5px 15px rgba(255, 119, 15, 0.3);
    transform: translateY(-3px);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box-light {
    width: 35px;
    height: 35px;
    background: #fff0e3; /* Orange sangat pudar */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-icon {
    color: #ff770f;
    font-size: 16px;
}

.hover-orange {
    transition: color 0.3s;
}
.hover-orange:hover {
    color: #ff770f !important;
}

/* Newsletter Form (Light) */
.form-light {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #334155 !important;
    border-radius: 8px !important;
    padding-right: 50px !important;
    height: 45px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.form-light:focus {
    border-color: #ff770f !important;
    box-shadow: 0 0 0 3px rgba(255, 119, 15, 0.1) !important;
}

.btn-send {
    position: absolute;
    right: 5px;
    top: 5px;
    height: 35px;
    width: 35px;
    background: #ff770f;
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-send:hover {
    background: #e66000;
}

/* Divider & Copyright */
.f-divider-light {
    border-color: #e2e8f0;
    margin: 30px 0 20px 0;
}

.copyright-wrp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Utility */
.fs14 {
    font-size: 14px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mr-5 {
    margin-right: 5px;
}
