/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Body */
body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

/* Heading */
#contact {
    margin-top: 40px;
    font-size: 2.5rem;
}

/* Container */
.contact-container {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    width: 90%;
    max-width: 900px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card base */
.contact-info,
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Titles */
h2 {
    margin-bottom: 15px;
}

/* Info text */
.contact-info p {
    margin: 8px 0;
    opacity: 0.9;
}

/* Form inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 1rem;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #00c6ff;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

/* Hover */
.contact-form button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 600px) {
    #contact {
        font-size: 2rem;
    }
}