html, body {
    background-color: var(--color-black); 
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.Navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
} 

/* ============================
   🟣🟣🟣 SECTION FORM 🟣🟣🟣
   ============================ */
.contact-section {
    background-color: var(--color-black);
    padding: 8rem 1rem;
}

.contact-container {
    width: 80%;
    max-width: 1400px;
    margin: auto;
}

.contact-title {
    color: var(--color-orange);
    font-size: var(--h1-size);
    font-weight: var(--h1-weight);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--color-white);
    font-size: var(--p-size);
    font-weight: var(--p-weight);
    font-family: var(--font-primary);
    margin-bottom: 6rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    color: var(--color-white);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    background-color: var(--color-gray);
    border: none;
    border-radius: 50px;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
}

.form-group textarea {
    border-radius: 20px;
    resize: none;
    height: 120px;
}

/* SELECT custom */
.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-white);
    font-size: 0.8rem;
}

.form-button {
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 0.5rem 2rem;
    background-color: var(--color-orange);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: var(--button-size);
    font-weight: var(--button-weight);
    color: var(--color-white);
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-bottom: 8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.form-button:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 2.2rem;
    }
}