.contact {
    padding: 5rem 0;
    background-color: var(--white);
    position: relative;
}

.contact .leaf-decoration {
    bottom: -100px;
    right: -100px;
    transform: rotate(210deg);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--light);
    padding: clamp(15px, calc(18vw - 40px), 50px);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.15);
    border-top: 5px solid var(--primary);
    position: relative;
}

.messages-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: var(--primary);
    color: white;
    text-align: center;
    height: 2.2rem;
    font-size: 1.2rem;
}

.form-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

.form-input {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 30px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.form-textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    min-height: 150px;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}

.form-button {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.form-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34, 197, 94, 0.4);
}
