
/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a; /* warna background loading */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    width: 120px; /* atur ukuran logo */
    animation: pulse 1.8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px #00bcd4);
}

#loading-screen p {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    margin-top: 20px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Efek animasi logo */
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.popup {
    display: none;
    /* hidden default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease;
}

.popup-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 20px;
    cursor: pointer;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    line-height: 1.6;
    color: #37331f;
    background-color: #ffffff;
}

/* Container global */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 48px;
    padding-right: 48px;
}

/* Hilangkan padding container khusus hero */
.hero .container {
    max-width: 1200px;
    padding-left: 48px;
    padding-right: 48px;
    width: 100%;
}

@media (max-width: 1024px) {
    .container,
    .hero .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .container,
    .hero .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* --- MOBILE RESPONSIVE IMPROVEMENT --- */
@media (max-width: 600px) {
    /* Container padding */
    .container,
    .hero .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* Hero section */
    .hero {
        min-height: 70vh;
        padding-top: 80px;
        padding-bottom: 32px;
        background-position: center top;
    }
    .hero-content {
        padding: 0;
        align-items: flex-start;
    }
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .hero-buttons {
        gap: 10px;
    }

    /* Section header */
    .section-header {
        margin-bottom: 32px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }
    h2 {
        font-size: 1.3rem;
    }

    /* Services section */
    .services {
        padding: 40px 0 32px 0;
    }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 24px;
    }
    .service-card {
        padding: 18px 14px;
        min-height: 180px;
        border-radius: 10px;
        gap: 10px;
    }
    .service-icon {
        padding: 8px;
        font-size: 18px;
    }
    .service-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .service-content p {
        font-size: 0.95rem;
    }
    .service-link {
        font-size: 0.95rem;
    }

    /* Styling untuk Tampilan Desktop & Tablet */
    .clients-grid {
        display: grid;
        grid-template-columns: repeat(
            6,
            1fr
        ); /* Tetap 6 kolom agar bisa membesar */
        gap: 32px; /* Jarak antar logo */
        align-items: center; /* Posisi vertikal di tengah */
        margin-top: 64px;
    }

    /* Ukuran untuk setiap kartu logo */
    .client-card {
        background: rgba(255, 152, 0, 0.02);
        border: 1px solid rgba(255, 152, 0, 0.1);
        border-radius: 16px;
        padding: 32px; /* Padding di dalam kartu logo */
        min-height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .client-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(255, 152, 0, 0.1);
    }

    /* Ukuran spesifik untuk gambar logo di dalamnya */
    .client-logo img {
        max-width: 140px;
        height: 60px;
        object-fit: contain;
    }

    /* About section */
    .about {
        padding: 40px 0 32px 0;
    }
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .about-placeholder {
        border-radius: 10px;
    }
    .stat-card {
        padding: 12px;
        font-size: 0.95rem;
    }
    .stat-number {
        font-size: 1.1rem;
    }

    /* Features grid */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 14px;
        margin: 18px 0;
    }
    .feature-card {
        padding: 14px;
        border-radius: 8px;
    }

    /* News section */
    .news {
        padding: 40px 0 32px 0;
    }
    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 24px;
    }
    .news-card {
        border-radius: 10px;
        min-width: 0;
        max-width: 100%;
    }
    .news-image {
        aspect-ratio: 16/9;
        min-height: 120px;
        border-radius: 10px 10px 0 0;
    }
    .news-content {
        padding: 14px;
    }
    .news-category {
        margin: 14px 0 0 14px;
        font-size: 11px;
        padding: 3px 10px;
    }
    .trending-badge {
        top: 10px;
        right: 10px;
        font-size: 9px;
        padding: 3px 7px;
    }
    .news-date {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .news-content h3 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    .news-link {
        font-size: 0.95rem;
    }

    /* Contact section */
    .contact {
        padding: 40px 0 32px 0;
    }
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    .form-card {
        padding: 14px;
        border-radius: 10px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 13px;
        padding: 8px 10px;
    }
    .contact-card {
        padding: 12px;
        border-radius: 10px;
        gap: 8px;
    }
    .contact-icon {
        padding: 8px;
        border-radius: 6px;
        font-size: 16px;
    }
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    .contact-details p {
        font-size: 0.95rem;
    }

    /* Footer */
    .footer-main {
        padding: 32px 0;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-bottom: 24px;
    }
    .footer-column {
        margin-bottom: 0;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding-top: 16px;
    }
    .footer-links {
        gap: 12px;
    }

    /* About section adjustments */
    .about-image {
        position: static;
        margin-bottom: 16px;
    }
    .stat-card {
        position: static !important;
        margin: 8px 0 0 0;
        display: inline-block;
        width: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        animation: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }
    .about-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .stat-1,
    .stat-2 {
        margin-right: 8px;
        margin-left: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .about-image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-stats-mobile {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    .stat-card {
        position: static !important;
        width: 100%;
        min-width: 0;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .news-grid {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        gap: 16px !important;
        scroll-snap-type: x mandatory;
        padding-left: 8px;
        padding-right: 8px;
        margin-top: 24px;
    }
    .news-card {
        min-width: 90vw;
        max-width: 90vw;
        flex: 0 0 90vw;
        scroll-snap-align: start;
        margin: 0;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: #6b7280;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff9800, #ff9800);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(255, 152, 0, 0.4);
}

.btn-hero {
    background: white;
    color: #f97316;
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 16px 32px;
    font-size: 16px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo h1 {
    font-size: 24px;
    color: white;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo h1 {
    color: #f97316;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f97316;
}

.navbar.scrolled .nav-link {
    color: #1f2937;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-menu-btn span {
    background: #1f2937;
}

@media (max-width: 768px) {
    .nav-menu,
    .navbar .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        height: 100vh;
        background: #fff;
        box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px 24px;
        gap: 18px;
        z-index: 2000;
        transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
    }
    .nav-menu.active {
        right: 0;
    }
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2100;
        margin-left: 16px;
    }
    .mobile-menu-btn span {
        display: block;
        width: 26px;
        height: 3px;
        background: #ffffff;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .navbar .btn-primary {
        display: none;
    }
    .nav-link {
        font-size: 1.1rem;
        font-weight: 500;
        color: #222;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }
    .nav-content {
        flex-wrap: nowrap;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    /* Ganti background menjadi foto */

    /* Ganti background menjadi foto */
    background: url("../img/HOMEPAGE BG.png") center center/cover no-repeat;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="25" cy="25" r="1.5" fill="%23ff9800" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 152, 0, 0.2);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    color: white;
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.1;
    white-space: normal;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding-left: 0;
}

.hero-title,
.hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: rgba(255, 152, 0, 0.02);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 kolom per baris */
    grid-template-rows: repeat(2, auto); /* 2 baris */
    gap: 40px 40px; /* White space antar card */
    justify-items: center;
    align-items: stretch;
    margin-top: 48px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 16px;
}

/* Samakan ukuran semua service card di section services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    min-height: 340px; /* Atur sesuai kebutuhan, misal 340px */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: 280px;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-left-color: #ff9800;
}

.service-icon {
    background: linear-gradient(135deg, #ff9800, #ff9800);
    color: white;
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-content {
    flex: 1;
}

.service-category {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-content h3 {
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: #ff9800;
}

.service-link {
    color: #ff9800;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    transform: translateX(8px);
}

/* Clients section: horizontal scroll */
.clients {
    /* Mengatur ulang padding section agar pas di mobile */
    padding: 120px 0 120px 0;
}
.clients-grid {
    display: flex !important; /* Mengubah layout menjadi flexbox */
    flex-direction: row; /* Memastikan item berjajar ke samping */
    gap: 32px !important; /* Memberi jarak antar logo */
    overflow-x: auto; /* KUNCI UTAMA: Mengaktifkan scroll horizontal */
    margin-top: 24px;
    /* Memberi padding agar logo tidak terlalu mepet tepi & ada ruang untuk scrollbar */
    padding: 16px;
    scroll-snap-type: x mandatory; /* Efek "snap" saat scrolling */

    /* Menghilangkan tampilan scrollbar yang mengganggu */
    scrollbar-width: none; /* Untuk Firefox */
    -ms-overflow-style: none; /* Untuk IE dan Edge */
}
.clients-grid::-webkit-scrollbar {
    display: none; /* Untuk Chrome, Safari, dan Opera */
}
.client-card {
    /* Memastikan setiap kartu logo punya ukuran tetap dan tidak menyusut */
    flex: 0 0 120px; /* Tidak akan menyusut, basis lebar 120px */
    padding: 24px;
    border-radius: 12px;
    scroll-snap-align: start; /* Posisi snap di awal kartu */
    margin-bottom: 0;
    min-height: 100px;
}
.client-logo img {
    max-width: 100%; /* Gambar logo responsif di dalam kartu */
    height: 40px; /* Menyamakan tinggi semua logo */
}

@media (max-width: 900px) {
    .clients-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 32px;
    }
}
@media (max-width: 600px) {
    .clients-grid {
        padding-left: 24px;
        padding-right: 16px;
        /* opsional: agar tidak ada margin negatif dari container */
        margin-left: -8px;
        margin-right: -8px;
        .clients-grid {
            display: flex !important;
            flex-direction: row;
            justify-content: flex-start !important; /* <<< INI PENAMBAHAN PENTINGNYA */
            gap: 32px !important;
            overflow-x: auto;
            margin-top: 24px;
            padding: 16px;
            scroll-snap-type: x mandatory;

            /* Hide scrollbar */
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .clients-grid::-webkit-scrollbar {
            display: none;
        }
    }
}

/* --- CLIENTS SECTION PROFESSIONAL DESIGN --- */
.clients {
    padding: 150px 0 130px 0; /* Banyak whitespace atas bawah */
    background: #fff;
}

.clients .section-header {
    margin-bottom: 26px;
}

/*.clients-logos {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(6, 1fr);*/
/*    gap: 48px;*/
/*    justify-items: center;*/
/*    align-items: center;*/
/*    padding: 30px 0; */
/*    max-width: 1100px;*/
/*    margin: 0 auto;*/
/*}*/

/*.client-logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: #fff;*/
/*    border-radius: 16px;*/
/*    padding: 32px;*/
/*    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);*/
/*    min-height: 120px;*/
/*    transition: box-shadow 0.3s;*/
/*}*/
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* rata tengah */
  gap: 30px; /* jarak antar logo */
  padding: 30px 0; 
  max-width: 1100px;
  margin: 0 auto;
}


.client-logo {
  flex: 0 1 150px; /* ukuran tiap logo (bisa disesuaikan) */
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  padding: 32px;
  transition: box-shadow 0.3s;
  border-radius: 16px;
}
.client-logo img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: filter 0.3s;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1.1);
}

/* --- MOBILE: horizontal scroll --- */
@media (max-width: 900px) {
    .clients {
        padding: 56px 0 56px 0;
    }
    .clients-logos {
        display: flex;
        flex-direction: row;
        gap: 24px;
        overflow-x: auto;
        padding: 24px 0;
        justify-content: flex-start;
        align-items: center;
        scroll-snap-type: x mandatory;
    }
    .client-logo {
        flex: 0 0 140px;
        min-width: 140px;
        max-width: 140px;
        padding: 18px;
        margin: 0;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        scroll-snap-align: center;
    }
    .client-logo img {
        max-width: 100px;
        max-height: 48px;
    }
    .clients-logos::-webkit-scrollbar {
        display: none;
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(255, 152, 0, 0.02);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #ff9800, #ff9800);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 20px 40px rgba(255, 152, 0, 0.3);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.about-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stat-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: float-gentle 3s ease-in-out infinite;
}

.stat-1 {
    top: -24px;
    right: -24px;
}

.stat-2 {
    bottom: -24px;
    left: -24px;
    animation-delay: 1s;
}

@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: #ff9800;
    font-size: 32px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Vision Section */
.vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
    position: relative;
    overflow: hidden;
}

.vision-bg {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,90 10,90" fill="%23ffffff" opacity="0.03"/><circle cx="20" cy="20" r="5" fill="%23ff9800" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

.vision-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
}

.vision-icon {
    color: white;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.vision-icon i {
    font-size: 48px;
}

.vision-card:hover .vision-icon {
    color: #fbbf24;
}

.vision-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* News Section */
.news {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 1 baris, 3 kolom */
    gap: 40px; /* White space antar card */
    justify-items: center;
    align-items: stretch;
    margin-top: 48px;
}

.news-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* News image full background */
.news-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #ff9800, #ff9800);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: white;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.news-image-awards {
    background: url("../img/NEWS_NVIDIA.png") center center/cover no-repeat,
        linear-gradient(135deg, #ff9800, #ff9800);
}
.news-image-partnership {
    background: url("../img/NEWS_KOMDIGI.png") center center/cover no-repeat,
        linear-gradient(135deg, #ff9800, #ff9800);
}
.news-image-launch {
    background: url("../img/NEWS_UI.png") center center/cover no-repeat,
        linear-gradient(135deg, #ff9800, #ff9800);
}
.news-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin: 24px;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

.trending-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
}

.news-content {
    padding: 24px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
}

.news-content h3 {
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #ff9800;
}

.news-link {
    color: #ff9800;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.news-card:hover .news-link {
    transform: translateX(8px);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(255, 152, 0, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.form-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info > p {
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Contact cards row style */
.contact-cards-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: flex-start;
    align-items: stretch;
}

@media (max-width: 768px) {
    .contact-cards-row {
        flex-direction: column;
        gap: 24px;
    }
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    background: linear-gradient(135deg, #ff9800, #ff9800);
    color: white;
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-details p {
    color: #6b7280;
    line-height: 1.5;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item i {
    color: #ff9800;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #374151);
    color: white;
}

.footer-cta {
    background: linear-gradient(135deg, #ff9800, #ff9800);
    padding: 64px 0;
    text-align: center;
}

.footer-cta h2 {
    color: white;
    margin-bottom: 24px;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-main {
    padding: 64px 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="20,80 40,10 60,80" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="20" r="3" fill="%23ff9800" opacity="0.1"/></svg>');
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 24px;
}

.footer-column h3 {
    color: #ff9800;
    font-size: 24px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff9800;
    transform: translateY(-2px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff9800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff9800;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Spacing for About Us section */
.about .section-badge {
    margin-bottom: 24px;
}

.about h1,
.about h2 {
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 12px;
}

/* Section background putih kecuali hero dan footer */
.services,
.clients,
.about,
.news,
.contact {
    background: #fff !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    background: #fff;
}

::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 8px;
    border: 2px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffb74d;
}

::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 8px;
}

/* Firefox */
html {
    scrollbar-color: #ff9800 #fff;
    scrollbar-width: thin;
}

/* Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar.animated {
    animation: fadeDown 0.8s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.hero-content.animated {
    animation: fadeInUp 1s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.hero-title.animated,
.hero-subtitle.animated,
.hero-buttons.animated {
    animation: fadeInUp 1.2s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.hero-badge.animated {
    animation: fadeInUp 0.9s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.section-animate {
    opacity: 0;
    transform: translateY(40px);
}

.about-text p {
    text-align: justify;
}

.feature-card,
.feature-card * {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Clients Section Animation */
.clients .section-header.section-animate,
.clients .clients-logos.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.clients .section-header.animated,
.clients .clients-logos.animated {
    opacity: 1;
    transform: none;
}

/* Sejajarkan nomor list dengan text di atas */
ol {
    padding-left: 18px; /* default biasanya 40px, kecilkan jadi 20px */
    margin-left: 0;
}


.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
}

.contact-item i {
    color: #fff;
    margin-top: 4px;
}

.email-link {
    color: #fff;
    text-decoration: underline;
}

.email-link:hover {
    text-decoration: underline;
    text-decoration-color: #1e293b; /* ubah sesuai warna bg */
}