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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Navbar Scroll State */
header.scrolled {
    background: rgba(250, 250, 245, 0.95);
    backdrop-blur-md;
    box-shadow: 0 1px 20px rgba(36, 68, 46, 0.08);
}

/* Mobile Menu */
.mobile-link {
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: #4d855a;
}

/* Hero Geometric Shapes */
.geo-shape {
    position: absolute;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #FAFAF5;
    border-radius: 50%;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: #c6dfcc;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
    border-radius: 30px;
    transform: rotate(45deg);
}

.shape-3 {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #FAFAF5;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    opacity: 0.08;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: #e3efe6;
    border-radius: 50%;
    bottom: 15%;
    left: 15%;
    animation-delay: 3s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: #FAFAF5;
    top: 45%;
    left: 40%;
    animation-delay: 4s;
    border-radius: 20px;
    transform: rotate(30deg);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

/* Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #24442e, #4d855a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* Background Decorative Elements */
.deco-circle {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(77, 133, 90, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(36, 68, 46, 0.05) 0%, transparent 70%);
    bottom: 20%;
    left: -50px;
}

.deco-rect {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.rect-1 {
    width: 200px;
    height: 200px;
    border: 2px solid rgba(77, 133, 90, 0.06);
    border-radius: 30px;
    top: 30%;
    right: 5%;
    transform: rotate(15deg);
}

.rect-2 {
    width: 150px;
    height: 150px;
    border: 2px solid rgba(36, 68, 46, 0.05);
    border-radius: 20px;
    bottom: 10%;
    left: 8%;
    transform: rotate(-10deg);
}

.deco-triangle {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(77, 133, 90, 0.04);
    top: 55%;
    right: 12%;
    transform: rotate(-20deg);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Form Styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

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

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

::-webkit-scrollbar-thumb {
    background: #9dc5a8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6fa37a;
}

/* Responsive */
@media (max-width: 768px) {
    .geo-shape {
        opacity: 0.08;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 120px;
        height: 120px;
    }
}
