* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #1B7FC0;
    --accent-start: #FF8C42;
    --accent-end: #FF6B35;
    --dark: #0A1628;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, var(--primary), var(--accent-end), #8B5CF6, #00274D);
    background-size: 400% 400%;
    animation: meshMove 20s ease infinite;
    opacity: 0.12;
    z-index: 0;
}

@keyframes meshMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.logo-fixed {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.logo-fixed img {
    height: 32px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

nav {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 18px 40px;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero {
    text-align: center;
    padding: 240px 0 100px;
}

.badge {
    display: inline-block;
    padding: 12px 24px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-start);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-details {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.contact-details a {
    color: var(--accent-start);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.form-section {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 60px;
    margin: 80px 0;
}

.form-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: center;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

@media (max-width: 768px) {
    .logo-fixed { top: 15px; }
    .logo-fixed img { height: 28px; }
    nav { top: 60px; padding: 12px 20px; }
    h1 { font-size: 42px; }
    .hero { padding: 180px 0 60px; }
    .form-section { padding: 40px 30px; }
}
