@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    /* The primary color will be injected by the generator */
    --primary: #3b82f6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-weight: 800;
    line-height: 1.2;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }
.section { padding: 80px 0; }
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(110%);
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}
.nav-contact {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
}
.hero p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}
.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-card h3 { margin-bottom: 15px; font-size: 20px; }
.service-card p { color: var(--text-light); font-size: 15px; }

/* Why Us Section */
.why-us {
    background: var(--white);
    padding: 80px 0;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.why-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.why-content h2 { font-size: 36px; margin-bottom: 20px; }
.why-content p { color: var(--text-light); margin-bottom: 20px; font-size: 16px; }
.why-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
}
.why-feature svg {
    color: var(--primary);
    margin-right: 15px;
    width: 24px;
    height: 24px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, #1e1b4b 100%);
    color: var(--white);
    text-align: center;
}
.cta h2 { font-size: 36px; margin-bottom: 20px; }
.cta p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 40px 0;
    text-align: center;
}
footer p { margin-top: 20px; font-size: 14px; }

/* Responsive */
@media (max-width: 768px) {
    .hero { height: 500px; text-align: center; }
    .hero::before { background: rgba(255,255,255,0.9); }
    .hero-content { margin: 0 auto; }
    .hero h1 { font-size: 36px; }
    .why-grid { grid-template-columns: 1fr; }
}
