/* ======================================================
   THEME
====================================================== */
:root{
    --neon:#00e5ff;
    --green:#2ecc71;
    --panel:rgba(255,255,255,.04);
    --border:rgba(0,229,255,.25);
    --text:#e8f7ff;
}

*{
    box-sizing:border-box;
    font-family:"Segoe UI",system-ui,sans-serif;
}

body{
    margin:0;
    background:radial-gradient(circle at top,#041c2e,#01070c);
    color:var(--text);
    overflow-x:hidden;
}

/* ======================================================
   CANVAS
====================================================== */
canvas{
    position:fixed;
    inset:0;
    z-index:-1;
}

/* ======================================================
   HERO
====================================================== */
.hero-section{
    width:100%;
    padding:120px 0 100px;
}

.hero{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:50px;
    align-items:center;
}

.hero h1{
    font-size:3.1rem;
    line-height:1.15;
    margin-bottom:18px;
}

.hero p{
    color:#ccefff;
    font-size:1.1rem;
    max-width:640px;
}

/* ======================================================
   LOGO
====================================================== */
.logo-svg{
    text-align:center;
}

.logo-svg img{
    width:85%;
    max-width:420px;
    animation:logoPulse 4s ease-in-out infinite;
    filter:
        drop-shadow(0 0 12px var(--neon))
        drop-shadow(0 0 25px rgba(0,229,255,.5));
}

@keyframes logoPulse{
    0%,100%{
        transform:scale(1);
        filter:
            drop-shadow(0 0 12px var(--neon))
            drop-shadow(0 0 25px rgba(0,229,255,.5));
    }
    50%{
        transform:scale(1.04);
        filter:
            drop-shadow(0 0 25px var(--neon))
            drop-shadow(0 0 60px rgba(0,229,255,.8))
            drop-shadow(0 0 90px rgba(0,229,255,.4));
    }
}

/* ======================================================
   BUTTON
====================================================== */
.btn{
    display:inline-block;
    margin-top:28px;
    padding:15px 38px;
    border-radius:40px;
    background:linear-gradient(135deg,var(--neon),var(--green));
    color:#001018;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 0 35px rgba(0,229,255,.6);
    transition:.25s;
}
.btn:hover{transform:scale(1.05)}

/* ======================================================
   SECTIONS
====================================================== */
section{
    width:100%;
    padding:95px 0;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* ======================================================
   FEATURES
====================================================== */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.card{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:18px;
    padding:36px;
    backdrop-filter:blur(10px);
}

.card h3{color:var(--neon)}
.card p{color:#d6f3ff}

/* ======================================================
   DASHBOARD
====================================================== */
.dashboard{
    display:grid;
    grid-template-columns:260px 1fr;
    gap:30px;
}

.sidebar{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:18px;
    padding:26px;
}

.sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar li{
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.main{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
}

.widget{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:18px;
    padding:30px;
    text-align:center;
}

.widget h4{color:var(--neon)}
.widget span{font-size:2.2rem;font-weight:700}

/* ======================================================
   CTA
====================================================== */
.cta{
    text-align:center;
    padding:95px 30px;
    border-radius:30px;
    background:linear-gradient(160deg,rgba(0,229,255,.18),rgba(46,204,113,.12));
    border:1px solid var(--border);
}

/* ======================================================
   WHATSAPP FLOAT
====================================================== */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    color: #fff;
    
    /* Membuat Bulat Sempurna */
    width: 60px;          /* Sesuaikan ukuran yang diinginkan */
    height: 60px;         /* Harus sama dengan width */
    border-radius: 50%;   /* Mengubah kotak menjadi lingkaran */
    
    /* Center Ikon di Tengah */
    display: flex;
    align-items: center;
    justify-content: center;
    
    padding: 0;           /* Hapus padding agar tidak merusak lingkaran */
    text-decoration: none;
    box-shadow:0 0 25px rgba(0,229,255,.5);
    z-index: 999;
    transition: all .3s ease;
}

.wa-float:hover {
    transform: scale(1.1); /* Efek membesar sedikit saat di-hover */
    color: #fff;
}

/* ======================================================
   LOGIN BUTTON
====================================================== */
.login-top{
    position:absolute;
    top:25px;
    right:40px;
    transition: all .3s ease;
    text-decoration: none;
}

.login-btn{
    display:inline-block;
    padding:10px 22px;
    border-radius:30px;
    background:linear-gradient(135deg,var(--neon),var(--green));
    color:#001018;
    font-weight:700;
    text-decoration:none;
    font-size:.9rem;
    box-shadow:0 0 25px rgba(0,229,255,.5);
}

/* ======================================================
   LOADING OVERLAY (FINAL STABLE)
====================================================== */
#loading-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,10,20,.85);
    backdrop-filter:blur(8px);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

#loading-overlay.active{
    display:flex;
}

.neon-spinner{
    width:65px;
    height:65px;
    border-radius:50%;
    border:4px solid rgba(0,229,255,.15);
    border-top:4px solid var(--neon);
    animation:spin 1s linear infinite;
    box-shadow:
        0 0 15px var(--neon),
        0 0 40px rgba(0,229,255,.5);
}

@keyframes spin{
    to{ transform:rotate(360deg); }
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width:768px){

    .hero-section{ padding:70px 0 50px; }

    .hero{
        grid-template-columns:1fr;
        text-align:center;
        gap:35px;
    }

    .hero h1{ font-size:2rem; }

    .hero p{
        font-size:.95rem;
        max-width:100%;
        margin:auto;
    }

    .logo-svg img{
        width:65%;
        max-width:260px;
    }

    .btn{
        padding:13px 28px;
        font-size:.95rem;
    }

    .container{ padding:0 18px; }

    .login-top{
        position:fixed;
        top:15px;
        right:15px;
        z-index:1000;
    }

    .login-btn{
        width:48px;
        height:48px;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        padding:0;
        font-size:.75rem;
        box-shadow:0 8px 25px rgba(0,229,255,.5);
    }
}

/* ======================================================
   PRICING SECTION
====================================================== */

.pricing{
    max-width:1200px;
    margin:60px auto 0;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.price-card{
    background:var(--panel);
    border:1px solid var(--border);
    border-radius:22px;
    padding:45px 35px;
    backdrop-filter:blur(10px);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:.3s ease;
    position:relative;
}

.price-card:hover{
    transform:translateY(-8px);
    box-shadow:0 0 40px rgba(0,229,255,.25);
}

/* Plan Title */
.price-card h3{
    color:var(--neon);
    font-size:1.2rem;
    margin-bottom:10px;
}

/* Price */
.price{
    font-size:2.4rem;
    font-weight:700;
    margin:15px 0 5px;
    color:#fff;
}

.price span{
    font-size:.9rem;
    color:#9adfff;
}

/* Feature List */
.price-features{
    margin:25px 0;
    padding:0;
    list-style:none;
    line-height:1.8;
    font-size:.95rem;
    color:#c8f3ff;
}

.price-features li{
    margin-bottom:8px;
}

/* Button inside card */
.price-card .btn{
    margin-top:auto;
    text-align:center;
}

/* ======================================================
   FOOTER
====================================================== */

.footer-pro{
    width:100%;
    background:rgba(0,15,25,.98);
    border-top:1px solid var(--border);
    padding:70px 0 30px;
    margin-top:80px;
}

.footer-grid{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
}

.footer-pro h3{
    color:var(--neon);
    margin-bottom:18px;
    font-size:1.05rem;
    letter-spacing:.5px;
}

.footer-pro p{
    margin:0 0 10px;
    font-size:.95rem;
    color:#c8f3ff;
    line-height:1.7;
}

.footer-pro a{
    color:#c8f3ff;
    text-decoration:none;
    transition:.2s ease;
}

.footer-pro a:hover{
    color:var(--neon);
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    font-size:.85rem;
    color:#8edfff;
    letter-spacing:.5px;
}

/* Menyelaraskan Map dengan Tema Gelap & Neon */
/* Container Utama Map */
.map-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 242, 195, 0.2); /* Efek Glow halus */
    background: #001f2d; /* Warna dasar gelap sesuai tema */
}

/* Styling Iframe Google Maps */
/* Container Utama Map dengan Shadow selaras Logo */
.map-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #001f2d;
    border: 1px solid var(--border);
    
    /* Shadow berlapis agar identik dengan pendaran logo */
    box-shadow: 
        0 0 15px rgba(0, 229, 255, 0.4), /* Layer 1: Sharp neon */
        0 0 35px rgba(0, 229, 255, 0.2), /* Layer 2: Medium glow */
        0 0 60px rgba(0, 229, 255, 0.1); /* Layer 3: Soft atmosphere */
        
    /* Tambahkan animasi pulse agar senada dengan logo */
    animation: mapPulse 4s ease-in-out infinite;
    transition: all 0.5s ease;
}

