.contact-section {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    color: #00ffcc;
    font-size: 2.4em;
    margin-bottom: 10px;
    text-shadow: 0 0 15px #00ffcc;
}

.contact-section p {
    color: #bbb;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.contact-form-centered {
    background: rgba(20, 26, 43, 0.85);
    border: 1px solid rgba(0,255,204,0.3);
    border-radius: 12px;
    width: 80%;
    max-width: 700px;
    margin: auto;
    padding: 40px 30px;
    box-shadow: 0 0 25px rgba(0,255,204,0.15);
}

.contact-form-centered form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}
.form-row input {
    flex: 1;
}

.contact-form-centered input,
.contact-form-centered textarea {
    background: rgba(0,0,0,0.5);
    border: 1px solid #00ffcc;
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    outline: none;
    font-size: 15px;
    transition: 0.3s;
}
.contact-form-centered input:focus,
.contact-form-centered textarea:focus {
    box-shadow: 0 0 15px #00ffcc;
}
.contact-form-centered textarea {
    height: 130px;
    resize: none;
}

.contact-form-centered button {
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    padding: 14px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}
.contact-form-centered button:hover {
    background: #fff;
    box-shadow: 0 0 20px #00ffcc;
}

.contact-direct {
    margin-top: 40px;
    color: #bbb;
}
.contact-direct a {
    color: #00ffcc;
    text-decoration: none;
}
.contact-direct a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}
