:root {
    --primary: #0076FF;
    --primary-glow: rgba(0, 118, 255, 0.4);
    --secondary: #6B7280;
    --bg-dark: #0A0A0B;
    --bg-surface: #161618;
    --text: #F3F4F6;
    --text-muted: #9CA3AF;
    --accent: #00F2FE;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, #FFF 0%, #0076FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations and reveals removed for simplicity */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #FFF, #0076FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 28px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0056cc 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.4s var(--transition);
    box-shadow: 0 4px 15px var(--primary-glow);
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px var(--primary-glow);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    padding: 14px 32px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border: 1px solid var(--border);
    transition: all 0.4s var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text);
    transform: translateY(-3px);
}

/* Hero */
.hero {
    padding: 220px 0 140px;
    position: relative;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
}


.hero h1 {
    font-size: 84px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.hero p {
    font-size: 22px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
}


/* About Section */
.about-section {
    padding: 140px 0;
    background: var(--bg-surface);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.personal-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 40px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.photo-box {
    font-size: 100px;
    background: rgba(0, 118, 255, 0.1);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--primary-glow);
}

.about-text h2 {
    font-size: 56px;
    margin-bottom: 12px;
}

.lead {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 32px;
    display: block;
}

.personal-values {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
}

.personal-values span {
    font-size: 15px;
    font-weight: 700;
    background: rgba(0, 118, 255, 0.1);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--primary-glow);
}

/* Services */
.services {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 56px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    padding: 60px 40px;
    border-radius: 32px;
    transition: all 0.4s var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Contact */
.contact-section {
    padding: 140px 0;
}

.contact-card {
    background: linear-gradient(145deg, var(--bg-surface), #0D0D0F);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 100px 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.contact-details {
    margin-top: 40px;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile Polish */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 64px;
    }

    .grid-2,
    .contact-grid {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        transition: right 0.5s var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 24px;
    }

    .hero {
        padding: 160px 0 100px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .personal-card {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 60px 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Hamburger transition */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}