:root {
    background: linear-gradient(135deg, #0a0e17 0%, #101520 100%);
    --accent-green: rgba(0, 247, 255, 0.7);
    --text-light: #F8FAFC;
    --secondary-text: #64748B;
    --border-color: #1E293B;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    background: linear-gradient(135deg, #0a0e17 0%, #101520 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
}

.form-group {
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    margin-top: 0.75rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(0, 247, 255, 0.15);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--accent-green);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.hero-section { 
text-align: center; 
margin-bottom: 3rem;  /* Reduced from 6rem */
padding: 2rem 0;      /* Reduced from 4rem 0 */
}

h1 { 
color: var(--accent-green); 
font-size: 3rem; 
margin-bottom: 1rem;  /* Reduced from 1.5rem */
letter-spacing: -0.03em;
text-shadow: 0 4px 20px rgba(0, 247, 255, 0.1);
transform: translateY(0); /* Ensures no accidental offset */
}

.gradient-button { 
    background: linear-gradient(95deg, rgba(0, 247, 255, 0.1) 0%, rgba(0, 147, 255, 0.1) 100%);
    padding: 1.25rem 2.5rem;
    color: #00f7ff;
    border-radius: 12px;
    display: inline-block;
    text-decoration: none;
    border: 1px solid var(--accent-green);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    width: 100%;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.gradient-button:hover {
    background: linear-gradient(95deg, rgba(0, 247, 255, 0.2) 0%, rgba(0, 147, 255, 0.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 247, 255, 0.1);
}

label {
    display: block;
    color: var(--secondary-text);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.contact-grid {
display: flex;
justify-content: center;
padding: 2rem 0;
}

.contact-methods {
max-width: 600px;
width: 100%;
display: grid;
gap: 1.5rem;
}

.contact-card {
background: rgba(15, 23, 36, 0.6);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 2rem;
transition: all 0.3s ease;
width: 100%;
box-sizing: border-box;
}

.contact-card:hover {
transform: translateY(-3px);
border-color: rgba(0, 247, 255, 0.3);
box-shadow: 0 8px 24px rgba(0, 247, 255, 0.05);
}

.contact-card h3 {
font-size: 1.25rem;
margin: 0 0 1.5rem 0;
display: flex;
align-items: center;
gap: 0.75rem;
}

.contact-card p {
line-height: 1.8;
margin: 0;
padding: 0.25rem 0;
}