body {
    font-family: 'Poppins', sans-serif;
}
/* SECTION BACKGROUND */
.contact-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

/* CENTER CONTAINER */
.contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

/* INTRO TEXT */
.contact-intro {
    margin-bottom: 30px;
}

/* FORM CARD */
.form-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: left;
}

/* FORM TITLE */
.form-card h2 {
    margin-bottom: 20px;
    text-align: center;
}

/* ROW */
.form-row {
    display: flex;
    gap: 15px;
}

/* INPUTS */
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
}

/* FOCUS */
.form-card input:focus,
.form-card textarea:focus {
    border-color: #f0c040;
    outline: none;
}

/* BUTTON */
.form-card button {
    width: 100%;
    padding: 14px;
    border: none;
    background: #f0c040;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

.form-card button:hover {
    background: #d9a800;
}

/* SUCCESS MESSAGE */
#form-success {
    display: none;
    margin-top: 10px;
    color: green;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}
/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f0c040;
}
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    margin-top: 40px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #f0c040;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}
/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #111;
    color: #fff;
    position: relative;
}

.logo {
    font-weight: 600;
    font-size: 18px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* 📱 MOBILE VIEW */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #111;
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }
}