.contact-us-section {
    max-width: 720px;
    margin: 3rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.contact-us-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px black;
}

.contact-us-section p {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px black;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
    color: #fff;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #00bfff;
}

.contact-form label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #aaa;
    background-color: transparent;
    pointer-events: none;
    transition: all 0.2s ease;
}

.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
    top: -0.75rem;
    left: 0.75rem;
    font-size: 0.8rem;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 0 0.25rem;
    color: #00bfff;
}

.contact-form button {
    padding: 1rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #00bfff, #1e90ff);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.3);
}

.contact-form button:hover {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 191, 255, 0.4);
}
