/* Professional Typography & Smoothness */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Brand Background */
.hero-bg {
    background: linear-gradient(135deg, #2D4B1E 0%, #1A2614 100%);
}

/* Service Card Hover Elevation */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Form Focus Effects */
input:focus, textarea:focus {
    border-color: #A4D06D !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(164, 208, 109, 0.1);
}

/* Custom Scrollbar for Modern Browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #2D4B1E;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #A4D06D;
}