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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(to right, #15803d, #16a34a);
    color: white;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    flex-wrap: wrap;
}

.contact-links {
    display: flex;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #dcfce7;
}

.header-main {
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 15%;
    width: 200px;
    
}

.logo-circle {
    width: 180px;
    height: 64px;
    background: linear-gradient(135deg, #16a34a, #15803d);
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}

.logo:hover .logo-circle {
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.logo-text h1 {
    font-size: 20px;
    color: #1f2937;
    margin: 0;
}

.logo-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Navigation */
.nav-desktop {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: 6px;
    color: #374151;
    transition: all 0.3s;
}

.nav-link:hover {
    background: #f0fdf4;
    color: #15803d;
}

.nav-link.active {
    background: #16a34a;
    color: white;
}

.menu-toggle {
    display: none;
    padding: 8px;
    border-radius: 6px;
}

.menu-toggle:hover {
    background: #f3f4f6;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: #374151;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #374151;
    left: 0;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-mobile {
    display: none;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    padding: 12px 16px;
    border-radius: 6px;
    color: #374151;
    transition: all 0.3s;
}

.nav-link-mobile:hover {
    background: #f0fdf4;
}

.nav-link-mobile.active {
    background: #16a34a;
    color: white;
}

/* Hero */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: #16a34a;
    color: white;
}

.btn-primary:hover {
    background: #15803d;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    color: white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

/* Sections */
.section {
    padding: 64px 0;
}

.bg-gray {
    background: #f9fafb;
}

.bg-green-gradient {
    background: linear-gradient(to right, #15803d, #16a34a);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.bg-green-gradient .section-subtitle {
    color: rgba(255,255,255,0.9);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.icon-large {
    font-size: 48px;
}

/* Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s;
    display: block;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.bg-blue { background: #3b82f6; }
.bg-purple { background: #a855f7; }
.bg-orange { background: #f97316; }
.bg-green { background: #22c55e; }

.service-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1f2937;
}

.service-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.service-link {
    color: #16a34a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* News Cards */
.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.news-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-content {
    padding: 24px;
}

.news-date {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.news-title {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1f2937;
}

.news-excerpt {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.news-link {
    color: #16a34a;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.news-link:hover {
    color: #15803d;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255,255,255,0.9);
}

/* CTA Card */
.cta-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.cta-image {
    position: relative;
    min-height: 300px;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-text {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 48px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-title {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
}

.social-link:hover {
    background: #16a34a;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-contact {
    list-style: none;
    font-size: 14px;
}

.footer-contact li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-hours {
    font-size: 14px;
}

.footer-hours p {
    margin-bottom: 4px;
}

.footer-hours .highlight {
    color: #22c55e;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

/* Utilities */
.icon {
    display: inline-block;
}

.hidden-mobile {
    display: inline;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzBoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyem0wLTRoLTJ2LTJoMnYyeiIvPjwvZz48L2c+PC9zdmc+');
    opacity: 0.2;
}

.page-hero-content {
    position: relative;
    z-index: 10;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .cta-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-content {
        padding: 32px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .hidden-mobile {
        display: none !important;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