/* Mempertegas tampilan Iframe */
.map-box iframe {
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(100%) invert(92%) contrast(83%) brightness(95%);
    mix-blend-mode: lighten; 
    opacity: 0.7; /* Sedikit lebih redup agar glow di pinggir menonjol */
    transition: all 0.5s ease;
}

.map-box:hover iframe {
    opacity: 1;
    filter: grayscale(0%) invert(92%) contrast(90%) brightness(100%);
}

/* ======================================================
   FEATURES (DARK NEON THEME)
====================================================== */
.features-section {
    width: 100%;
    padding: 95px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--neon);
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.section-header p {
    font-size: 1.1rem;
    color: #ccefff;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 35px 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.25);
    border-color: rgba(0, 229, 255, 0.6);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--neon);
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #d6f3ff;
    line-height: 1.6;
    margin: 0;
}

/* ======================================================
   CONTACT & MAP SECTION
====================================================== */
.contact-section {
    padding: 80px 20px;
}

.contact-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 45px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr; /* Membagi jadi 2 kolom sama besar */
    gap: 50px;
    align-items: stretch; /* Membuat tinggi kolom peta sama dengan teks */
}

.neon-heading {
    color: var(--neon);
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.contact-info .sub-text {
    color: #ccefff;
    line-height: 1.6;
    margin-bottom: 35px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon);
    flex-shrink: 0;
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.1);
}

.info-item h4 {
    color: #ffffff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: #a0c4d8;
    line-height: 1.5;
    font-size: 0.95rem;
}

.info-item p a {
    color: var(--neon);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item p a:hover {
    text-shadow: 0 0 8px var(--neon);
    text-decoration: underline;
}

/* --- MAP BOX STYLING --- */
.map-box {
    width: 100%;
    min-height: 350px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    position: relative;
}

.map-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    
    /* TRIK RAHASIA: Membalik warna map agar jadi Dark Mode kebiruan */
    filter: invert(90%) hue-rotate(180deg) contrast(110%) opacity(85%);
    transition: filter 0.4s ease;
}

/* Peta sedikit lebih terang saat di-hover */
.map-box:hover iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(120%) opacity(100%);
}

/* RESPONSIVE MOBILE */
@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr; /* Jadikan 1 kolom numpuk atas bawah */
        padding: 30px 20px;
        gap: 40px;
    }
    
    .map-box {
        min-height: 300px;
    }
}