:root {
    --primary: #dd973b;
    --dark: #0d1b2a;
    --text: #333;
    --header-mobile: 95px;
    --header-desktop: 80px;
    --max-width: 1200px; /* Batas lebar konten desktop */
}


/* Container Utama Tombol WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Hijau WhatsApp */
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    /* Animasi Berdenyut */
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antara SVG dan Teks */
}

.whatsapp-float span {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Efek Hover */
.whatsapp-float:hover {
    transform: translateY(-5px);
    background-color: #1ebea5; /* Hijau lebih gelap saat di-hover */
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* Definisi Animasi Pulse */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Sembunyikan teks di layar HP yang sangat kecil (opsional) */
@media (max-width: 480px) {
    .whatsapp-float span {
        display: flex; /* Hanya tampilkan logo di HP kecil */
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

/* Container Global - Gunakan ini di semua section agar sejajar */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Penyesuaian Baris di Mobile */
.logo {
    display: flex;
    align-items: center;
    gap: 8px; /* Ini akan memberi jarak antara ANNISA dan JAYA */
    font-weight: 800;
    font-size: 1.5rem;
    white-space: nowrap;
}

/* Jarak antar elemen di baris atas */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px; /* Jarak antara logo dan tombol telpon */
}
@media (min-width: 992px) {
    /* Tinggi header desktop yang lebih lega */
    .main-header { 
        height: 80px; 
        display: flex; 
        align-items: center; 
    }

    /* Memastikan Logo dan Menu Navigasi berjauhan (kiri & kanan) */
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px; /* Jarak minimal antara kelompok logo dan menu */
    }

/* Pastikan logo memiliki flex untuk mengatur spasi internal */
.logo {
    display: flex;
    align-items: center;
    gap: 8px; /* Ini akan memberi jarak antara ANNISA dan JAYA */
    font-weight: 800;
    font-size: 1.5rem;
    white-space: nowrap;
}

/* Jarak antar elemen di baris atas */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px; /* Jarak antara logo dan tombol telpon */
}

@media (min-width: 992px) {
    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* Jika ingin menu di kanan dan logo-tombol di kiri, 
           tambahkan gap di sini */
        gap: 50px; 
    }

    /* Memastikan tombol tidak terlalu menempel pada navigasi */
    .btn-quick-call {
        margin-right: 20px;
        padding: 10px 20px;
         background: #2c41f7 !important
    }
}
    /* Navigasi menu bergeser ke kanan */
    .nav-scroll-container {
        overflow: visible;
        width: auto;
    }

    /* Memberi spasi antar teks menu (Beranda, Layanan, dll) */
    .nav-tabs {
        display: flex;
        gap: 25px; /* Jarak antar link menu */
        padding: 0;
    }

    .nav-tabs li a {
        padding: 10px 0;
        font-size: 1rem;
    }
}

.logo span { color: var(--primary); }


/* Container Logo agar gambar dan teks sejajar */
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Jarak antara gambar logo dan teks */
}

/* Mengecilkan Gambar Logo */
.logo img {
    height: 45px; /* Sesuaikan angka ini (misal 40px - 50px) agar pas dengan tinggi menu */
    width: auto;  /* Menjaga rasio gambar agar tidak gepeng */
    object-fit: contain;
    display: block;
}

/* Penyesuaian Header agar tidak terlalu tinggi */
@media (min-width: 992px) {
    .main-header {
        padding: 10px 0; /* Memberi ruang napas atas-bawah yang pas */
    }
    
    .nav-top {
        gap: 20px;
    }
}
.btn-quick-call {
    background: #2c41f7;
    color: white;
    padding: 6px 14px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: 0.3s;
}

/* Navigasi Baris Kedua (Scrollable di Mobile) */
.nav-scroll-container {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
}

.nav-scroll-container::-webkit-scrollbar { display: none; } /* Sembunyikan scrollbar */

.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 10px;
}

.nav-tabs li a {
    display: inline-block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
}

.nav-tabs li a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Animasi Items */
.nav-item-animate {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.5s ease;
}

.nav-item-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* State saat Scroll */
.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Penyesuaian Desktop */
@media (min-width: 992px) {
    body { padding-top: var(--header-desktop); }
    
    .main-header { height: var(--header-desktop); display: flex; align-items: center; }
    
    .nav-top { border-bottom: none; width: auto; }
    
    .nav-scroll-container { flex-grow: 1; display: flex; justify-content: flex-end; }
    
    .nav-tabs { gap: 10px; }
}


