:root {
    --p: #6366f1;
    --s: #8b5cf6;
    --a: #f59e0b;
    --g: #10b981;
    --w: #25d366;
    --bg: #0a0a12;
    --c: #13131f;
    --e: #1c1c2e;
    --t: #fff;
    --m: #9ca3af
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--t);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px
}

.gr {
    background: linear-gradient(135deg, var(--p), var(--s));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.nav-logo {
    font-family: 'Outfit';
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-logo img {
    height: 35px
}

.contact-page {
    padding: 120px 0 60px
}

.page-header {
    text-align: center;
    margin-bottom: 50px
}

.page-header h1 {
    font-family: 'Outfit';
    font-size: 2.2rem;
    margin-bottom: 15px
}

.page-header p {
    color: var(--m);
    max-width: 500px;
    margin: 0 auto
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px
}

.info-card {
    background: var(--c);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--p);
}

.info-icon.green {
    background: rgba(37, 211, 102, 0.1);
    color: var(--w)
}

.info-text h4 {
    margin-bottom: 5px
}

.info-text p {
    color: var(--m);
    font-size: 0.9rem
}

.info-text a {
    color: var(--p)
}

.contact-form {
    background: var(--c);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px;
}

.contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 25px
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--m);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--p);
    color: #fff
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr
    }
}