
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

/* Global Styles */
:root {
    --bg-color: #0a0f1f;
    --text-color: #f0f0f0;
    --primary-color: #4ade80;
    --secondary-color: #22d3ee;
    --accent-color: #8b5cf5;
    --error-color: #ef4444;
    --card-bg: rgba(0, 0, 0, 0.6);
    --link-color: #a5f3ec;
}

html {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

body {
    margin: 0;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to b, #0e1b2c, #1a202f);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(148, 161, 180, 0.2);
}

/* Navigation Styling */
nav a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(to b, #081e2f, #0b2b40);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
}

.hero-gradient {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    background: linear-gradient(90deg, #14698b, #2563eb);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: inline-block;
    padding: 2rem;
}

/* Contact Form Styles */
.contact-form {
    background-color: rgba(17, 24, 44, 0.7);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    padding: 2rem;
    margin-top: 3rem;
}

.contact-form h2 {
    margin-bottom: 1.5rem;
}

.contact-form fieldset {
    margin: 1rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(17, 17, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    width: 100%;
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: 2px solid var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.contact-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background-color: #33cd80;
}

/* Grid Layout */
.contact-grid {
    min-height: 1px;
    margin-top: 2rem;
}

.contact-grid h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.contact-grid p {
    margin-bottom: 0.5rem;
    color: #718096;
}

.contact-grid ul {
    list-style: none;
    padding-left: 0;
}

.contact-grid li {
    margin-bottom: 0.5rem;
}

.contact-grid a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background: #0b1728;
    color: #6c757d;
    border-top: 1px solid rgba(148, 161, 180, 0.1);
}

.footer-links {
    margin-top: 3rem;
    padding: 2rem 0;
}

.footer-links a {
    color: var(--text-color);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 8rem;
    }

    .footer-links {
        display: flex;
        justify-content: space-between;
        padding-bottom: 4rem;
    }
}