/* Hero Section */



/* Container Utama */
.hero { 
    padding: 120px 0 80px; /* Padding atas lebih besar agar tidak mentok header */
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%); 
    min-height: 80vh; /* Memastikan hero punya tinggi yang cukup */
    display: flex;
    align-items: center;
}

.hero-wrapper { 
    display: flex; 
    align-items: center; 
    gap: 60px; /* Jarak lebih lebar antara teks dan foto */
}

/* Mengatur Teks */
.hero-text { 
    flex: 1.2; /* Teks diberi ruang sedikit lebih lebar dari gambar */
}

.hero h1 { 
    font-size: 3.8rem; /* Sedikit lebih besar untuk desktop */
    font-weight: 800;
    letter-spacing: -1px;
}

/* Mengatur Gambar agar Proporsional */
.hero-image { 
    flex: 0.8; /* Gambar mengambil porsi lebih kecil agar tidak menutupi teks */
    display: flex;
    justify-content: flex-end;
}

.hero-image img { 
    width: 100%; 
    max-width: 550px; /* Membatasi lebar maksimal foto di desktop */
    height: 450px;    /* Mengunci tinggi foto agar sejajar dengan tinggi blok teks */
    object-fit: cover; /* Foto tetap rapi (tidak gepeng) meski ukurannya dikunci */
    border-radius: 30px; 
    box-shadow: 0 30px 60px rgba(0, 97, 242, 0.15); /* Bayangan biru tipis yang modern */
}

/* Responsif untuk layar tablet/kecil */
@media (max-width: 992px) {
    .hero-wrapper { 
        flex-direction: column; /* Teks di atas, gambar di bawah */
        text-align: center;
    }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .hero-image img { height: auto; max-width: 100%; }
}




.badge {color: #ffffff; background: #2600ff; ; padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin: 20px 0; color: #0d1b2a; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.1rem; color: #555; margin-bottom: 30px; }
.hero-btns { display: flex; gap: 15px; }
.btn-primary { background: #56ff13; color: rgb(0, 0, 0); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: 0.3s; }
.btn-secondary { border: 2px solid var(--primary); color: var(--primary); padding: 15px 30px; border-radius: 5px; text-decoration: none; font-weight: bold; transition: 0.3s; }




.layanan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.maskot-animate:hover {
    transform: scale(1.05) rotate(2deg);
}






/* Stats Card */
.stats { display: flex; justify-content: space-around; background: white; padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-top: -50px; position: relative; z-index: 10; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2rem; color:  #0026ff; }
.stat-item p { font-size: 0.9rem; color: #777; }

/* Container Utama */
.services { 
    padding: 100px 0; 
    background: url('images/gambar1.webp') no-repeat center center/cover;
}


.section-header {
    padding: 5px 15px; border-radius: 20px;
    background: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {

    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px; /* Agar teks deskripsi tidak terlalu lebar dan enak dibaca */
    margin: 0 auto;
}


/* Pengaturan Grid */
.grid-services { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}

/* Kartu Layanan dengan Aksen Warna */
.service-card { 
    background: #ffffff; 
    padding: 40px; 
    border-radius: 20px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    position: relative; 
    border: 1px solid #edf2f7;
    overflow: hidden; /* Untuk memotong efek dekorasi di pojok */
}

/* Efek Garis Warna di Bagian Atas Kartu */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0061f2, #60a5fa); /* Gradien Biru Profesional */
    opacity: 0;
    transition: 0.3s;
}

.service-card:hover { 
    transform: translateY(-15px); /* Lebih elegan daripada scale */
    box-shadow: 0 25px 50px rgba(0, 97, 242, 0.15); /* Bayangan dengan rona biru */
    border-color: #0061f2;
}

.service-card:hover::before {
    opacity: 1;
}

/* Ikon dengan Background Lembut */
.service-card .icon { 
    width: 70px;
    height: 70px;
    background: rgba(0, 97, 242, 0.05); /* Lingkaran transparan di belakang ikon */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2.5rem; 
    margin-bottom: 25px; 
    transition: 0.3s;
}

.service-card:hover .icon {
    background: #0061f2;
    color: #ffffff; /* Ikon berubah jadi putih saat di-hover */
}

/* Tipografi */
.service-card h3 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
}

.cta-section {
    background: url('images/Background.webp') no-repeat center center/cover;
    position: relative;
    padding: 80px 0;
    color: white;
}

/* Lapisan hitam transparan di atas gambar */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2; /* Memastikan teks di atas overlay */
}

/* Update Sesi Keunggulan dengan Background Foto */
.features-section {
    padding: 0; /* Padding diatur oleh overlay */
    
    /* GANTI INI DENGAN PATH FOTO ARMADA ANDA */
    background: url('images/gambar2.webp') no-repeat center center/cover;
    
    background-attachment: fixed; /* Membuat efek paralaks (background diam saat di-scroll) - ELEGAN */
    position: relative;
    overflow: hidden;
}

/* Lapisan Overlay Gelap agar Teks Putih Terbaca */
.features-overlay {
    background: rgba(13, 27, 42, 0.9); /* Overlay Gelap (Hitam-Biru Tua) dengan transparansi 90% */
    padding: 100px 0; /* Memberi ruang napas atas-bawah yang lega */
    width: 100%;
}

/* Tipografi Judul agar Kontras */
.sub-title {
    color: var(--primary); /* Biru brand Anda */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.title-light {
    color: #ffffff; /* Judul menjadi PUTIH */
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 50px 0;
    text-align: center;
}

/* Mengatur Grid Kartu */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Kartu Keunggulan yang Lebih Modern */
.feature-card {
    background: #ffffff; /* Kartu tetap putih agar teks di dalamnya terbaca jelas */
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Bayangan sedikit lebih kuat di atas background gelap */
}

/* Efek Hover Elegan */
.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 97, 242, 0.2); /* Bayangan rona biru brand */
    border-color: var(--primary);
}

.f-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.feature-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .features-section {
        background-attachment: scroll; /* Paralaks dimatikan di mobile agar lancar */
    }
    .title-light {
        font-size: 2rem;
    }
}

