:root {
    --forest-50: #f0fdf4;
    --forest-100: #dcfce7;
    --forest-200: #bbf7d0;
    --forest-300: #6ee7a0;
    --forest-400: #34d47a;
    --forest-500: #16a34a;
    --forest-600: #15803d;
    --forest-700: #166534;
    --forest-800: #14532d;
    --forest-900: #052e16;
    --navy-50: #f0f4ff;
    --navy-100: #dbe4ff;
    --navy-200: #bac8ff;
    --navy-300: #8fa8f8;
    --navy-400: #6382eb;
    --navy-500: #3b5bdb;
    --navy-600: #2b4ac7;
    --navy-700: #1e3a8a;
    --navy-800: #172554;
    --navy-900: #0f172a;
}

html {
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(160deg, rgba(5, 46, 22, 0.92) 0%, rgba(23, 37, 84, 0.88) 50%, rgba(15, 23, 42, 0.85) 100%);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-6px);
}

.trust-icon {
    transition: all 0.3s ease;
}

.trust-icon:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1); }
    50% { box-shadow: 0 8px 40px rgba(22, 163, 74, 0.25); }
}

.trust-badge {
    animation: fadeInUp 0.8s ease-out both, pulseGlow 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.trust-badge:hover::before { left: 100%; }
.trust-badge:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(22, 163, 74, 0.2);
}

.trust-badge:nth-child(1) { animation-delay: 0s, 0s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s, 0.5s; }
.trust-badge:nth-child(3) { animation-delay: 0.4s, 1s; }

.trust-badge-icon { animation: float 3s ease-in-out infinite; }
.trust-badge:nth-child(1) .trust-badge-icon { animation-delay: 0s; }
.trust-badge:nth-child(2) .trust-badge-icon { animation-delay: 1s; }
.trust-badge:nth-child(3) .trust-badge-icon { animation-delay: 2s; }

.timeline-item::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 64px;
    bottom: -16px;
    width: 2px;
    background: linear-gradient(to bottom, #16a34a, #bbf7d0, transparent);
}

.timeline-item:last-child::before { display: none; }

.form-status { display: none; }
.form-status.show { display: block; }

.contact-icon { transition: all 0.3s ease; }
.contact-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(22, 101, 52, 0.15);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.locality-link { transition: all 0.2s ease; }
.locality-link:hover { color: #166534; }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.locality-section-image { transition: transform 0.6s ease; }
.locality-section-image:hover { transform: scale(1.02); }

.floating-stat {
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.floating-stat:hover { transform: translateY(-4px) scale(1.05); }
.floating-stat:nth-child(1) { animation-delay: 0s; }
.floating-stat:nth-child(2) { animation-delay: 1.5s; }
.floating-stat:nth-child(3) { animation-delay: 3s; }

.locality-tab { transition: all 0.3s ease; position: relative; }
.locality-tab.active { color: #166534; background: #f0fdf4; border-color: #16a34a; }
.locality-tab:not(.active):hover { background: #f9fafb; color: #374151; }

.tab-content { display: none; animation: fadeSlideIn 0.4s ease-out; }
.tab-content.active { display: block; }

.localities-scroll::-webkit-scrollbar { width: 4px; }
.localities-scroll::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.localities-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #16a34a, #15803d);
    border-radius: 10px;
}
