:root {
    /* Colors */
    --primary-green: #0A4226;
    --accent-green: #1B7A43;
    --light-green: #E8F5E9;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(27, 122, 67, 0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-green { color: var(--accent-green) !important; }
.text-white { color: var(--white) !important; }
.text-white-dim { color: rgba(255, 255, 255, 0.8) !important; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-green);
}

.brand-logo {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent-green);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    overflow: hidden;
    background-color: var(--off-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.6) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--light-green);
    color: var(--accent-green);
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--primary-green);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Services Bento Grid */
.services {
    padding: 100px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 24px;
}

.bento-features {
    gap: 16px;
    margin-bottom: 60px;
}

.bento-card {
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-green);
}

.bento-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--off-white) 0%, #ffffff 100%);
}

.card-green {
    background-color: var(--primary-green);
    color: var(--white);
}

.card-green:hover {
    background-color: var(--accent-green);
    border-color: transparent;
}

.bento-card.card-green h3, .bento-card.card-green p {
    color: var(--white);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-green);
    box-shadow: var(--shadow-sm);
}

.card-green .card-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: none;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-green);
}

.bento-card p {
    color: var(--text-light);
    font-size: 1rem;
    flex-grow: 1;
}

.bento-large h3 {
    font-size: 2rem;
}

.bento-large p {
    font-size: 1.125rem;
    max-width: 80%;
}

/* Detailed Services Section */
.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.detailed-service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.detailed-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--light-green);
}

.detailed-service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    line-height: 1.3;
}

.detailed-service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: var(--light-green);
    color: var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detailed-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.detailed-service-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.detailed-service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.card-full-width {
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background-color: var(--primary-green);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    margin-bottom: 8px;
    color: var(--white);
}

.stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background-color: var(--light-green);
    text-align: center;
}

.cta-container h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 32px;
}

.location-content p {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    line-height: 1.6;
}

.location-icon {
    color: var(--accent-green);
    flex-shrink: 0;
    margin-top: 4px;
}

.location-map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
}

.location-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.btn-directions {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background-color: var(--white);
    color: var(--primary-green);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-directions:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Footer */
.footer {
    background-color: var(--off-white);
    padding: 80px 0 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--text-light);
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--primary-green);
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--accent-green);
}

.footer-contact p {
    color: var(--text-light);
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 3.5rem; }
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; } 
    .nav-actions .btn-secondary { display: none; } /* Hide phone number to save space */
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .bento-large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .bento-large h3 { font-size: 1.5rem; }
    .bento-large p { max-width: 100%; }
    .cta-container h2 { font-size: 2rem; }
    .hero {
        padding-top: 140px;
        min-height: 70vh;
    }
}
