/* Root Variables */
:root {
    --neon-cyan: #0ff;
    --neon-pink: #f0f;
    --bg-color: #0a0a0a;
    --glass: rgba(255, 255, 255, 0.05);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-color);
    font-family: 'Segoe UI', sans-serif;
    color: white;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header */
header {
    text-align: center;
    padding: 1.5rem 0;
}

.header-title {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
}

/* Contact Info */
.contact-info {
    flex: 1;
    background: var(--glass);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-details p {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    flex: 1;
    background: var(--glass);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 1rem;
    padding: 0.8rem;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    outline: none;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

/* Neon Button */
.neon-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    margin-top: 1.5rem;
}

.neon-button:hover {
    background: var(--neon-cyan);
    color: var(--bg-color);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
    }
}
