#contact-form {
    background: #ffffff; /* Plain white background */
    overflow: hidden;
}

.section-padding {
    padding-top: 160px;
    padding-bottom: 80px;
}

#contact-form .container {
    position: relative;
    z-index: 1;
}

.contact-info p {
    margin-bottom: 20px;
    color: #16292F; /* All text #16292F */
}

.contact-info a {
    color: #16292F; /* Links #16292F */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #16292F; /* Hover remains #16292F */
}

.contact-form {
    background: #fff; /* Subtle background */
    backdrop-filter: blur(15px);
    border: none; /* No border */
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Box-shadow */
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.contact-form .form-group {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    height: 40px;
    border: 1px solid #16292F; /* Border #16292F */
    font-size: 0.9rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #16292F; /* Text #16292F */
}

.contact-form textarea {
    height: 120px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #16292F; /* Focus border #16292F */
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(22, 41, 47, 0.2); /* Shadow matches #16292F */
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #16292F; /* Placeholder #16292F */
    font-size: 0.9rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
}

.contact-form .send-message {
    background: #16292F; /* Button background changed to #16292F */
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-family: 'Roboto Condensed', sans-serif;
    text-transform: uppercase;
    color: #fff; /* White text for contrast */
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.contact-form .send-message:hover {
    background: #16292F; /* Hover remains #16292F */
    color: #fff;
}

.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form .send-message {
    border-radius: 0;
}