/* Process Steps */
.process-section { padding: 80px 0; background: #0d1b2a; color: white; text-align: center; }
.process-wrapper { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 50px; }
.step { flex: 1; position: relative; }
.step-number { width: 50px; height: 50px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-weight: bold; font-size: 1.2rem; }
.step-line { width: 50px; height: 2px; background: rgba(255,255,255,0.2); margin-top: -50px; }

@media (max-width: 768px) {
    .process-wrapper { flex-direction: column; }
    .step-line { display: none; }
}



/* Hero Area Background */
.area-hero {
    background: url('images/gambar2.webp') no-repeat center center/cover;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
}

.area-overlay {
    background: rgba(255, 255, 255, 0.85); /* Overlay gelap agar teks terbaca */
    width: 100%;
    padding: 80px 0;
}

.badge-gold {
    color: #000000;
   
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.title-light {
    color: #000000;
    font-size: 2.5rem;
    margin: 20px 0 40px;
}

/* Tag Efek Kaca (Glassmorphism) */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tag-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    color: rgb(0, 0, 0);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(49, 49, 49, 0.2);
    font-weight: 500;
    transition: 0.3s ease;
}

.tag-glass:hover {
    background: var(--primary);
    transform: scale(1.1);
    border-color: var(--primary);
}

/* Map Card */
.map-section {
    padding-bottom: 80px;
    margin-top: -60px; /* Membuat peta sedikit naik menimpa background atas */
    position: relative;
    z-index: 5;
}

.map-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    text-align: center;
}

.map-card h3 {
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}


/* Layout Styling */
.info-section { padding: 80px 0; background: #fff; }
.grid-2 { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: start; }

.sub-title { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; display: block; margin-bottom: 10px; }





.galeri-section {
    padding: 80px 0;
    background: #ffffff;
}

/* Mengatur Grid Galeri */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.galeri-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar gambar tidak gepeng */
    transition: 0.5s;
}

/* Efek Hover: Gambar membesar dan muncul teks */
.galeri-item:hover {
    transform: translateY(-5px);
}

.galeri-item:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.overlay-text {
    position: absolute;
    bottom: -50px; /* Sembunyi di bawah */
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 97, 242, 0.8));
    color: white;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    font-weight: bold;
}

