/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: #1f1f1f;
    color: #f1f1f1;
}

/* HEADER */
header {
    background: #2a2a2a;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

nav {
    max-width: 1200px;
    margin: auto;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

nav h2 {
    font-size: 22px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 500;
}

/* RIGHT SIDE (WHATSAPP + SOCIALS) */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* WHATSAPP BUTTON */
.header-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* SOCIAL ICONS IN HEADER */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
}

.social-icons a:first-child {
    background: #1877f2;
}

.social-icons a:last-child {
    background: radial-gradient(circle at 30% 107%, #fd5949, #d6249f, #285AEB);
}

/* BRAND COLORS */
.facebook {
    background: #1877F2;
}

.instagram {
    background: radial-gradient(circle at 30% 107%, #fd5949, #d6249f, #285AEB);
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.btn {
    background: #43a047;
    padding: 14px 25px;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;
}

/* SECTIONS */
.section {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

/* CARDS */
.card {
    background: #2a2a2a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ========================= */
/* FORM */
/* ========================= */

.form-wrapper {
    max-width: 900px;
    margin: 50px auto;
    background: #2a2a2a;
    padding: 40px;
    border-radius: 12px;
}

/* SECTION TITLE */
.section-title {
    font-size: 14px;
    margin: 25px 0 15px;
    color: #43a047;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

/* LABEL */
label {
    font-size: 13px;
    margin-bottom: 5px;
    display: block;
    color: #ccc;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* INPUTS */
input, textarea, select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #1f1f1f;
    color: #fff;
}

/* TEXTAREA */
textarea {
    min-height: 120px;
}

/* RADIO GROUP */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

/* RADIO OPTION */
.radio-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* RADIO INPUT */
.radio-option input {
    width: 16px;
    height: 16px;
    accent-color: #43a047;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    margin-top: 20px;
    background: #43a047;
    border: none;
    padding: 14px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* MAP */
.map-container iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    border: none;
}

/* FOOTER */
footer {
    background: #111;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
}

/* REMOVE OLD FLOATING SOCIAL BAR */
.social-bar {
    display: none;
}

/* ========================= */
/* MOBILE NAV */
/* ========================= */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }

    .menu-toggle {
        display: block;
        align-self: flex-end;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #2a2a2a;
        padding: 15px 0;
        text-align: center;
    }

    .nav-links a {
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 10px;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 80px 20px;
    }
}