/* ===== SECTION WRAPPER ===== */
.contact-hero {
    width: 100%;
    min-height: 100vh;
    padding: 120px 10%;
    background: #0a0c12;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===== TITLE ===== */
.contact-title {
    font-size: 70px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 18px rgba(0, 142, 255, 0.8);
    text-align: center;
}

.contact-subtitle {
    font-size: 18px;
    opacity: 0.8;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 60px;
}

/* ===== CONTACT CONTENT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-top: 40px;
}

/* ===== LEFT INFO ===== */
.contact-info {
    padding: 40px;
    background: #0f1118;
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 255, 0.3);
    box-shadow: 0 0 18px rgba(0, 132, 255, 0.15);
}

.info-title {
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 132, 255, 0.7);
}

.info-item {
    margin-bottom: 18px;
    font-size: 16px;
}

.info-item strong {
    color: #61aaff;
}

/* ===== FORM ===== */
.contact-form {
    padding: 40px;
    background: #0f1118;
    border-radius: 16px;
    border: 1px solid rgba(0, 132, 255, 0.3);
    box-shadow: 0 0 18px rgba(0, 132, 255, 0.15);
}

.contact-form label {
    font-size: 15px;
    opacity: 0.8;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    margin-bottom: 18px;
    background: #151821;
    border: 1px solid #1e2633;
    border-radius: 10px;
    color: white;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #048cff;
    box-shadow: 0 0 12px rgba(0, 132, 255, 0.6);
}

/* ===== BUTTON ===== */
.contact-btn {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    background: #007bff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.4);
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.7);
}

/* ===== MOBILE ===== */
@media(max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-title {
        font-size: 48px;
    }
}
