/* Root Variables */
:root {
    --primary-green: #16a34a;
    --primary-green-light: #22c55e;
    --primary-green-dark: #15803d;
    --secondary-emerald: #059669;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --bg-light: #f9fafb;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: #f9fafb;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
}

p {
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow-x: hidden;
}

.hero-section h1 {
    animation: slideInUp 0.8s ease-out;
}

.hero-section p {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-section button,
.hero-section a {
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Form Styles */
input, select, textarea {
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

/* Utility Classes */
.container-max {
    max-width: 1280px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.2);
}

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