/* Main section */
.contact-section {
    min-height: 100vh; /* full screen */
    padding: 100px 20px; /* spacing */
    background: radial-gradient(circle at top, #1a1a2e, #0f0f1a); /* dark gradient */
    color: #fff; /* white text */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.contact-container {
    max-width: 1100px; /* center content */
    width: 100%;
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px; /* spacing */
}

.contact-header h1 {
    font-size: 3rem; /* big title */
    background: linear-gradient(90deg, #a855f7, #6366f1);
    -webkit-background-clip: text; /* for Chrome/Safari */
    background-clip: text; /* standard */
    -webkit-text-fill-color: transparent;
}

.contact-header p {
    color: #aaa; /* softer text */
    margin-top: 10px;
}

/* Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 40px; /* spacing */
}

/* Glass effect card */
.contact-form,
.contact-info {
    background: rgba(255, 255, 255, 0.05); /* glass bg */
    backdrop-filter: blur(10px); /* blur */
    border: 1px solid rgba(255, 255, 255, 0.1); /* subtle border */
    padding: 30px;
    border-radius: 20px; /* smooth corners */
    transition: 0.3s ease;
}

/* Hover lift */
.contact-form:hover,
.contact-info:hover {
    transform: translateY(-5px); /* float */
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2); /* glow */
}

/* Inputs */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

/* Input focus */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border: 1px solid #a855f7;
}

.contact-form select option {
    background: #0f0f1a;
    color: #fff;
}

/* Button */
.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(90deg, #a855f7, #6366f1); /* brand gradient */
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Button hover */
.contact-form button:hover {
    transform: scale(1.05); /* slight zoom */
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.4); /* glow */
}

/* Contact info */
.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #ccc;
}

/* Links */
.contact-info a {
    color: #a855f7;
    text-decoration: none;
    transition: 0.2s;
}

.contact-info a:hover {
    color: #6366f1;
}

.success-message {
    background: rgba(34, 197, 94, 0.1); /* green glass */
    border: 1px solid rgba(34, 197, 94, 0.4); /* border */
    color: #22c55e; /* green text */
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

/* simple fade */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive (IMPORTANT or I'll slap u) */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr; /* stack */
    }
}
