/* =========================================
   1. VARIABLES & SETUP (LANDING PAGE SPECIFIC)
   ========================================= */
:root {
    /* --- 1. NEW IDENTITY PALETTE --- */
    --primary-dark: #095c41; 
    --primary: #0d835c;      
    --accent: #1bb17f;       
    
    /* --- TYPOGRAPHY COLORS --- */
    --text-dark: #0f172a;    
    --text-medium: #334155;
    --text-muted: #64748b;
    --white: #ffffff;

    /* --- MODERN VARIABLES --- */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-float: 0 15px 35px rgba(13, 131, 92, 0.1); 
    --shadow-glow: 0 0 20px rgba(13, 131, 92, 0.2);
    --ease-sophisticated: cubic-bezier(0.23, 1, 0.32, 1);
    --radius-pill: 100px;
    --radius-card: 24px;

    /* --- FONTS --- */
    --font-main: 'Plus Jakarta Sans', sans-serif;

    /* --- COMPATIBILITY VARIABLES (Agar Form di bawah tidak error) --- */
    --bg-body: #f8fafc;       /* Slate 50 */
    --bg-card: #ffffff;       /* Card Putih */
    --text-main: #0f172a;     /* Text Utama Gelap */
    --border-color: #e2e8f0;  /* Border Abu Terang */
}

/* --- RESET & DEFAULTS --- */
*, *::before, *::after {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;       /* Mencegah gepeng secara default */
    object-fit: cover;  /* Memastikan gambar "fill-in" area, bukan stretch */
    border-radius: var(--radius-card);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    scroll-behavior: smooth;
    
    /* Typography Base */
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-body);
    line-height: 1.6;
    font-weight: 400;
    
    /* Fluid Typography: Scales between 16px and 18px */
    font-size: clamp(16px, 1vw + 1rem, 18px); 
    
    /* Font Smoothing */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   2. TYPOGRAPHY (UI/UX Best Practices)
   ========================================= */

/* Headings: Tight, Geometric, & Bold */
h1, h2, h3, h4, h5, h6, 
.display-title, .title-section {
    font-weight: 800;
    line-height: 1.1; 
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Specific Sizes */
.display-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); 
    letter-spacing: -0.04em;
}
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

/* Body Text Paragraphs */
p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    max-width: 65ch; /* Readability Rule: Max 65 characters wide */
    
    /* Center the block if it wraps */
    margin-left: auto;
    margin-right: auto;
}

/* Utilities */
.lead {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-medium);
}

small, .small {
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

.btn {
    font-family: var(--font-main);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none; /* Modern buttons use Sentence case */
}

/* =========================================
   3. FLOATING NAVIGATION
   ========================================= */
.floating-nav-container {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 0 5%;
    pointer-events: none; /* Clicks pass through empty space */
    display: flex;
    justify-content: center;
    transition: all 0.4s ease;
}

.floating-nav {
    pointer-events: auto;
    width: 100%;
    max-width: 1200px;
    
    background: var(--primary-dark); 
    padding: 1.2rem 2rem; 
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-float);
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* Font Settings */
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Scrolled State (Compact) */
.floating-nav-container.scrolled {
    top: 15px;
}
.floating-nav-container.scrolled .floating-nav {
    padding: 0.8rem 2rem; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Logo */
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav-brand img {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    filter: brightness(0) invert(1); /* Force White Logo */
}

/* Desktop Links */
.nav-links-desktop a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0 1.5rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links-desktop a:hover {
    color: var(--accent);
}

/* Hamburger Toggle */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 6px;
    padding: 0;
    z-index: 100001;
}

.bar {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.4s var(--ease-sophisticated);
}
.bar.short { width: 18px; }

/* Hamburger Active Animation */
.menu-toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); width: 28px; }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.menu-toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); width: 28px; }


/* =========================================
   4. FULLSCREEN MENU OVERLAY
   ========================================= */
/* CONTAINER UTAMA */
.fullscreen-menu {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    z-index: 10000; /* Pastikan di atas navbar */
    
    /* State Awal: Hidden */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    
    /* Premium Glass Effect - Darker & Deeper */
    background: rgba(5, 20, 15, 0.96); /* Dark Green-Black yang sangat pekat */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* Transisi Halus */
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); /* Efek 'ease-out' yang mewah */
}

