:root {
    --bg-dark: #0a0b10;
    --card-bg: #161b22;
    --primary: #007bff;
    --text-light: #f0f6fc;
    --text-dim: #8b949e;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(10, 11, 16, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo span { color: var(--primary); }

nav ul {
    display: flex;
    list-style: none;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 30px;
    font-weight: 600;
    transition: 0.3s;
}

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

.btn-nav {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Hero */
.hero {
    padding: 100px 0;
}

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

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight { color: var(--primary); }

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Services */
.services {
    padding: 80px 0;
    background: #0d1117;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid #30363d;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card .icon {
    width: 50px;
    margin-bottom: 20px;
}

/* Forms & Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid #30363d;
    color: white;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    nav ul { display: none; }
}
/* Direct Contact Styling */
.direct-contact {
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item:hover {
    color: var(--text-light);
}

.separator {
    border: 0;
    border-top: 1px solid #30363d;
    margin: 40px 0;
}

/* Ensure icons look good */
.contact-item .icon {
    font-size: 1.4rem;
}