body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #f4f6fb;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    background: #0B1F3A;
    color: white;
}

.logo span {
    color: #00d2ff;
}

/* HERO */
.hero {
    padding: 80px 8%;
    background: linear-gradient(135deg, #0B1F3A, #1c3d6b);
    color: white;
}

.hero h1 {
    font-size: 32px;
}

/* SECTION */
.section {
    padding: 60px 8%;
}

/* CARD */
.grid-3 {
    display: flex;
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
}

/* FORM */
input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* BUTTON */
.btn {
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.btn-accent {
    background: linear-gradient(135deg,#00d2ff,#3a7bd5);
    color: white;
}

/* WA FLOAT */
.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-float img {
    width: 28px;
}
/* NAV MENU FIX */
.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    color: #00d2ff;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hero-content {
    max-width: 600px;
}

.hero p {
    margin-top: 15px;
    line-height: 1.6;
}

.cta {
    margin-top: 20px;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
}
/* ===== HERO CENTER FIX ===== */

.hero {
    padding: 100px 8%;
    background: linear-gradient(135deg, #0B1F3A, #1c3d6b);
    color: white;

    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: auto;
}

.cta {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.3;
}
html {
    scroll-behavior: smooth;
}
.section {
    padding: 80px 8%;
}