/* STATE AKTIF (Dibuka via JS) */
.fullscreen-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

/* [BARU] TOMBOL CLOSE (X) */
.menu-close-btn {
    position: absolute;
    top: 30px; right: 30px;
    width: 60px; height: 60px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
}

.menu-close-btn:hover {
    background: var(--ad-primary, #10b981); /* Gunakan warna hijau Asia Direct */
    border-color: var(--ad-primary, #10b981);
    transform: rotate(90deg); /* Animasi putar saat hover */
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

/* [BARU] DEKORASI WATERMARK BACKGROUND */
.menu-bg-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 15vw; /* Sangat besar */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); /* Sangat transparan */
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: -1;
}

/* MENU LIST STYLE */
.menu-list {
    list-style: none;
    padding: 0; margin: 0;
    text-align: center;
}

.menu-list li {
    margin: 10px 0;
    overflow: hidden; /* Penting untuk efek reveal */
}

/* LINK STYLE - HOLLOW TEXT EFFECT */
.menu-link {
    display: inline-block;
    font-size: 3.5rem; /* Font jauh lebih besar */
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-family: sans-serif; /* Sesuaikan dengan font utama website */
    letter-spacing: 2px;
    line-height: 1.1;
    
    /* Efek Teks Berlubang (Stroke) */
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: 0.3s;
}

/* DATA-TEXT DUPLICATE UNTUK EFEK FILL */
.menu-link::before {
    content: attr(data-text); /* Mengambil teks dari HTML */
    position: absolute;
    top: 0; left: 0;
    width: 0%; /* Mulai dari lebar 0 */
    height: 100%;
    
    /* Warna Solid saat Hover */
    color: var(--ad-primary, #10b981);
    -webkit-text-stroke: 0px transparent;
    
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid var(--ad-primary, #10b981); /* Aksen garis cursor */
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

/* HOVER STATE */
.menu-link:hover {
    -webkit-text-stroke: 1px rgba(16, 185, 129, 0.2);
}
.menu-link:hover::before {
    width: 100%; /* Isi penuh saat hover */
}

/* FOOTER KECIL */
.menu-footer {
    position: absolute;
    bottom: 40px;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}
.text-emerald { color: #10b981; }

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .menu-link { font-size: 2.2rem; } /* Kecilkan font di HP */
    .menu-close-btn { top: 20px; right: 20px; width: 50px; height: 50px; }
}
/* =========================================
   5. HERO SECTION & ANIMATIONS
   ========================================= */

   /* --- 5. HERO SECTION (Truck Shifted Right) --- */
/* --- 5. HERO SECTION --- */
.hero-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px; 
    /* HAPUS background-image dari sini */
}

/* BARU: Layer Khusus Background Truk */
.hero-bg {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2; /* Paling belakang */
    
    /* Pindahkan setting Background ke sini */
    background-image: 
        linear-gradient(90deg, 
            #f8fafc 0%,        
            #f8fafc 50%,                 
            rgba(248, 250, 252, 0.9) 65%, 
            rgba(248, 250, 252, 0) 100%   
        ),
        url('../img/hero-truck.avif');
    
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    
    /* Trik Scale: Agar pinggiran blur tidak terlihat putih */
    transform: scale(1.05);
    will-change: filter; /* Optimasi performa render browser */
    transition: filter 0.1s linear; /* Transisi halus */
}

.hero-decorations {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 1; /* Di bawah teks, tapi di atas background gambar */
    pointer-events: none; /* Supaya tidak menghalangi klik */
}

/* --- 1. SPEED LINES (Efek Angin/Cepat) --- */
.speed-line {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
    border-radius: 4px;
    transform: skewX(-20deg); /* Miring biar aerodinamis */
    animation: speedMove 3s infinite linear;
}

.line-1 { top: 20%; left: -10%; width: 200px; animation-duration: 4s; opacity: 0.1; }
.line-2 { top: 60%; left: -20%; width: 300px; animation-duration: 5s; animation-delay: 1s; opacity: 0.2; }
.line-3 { top: 85%; left: -15%; width: 150px; animation-duration: 3.5s; animation-delay: 2s; opacity: 0.1; }

@keyframes speedMove {
    0% { transform: translateX(0) skewX(-20deg); opacity: 0; }
    20% { opacity: 0.2; }
    50% { opacity: 0.4; }
    70% { opacity: 0.7; }
    100% { transform: translateX(120vw) skewX(-20deg); opacity: 0; }
}

/* --- 2. TECH DOTS (Efek Digital/Tracking) --- */
.tech-dot {
    position: absolute;
    width: 24px; height: 24px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatUp 6s infinite ease-in-out;
}

.dot-1 { bottom: 10%; left: 10%; animation-delay: 0s; }
.dot-2 { bottom: 20%; left: 40%; width: 28px; height: 28px; opacity: 0.1; animation-delay: 2s; }
.dot-3 { top: 30%; left: 30%; width: 12px; height: 12px; animation-delay: 4s; }

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* --- 3. TRUCK GLOW (Blending Light) --- */
/* Ini memberikan "aura" hijau halus di belakang truk agar tidak terlihat tempelan */
.truck-glow {
    position: absolute;
    top: 50%;
    right: -10%; /* Posisi di belakang truk */
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.466) 0%, transparent 70%);
    z-index: -1; /* Paling belakang */
}

/* RESPONSIVE TWEAK (Mobile) */
@media (max-width: 768px) {
    .hero-wrapper {
        /* Di HP, kita geser titik fokus agar kepala truk terlihat */
        background-position: 80% center; 
        background-image: 
            linear-gradient(180deg, 
                #f8fafc 0%, 
                rgba(248, 250, 252, 0.9) 60%, 
                rgba(248, 250, 252, 0.4) 100%
            ),
            url('../img/hero-truck.avif');
    }
}

/* Parallax Blobs */
.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
    animation: pulse 10s infinite alternate;
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: #a7f3d0; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
.blob-2 { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: var(--accent); border-radius: 60% 40% 30% 70% / 50% 30% 50% 40%; animation-delay: -5s; }

@keyframes pulse {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(20deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* FIX: Force Hero Section Text to Align Left */
.hero-content p, .footer-desc {
    margin-left: 0 !important;
    margin-right: auto;
    text-align: left;
}

/* Text Animations */
@keyframes fadeInUpSmooth {
    0% { opacity: 0; transform: translateY(40px); filter: blur(4px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes drawMarker {
    0% { width: 0%; }
    100% { width: 100%; }
}

.animate-title {
    opacity: 0; 
    animation: fadeInUpSmooth 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.2s;
}

.animate-desc {
    opacity: 0;
    animation: fadeInUpSmooth 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

.text-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; height: 15px; 
    background: var(--accent);
    opacity: 0.4;
    z-index: -1;
    transform: skewX(-15deg);
    
    width: 0%; 
    animation: drawMarker 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 1.2s;
}

/* =========================================
   6. STATS SECTION (REVISED & FIXED)
   ========================================= */

/* Mengangkat Box ke atas (Overlap Hero) */
.mt-n5 { 
    margin-top: -5rem; 
}

/* Container Utama (Pengganti .stats-box) */
.stats-container {
    /* IDENTITY BACKGROUND: Deep Dark Green (Diambil dari style lama) */
    background: rgba(1, 28, 22, 0.95) !important; 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; /* Lebih rounded modern */
    
    /* Shadow hijau halus */
    box-shadow: 0 25px 50px rgba(13, 131, 92, 0.25);
    
    position: relative;
    overflow: hidden;
    z-index: 20; /* Agar melayang di atas elemen lain */
}

/* Efek Cahaya Gradient di Pojok Kanan Atas */
.stats-container::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(13, 131, 92, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Typography Angka */
.stat-number {
    font-family: 'Plus Jakarta Sans', sans-serif; /* Sesuaikan font utama Anda */
    font-weight: 800; 
    line-height: 1;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* Simbol Plus/Persen (+) */
.text-accent {
    color: #f59e0b; /* Warna Emas/Kuning */
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* Item Wrapper & Hover Effect */
.stat-item {
    position: relative;
    z-index: 2;
    padding: 0.5rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-item:hover {
    transform: translateY(-5px); /* Efek naik saat di-hover */
}

/* Divider / Garis Pemisah Antar Kolom (Hanya di Desktop) */
@media (min-width: 768px) {
    
}


/* Service Cards */
/* =========================================
   7. SERVICES & BLOG CARDS (MODERN DECO STYLE)
   ========================================= */

/* --- SERVICE CARD UTAMA --- */
.card-service {
    position: relative;
    background: #ffffff;
    /* Border tipis transparan agar rapi */
    border: 1px solid rgba(13, 131, 92, 0.1); 
    border-radius: var(--radius-card);
    padding: 2.5rem 2rem;
    transition: all 0.5s var(--ease-sophisticated);
    height: 100%;
    
    /* PENTING: Overflow hidden agar dekorasi tidak keluar card */
    overflow: hidden; 
    z-index: 1;
}
    
/* DEKORASI 1: Glow Halus di Kanan Atas (Neon Mint) */
.card-service::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0; /* Default: Sembunyi */
    border-radius: 50%;
    transition: all 0.6s ease;
    z-index: -1; /* Di belakang teks */
}

/* DEKORASI 2: Blob Organik di Kiri Bawah (Dark Green) */
.card-service::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 150px; height: 150px;
    background: var(--primary);
    opacity: 0.03; /* Default: Sangat tipis terlihat */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Bentuk tidak beraturan */
    transition: all 0.6s ease;
    z-index: -1;
}

/* --- HOVER EFFECT --- */
.card-service:hover {
    transform: translateY(-10px);
    border-color: transparent;
    /* Shadow hijau lembut */
    box-shadow: 0 20px 40px rgba(13, 131, 92, 0.15); 
}

/* Saat Hover: Dekorasi 1 Muncul & Membesar */
.card-service:hover::before {
    opacity: 0.15;
    transform: scale(1.2);
}

/* Saat Hover: Dekorasi 2 Bergerak & Berubah Bentuk */
.card-service:hover::after {
    opacity: 0.1;
    bottom: -30px; left: -30px;
    transform: rotate(45deg);
}

/* --- ICON CONTAINER (GLASSMORPHISM) --- */
.icon-circle {
    width: 70px; height: 70px;
    /* Background gradient tipis */
    background: linear-gradient(135deg, rgba(13, 131, 92, 0.05) 0%, rgba(27, 177, 127, 0.1) 100%);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
    border: 1px solid rgba(13, 131, 92, 0.1);
    position: relative;
    z-index: 2;
}

.card-service:hover .icon-circle {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(13, 131, 92, 0.3);
}

/* --- BLOG CARDS (Tetap Simple & Clean) --- */
.blog-card {
    border: none;
    background: transparent;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: none;
}

.blog-card .overflow-hidden {
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

/* Overlay Gradient saat Hover Gambar Blog */
.blog-card .overflow-hidden::after {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(13, 131, 92, 0.4), transparent);
    opacity: 0;
    transition: 0.4s;
}

.blog-card:hover .overflow-hidden::after {
    opacity: 1;
}

.blog-card:hover .overflow-hidden {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 131, 92, 0.2);
}

.blog-card .card-body {
    padding: 1.5rem 0.5rem;
    background: transparent;
}

.blog-card .card-title a {
    background: linear-gradient(to right, var(--primary), var(--primary));
    background-size: 0% 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
    padding-bottom: 2px;
}

.blog-card:hover .card-title a {
    background-size: 100% 2px;
    color: var(--primary) !important;
}

/* CTA Box */
.cta-box {
    /* 1. Clean White Background */
    background: #ffffff;
    
    /* 2. Sophisticated Border */
    border: 1px solid rgba(13, 131, 92, 0.15); /* Identity Green tipis */
    border-radius: 32px; /* Rounded modern */
    padding: 5rem 2rem;
    
    /* 3. Soft Identity Glow */
    box-shadow: 0 20px 60px rgba(13, 131, 92, 0.08);
    
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: transform 0.4s ease;
}

/* Hover Effect: Sedikit terangkat */
.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(13, 131, 92, 0.12);
    border-color: rgba(13, 131, 92, 0.3);
}

/* Dekorasi Blob Halus di pojok (Opsional, agar tidak terlalu polos) */
/* ================= CTA SECTION (About Style Match) ================= */

/* Wrapper */
.cta-image-wrapper {
    position: relative;
    padding: 1rem;
}

/* Floating Glass Badge (CTA Version - Positioned Left) */
.cta-floating-card {
    position: absolute;
    bottom: 40px;
    left: -30px; /* Overlap Left side */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 2;
    animation: floatCardReverse 5s ease-in-out infinite;
}

/* Decoration Blob (CTA Version - Positioned Right) */
.blob-decoration-cta {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 180px; height: 180px;
    background: var(--accent); /* Menggunakan warna aksen yang lebih terang */
    opacity: 0.15;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: -1;
    animation: pulse 8s infinite alternate-reverse;
}

/* Animation Variant */
@keyframes floatCardReverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Mobile Fixes for CTA */
@media (max-width: 991px) {
    .cta-floating-card {
        left: 20px; /* Align inside on mobile */
        bottom: 20px;
        right: auto;
    }
}

/* Accordion */
.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: #f0fdf4;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

/* ================= ABOUT SECTION STYLES ================= */

/* Wrapper for Image to handle positioning */
.about-image-wrapper {
    position: relative;
    padding: 1rem; /* Space for the blob to peek out */
}

/* Floating Glass Badge on Image */
.about-floating-card {
    position: absolute;
    bottom: 40px;
    right: -20px; /* Overlap right side slightly */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

/* Small Icon Circle for the Badge */
.icon-circle-small {
    width: 45px; height: 45px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Decoration Blob (Green) */
.blob-decoration {
    position: absolute;
    top: -20px; left: -20px;
    width: 150px; height: 150px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Fixes for About Section */
@media (max-width: 991px) {
    .about-floating-card {
        right: 0; /* Align inside on mobile */
        bottom: 20px;
        left: 20px;
        width: fit-content;
    }
}

/* =========================================
   8. ORDER PROCESS SECTION
   ========================================= */
.process-number {
    width: 50px; /* Slightly smaller for 5-col layout */
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    border: 4px solid #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(13, 131, 92, 0.2);
}

/* =========================================
   13. ABSOLUTE GAP DECORATIONS (ZERO SPACE)
   Dekorasi artistik yang mengambang & tidak memakan tempat
   ========================================= */

/* CONTAINER JANGKAR (PENTING: Height 0) */
.gap-decoration {
    position: relative; /* Menjadi titik acuan koordinat */
    width: 100%;
    height: 0;          /* KUNCI: Tidak menambah tinggi halaman sama sekali */
    overflow: visible;  /* Membiarkan blob "tumpah" keluar area */
    z-index: 0;         /* Posisi di layer belakang */
    display: flex;
    justify-content: center; /* Agar mudah mengatur posisi tengah */
}

/* BASE STYLE UNTUK SEMUA BLOB */
.art-blob {
    position: absolute; /* KUNCI: Posisi absolut agar bebas */
    border-radius: 50%;
    filter: blur(60px);     /* Efek blur artistik modern */
    pointer-events: none;   /* Klik tembus (tidak menghalangi tombol/link) */
    z-index: -1;            /* Pastikan di belakang teks */
}

/* --- VARIASI BENTUK & POSISI --- */

/* 1. Blob Hijau Besar (Kiri Atas) - Untuk Gap Hero */
.blob-left-primary {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    top: -250px; /* Tarik ke atas agar mengisi gap */
    left: -150px;
    animation: floatBlob 10s infinite ease-in-out;
}

/* 2. Blob Aksen Kecil (Kanan Atas) - Untuk Gap Hero */
.blob-right-accent {
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.15;
    top: -150px;
    right: -50px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: floatBlob 8s infinite ease-in-out reverse;
}

/* 3. Blob Lonjong (Tengah) - Untuk Gap Bawah */
.blob-center-wide {
    width: 80%;
    height: 300px;
    background: linear-gradient(90deg, var(--primary-dark), var(--accent));
    opacity: 0.08;
    top: -150px; /* Posisi di tengah-tengah gap */
    border-radius: 100%;
    animation: pulseBlob 12s infinite alternate;
}

/* --- ANIMASI HALUS --- */
@keyframes floatBlob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes pulseBlob {
    0% { transform: scale(1); opacity: 0.08; }
    100% { transform: scale(1.1); opacity: 0.12; }
}

/* UTILITY: Pastikan Section Konten ada di atas Blob */
.z-relative {
    position: relative;
    z-index: 2; /* Lebih tinggi dari blob (z-index 0/-1) */
}

/* Connecting Lines for Desktop (5 Columns) */
@media (min-width: 992px) {
    /* Target the columns inside the 5-column row */
    .row-cols-lg-5 .col .process-step::after {
        content: '';
        position: absolute;
        top: 25px; /* Center relative to 50px circle (half of height) */
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #e2e8f0; /* Light gray line */
        z-index: 1;
    }

    /* Hide the line on the very last column */
    .row-cols-lg-5 .col:last-child .process-step::after {
        display: none;
    }
    
    /* Ensure the number background covers the line */
    .process-header {
        display: inline-block;
        padding-right: 15px;
        background: #f8fafc; /* Matches body background */
        position: relative;
        z-index: 2;
    }
}

/* =========================================
   9. FOOTER (Amoda Style)
   ========================================= */
footer {
    background-color: #011c16; /* Ultra Dark Deep Green */
    color: #ffffff;
    padding: 5rem 0 2rem 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    height: 35px; width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 350px;
    font-size: 0.9rem;
}

.footer-heading {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    text-transform: capitalize;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.8rem; }

.footer-links a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
}

.social-links { display: flex; gap: 1rem; }

.social-btn {
    width: 40px; height: 40px;
    background: #ffffff;
    color: #011c16;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
}

.copyright-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.copyright-link:hover { color: #ffffff; }


/* =========================================
   10. MOBILE & RESPONSIVE RULES (Consolidated)
   ========================================= */

@media (min-width: 992px) {
    /* Hide Hamburger on Desktop */
    .menu-toggle { display: none; }
}

@media (max-width: 991px) {
    /* Process Section Mobile */
    .process-step::after { display: none !important; }
    .process-step { text-align: center; margin-bottom: 2rem; }
    .process-header {
        display: flex; justify-content: center;
        background-color: transparent;
        padding-right: 0;
    }
    .title-section { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    /* Navbar Adjustments */
    .floating-nav-container { padding: 0 1rem; top: 20px; }
    
    .nav-brand img { height: 30px !important; }
    
    /* Force buttons in nav to stack */
    .floating-nav > div:last-child {
        flex-direction: column;
        gap: 5px !important;
    }
    
    /* Smaller CTA on Mobile */
    .floating-nav-container.scrolled .btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }

    .menu-link { font-size: 1.5rem; }

    /* Typography */
    .display-title { font-size: 2.5rem; }
    
    /* Stats Section */
   /* Target kolom yang BUKAN kolom terakhir */
    .col-md-3:not(:last-child) {
        position: relative;
    }

    .col-md-3:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;     /* Mulai dari 20% tinggi */
        height: 60%;  /* Tinggi garis 60% */
        width: 1px;
        background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
        pointer-events: none;
    }
    
    /* Footer */
    footer { padding: 3rem 0; }
    .footer-bottom { flex-direction: column-reverse; align-items: flex-start; }
    .footer-heading { margin-top: 1.5rem; }
}

/* =========================================
   FIX: FORM INPUT DARK MODE (For Landing Page)
   Mengatasi teks input yang tidak terlihat saat mode gelap
   ========================================= */

.form-control, 
.form-select,
.input-group-text {
    /* Gunakan variabel background & text kita */
    background-color: var(--bg-body); 
    color: var(--text-main);
    border: 1px solid var(--border-color);
}

/* Saat Input di-klik (Focus) */
.form-control:focus, 
.form-select:focus {
    background-color: var(--bg-card); /* Sedikit beda agar terlihat aktif */
    color: var(--text-main);          /* Pastikan teks tetap terang */
    border-color: var(--primary);     /* Border warna primary */
    box-shadow: 0 0 0 0.25rem rgba(13, 131, 92, 0.15); /* Shadow halus hijau */
}

/* Warna Placeholder (Teks bayangan contoh) */
.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Fix untuk input Disabled/Readonly */
.form-control:disabled, 
.form-control[readonly] {
    background-color: var(--bg-body);
    opacity: 0.6;
}