body {
    font-family: "Segoe UI", sans-serif;
    background: #f5fbff;
    color: #333;
}

/* =======================
   HERO SECTION
======================= */
.hero {
    background: url('/landing/assets/img/hero.jpg') center/cover no-repeat;
    min-height: 520px;
    padding: 160px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Overlay agar teks lebih jelas */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(1px);
}

.hero .container {
    position: relative;
    color: #fff;
    animation: fadeIn 1.1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =======================
   SECTION KEUNGGULAN
======================= */
.feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: .3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* =======================
   WA FLOATING BUTTON
======================= */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: white;
    font-size: 32px;
    z-index: 999;
    transition: .3s;
}
.wa-float:hover {
    transform: scale(1.12) rotate(4deg);
}

/* =======================
   FOOTER
======================= */
.landing-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 25px 0;
}
.landing-footer p {
    margin: 0;
    color: #777;
}
/* =======================
   Pricing Package
======================= */

.pricing-card {
    background: #fff;
    border-radius: 14px;
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.speed-badge {
    background: #00A8B5;
    color: white;
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 5px;
}

.featured {
    border: 2px solid #00A8B5;
    background: #f0fdff;
}

.featured-badge {
    position: absolute;
    top: 8px;
    right: -5px;
    background: #00A8B5;
    color: white;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px 0 0 4px;
}
/* =======================
   Feature Section
======================= */

.feature-box {
    background: #fff;
    border-radius: 14px;
    transition: .3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 28px rgba(0,0,0,0.12);
}

.icon-circle {
    width: 75px;
    height: 75px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9f9ff;
    color: #00A8B5;
    font-size: 38px;
    transition: .3s;
}

.feature-box:hover .icon-circle {
    transform: scale(1.12);
    background: #00A8B5;
    color: #fff;
}
/* About image style */
img.rounded {
    border-radius: 14px;
}

/* Feature box reused */
.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 28px rgba(0,0,0,0.12);
}
form .form-control {
    border-radius: 10px;
}

form .btn {
    border-radius: 10px;
}

.shadow-sm:hover {
    transform: translateY(-4px);
    transition: .3s ease;
}
.landing-footer {
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.footer-link {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    transition: .2s;
}

.footer-link:hover {
    color: #00A8B5;
    text-decoration: underline;
}

.landing-footer i {
    transition: .2s ease;
}

.landing-footer i:hover {
    color: #00A8B5;
}
/* Navbar */
.navbar-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: .3s ease;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 10px 16px;
    color: #333;
    transition: .2s;
}

.navbar .nav-link:hover {
    color: #00A8B5;
}

.navbar .nav-link.active {
    color: #00A8B5;
    font-weight: 600;
}

.navbar-brand {
    color: #00A8B5 !important;
}

/* Efek shadow saat scroll */
.navbar-scrolled {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}
