/* ======================================
   RESET & DASAR
====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

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

/* ======================================
   NAVBAR & LOGO
====================================== */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
}

/* Pengurangan ukuran huruf 25% sesuai permintaan */
.logo-wrapper h2 {
    font-size: 1.125rem; /* Turun dari 1.5rem (25%) */
    color: #1a5f3d;
    margin: 0;
    line-height: 1.2;
}

.logo-wrapper p {
    font-size: 0.9rem; /* Turun dari 1rem (25%) */
    color: #666;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
}

/* ======================================
   HERO SECTION (GRADIENT)
====================================== */
.hero {
    background: linear-gradient(135deg, #1a5f3d 0%, #1e5799 100%);
    color: white;
    padding: 60px 0;
    text-align: left;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ======================================
   FORM CONTAINER (CARD)
====================================== */
.form-container {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: -50px; /* Membuat form agak naik ke area hero */
    margin-bottom: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="number"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    font-size: 14px;
    transition: all 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #1a5f3d;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(26, 95, 61, 0.1);
}

/* ======================================
   BUTTONS
====================================== */
.btn-primary {
    background-color: #2d7a4d;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-primary:hover {
    background-color: #235d3b;
}

/* ======================================
   FOOTER & SOCIAL
====================================== */
.footer {
    background-color: #121c24;
    color: #e0e0e0;
    padding: 50px 0 20px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3, .footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    background-color: #1e5799;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2a353d;
    color: #888;
}

/* ======================================
   RESPONSIVE
====================================== */
@media (max-width: 768px) {
    .form-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
  }

======================================
   PERBAIKAN SOSIAL MEDIA DI FOOTER
====================================== */
.footer ul {
    list-style: none; /* Menghapus titik list/peluru */
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 8px; /* Memberi jarak antar link */
}

.footer ul li a {
    text-decoration: none; /* Menghapus garis bawah */
    color: #a0aec0; /* Warna abu-abu terang agar kontras dengan background gelap */
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ffffff; /* Berubah jadi putih saat disentuh kursor */
}