.galeri-item:hover .overlay-text {
    bottom: 0; /* Muncul saat kursor di atas gambar */
}



/* Container Utama Slider */
.testi-slider {
    width: 100%;
    overflow: hidden; /* Menyembunyikan kartu yang di luar layar */
    padding: 40px 0;
    position: relative;
}

/* Jalur Animasi */
.testi-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 30s linear infinite; /* Gerakan terus menerus */
}

/* Berhenti saat kursor diarahkan ke testimoni */
.testi-track:hover {
    animation-play-state: paused;
}





/* Desain Kartu Testimoni */
.testi-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    width: 350px; /* Lebar tetap agar rapi di desktop */
    box-shadow: 0 10px 30px rgba(0, 97, 242, 0.05);
    border: 1px solid #edf2f7;
    flex-shrink: 0;
}

.stars {
    color: #ffcc00;
    margin-bottom: 15px;
}

.testi-card p {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testi-card strong {
    color: #2d3748;
    font-size: 0.9rem;
    display: block;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Keyframes untuk Animasi Geser */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Geser sejauh setengah dari total lebar track */
        transform: translateX(calc(-380px * 4)); 
    }
}





/* FAQ Styling */
.faq-wrapper { margin-top: 30px; }
.faq-item { border-bottom: 1px solid #eee; margin-bottom: 10px; }
.faq-question { width: 100%; padding: 20px 0; background: none; border: none; text-align: left; font-size: 1.1rem; font-weight: 600; cursor: pointer; color: var(--dark); transition: 0.3s; position: relative; }
.faq-question:hover { color: var(--primary); }
.faq-answer { padding: 0 0 20px 0; display: none; color: #666; font-size: 0.95rem; }

/* Area Tag Styling (Lebih Hidup) */
.area-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 25px; }
.area-tag { background: #f0f7ff; padding: 12px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: #333; text-align: center; border: 1px solid #e1efff; transition: 0.3s; }
.area-tag:hover { background: var(--primary); color: white; transform: scale(1.05); cursor: default; }

/* Footer Styling */
.main-footer { 
    position: relative;
    /* Ganti gambar sesuai path Anda */
    background: url('images/gambar7.webp') no-repeat center center/cover; 
    color: #fff; 
    padding: 80px 0 0 0; 
    overflow: hidden;
}

/* KUNCI: Menambahkan Lapisan Gelap Samar */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    /* Menggelapkan background agar tulisan putih 'pop' */
    background: rgba(13, 27, 42, 0.85); 
    z-index: 1;
}

/* Memastikan konten berada di atas lapisan samar */
.footer-content, 
.footer-copyright { 
    position: relative;
    z-index: 2; 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 50px; 
    padding-bottom: 50px; 
}

.logo-footer { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.logo-footer span { color: var(--primary); }

/* Membuat teks deskripsi lebih terang agar kontras */
.footer-brand p { color: #e2e8f0; font-size: 0.95rem; line-height: 1.8; }
.main-footer h4 { margin-bottom: 25px; font-size: 1.2rem; color: #fff; font-weight: 700; }

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 12px; }
/* Warna link dibuat lebih putih agar mudah dibaca */
.footer-links ul li a { color: #cbd5e0; text-decoration: none; transition: 0.3s; }
.footer-links ul li a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact p { color: #cbd5e0; margin-bottom: 15px; }

.footer-copyright { 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding: 30px 0; 
    text-align: center; 
    color: #a0aec0; 
    font-size: 0.85rem; 
    display: block; /* Menghapus grid pada copyright */
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .grid-2, .footer-content { grid-template-columns: 1fr; gap: 40px; }
}




/* Floating WA */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; background: #25d366; color: white; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: bold; z-index: 1000; box-shadow: 0 5px 15px rgba(0,0,0,0.2); display: flex; align-items: center; transition: 0.3s; }
.whatsapp-float:hover { transform: translateY(-5px); background: #128c7e; }

/* Reveal Animation */
.reveal { opacity: 0; transform: translateY(40px); transition: 1s all ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 768px) {
    .hero-wrapper { flex-direction: column; text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    .hero-btns { justify-content: center; }
    .nav-links { display: none; }
    .stats { flex-wrap: wrap; gap: 20px; }
}