/**
 * LJ Lawn Service - Main Stylesheet
 * Mobile-first responsive design
 * Based on design/DESIGN_SYSTEM.md
 */

/* ===== DESIGN TOKENS ===== */
:root {
    /* Primary Palette */
    --color-primary-green: #2D5016;
    --color-sage-green: #8BA888;

    /* Neutral Palette */
    --color-white: #FFFFFF;
    --color-light-gray: #F9FAFB;
    --color-medium-gray: #6B7280;
    --color-dark-gray: #1F2937;
    --color-black: #000000;

    /* Semantic Colors */
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;
    --color-info: #3B82F6;

    /* Interaction States */
    --color-primary-hover: #1B3A0F;
    --color-primary-active: #0F1F08;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --text-h1-mobile: 48px;
    --text-h1-desktop: 72px;
    --text-h2-mobile: 36px;
    --text-h2-desktop: 48px;
    --text-h3-mobile: 28px;
    --text-h3-desktop: 32px;
    --text-h3: 28px;
    --text-h4: 24px;
    --text-xl: 20px;
    --text-lg: 18px;
    --text-base: 16px;
    --text-body: 16px;
    --text-small: 14px;
    --text-caption: 12px;
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;

    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Sizing & Radii */
    --button-height: 44px;
    --input-height: 56px;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-2xl: 24px;
    --border-radius-full: 9999px;

    /* Depth & Motion */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-high: 0 10px 25px rgba(0, 0, 0, 0.2);
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Layout & Z-index */
    --container-mobile: 100%;
    --container-tablet: 768px;
    --container-desktop: 1024px;
    --container-large: 1440px;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;

    /* Overlays */
    --overlay-light: rgba(255, 255, 255, 0.9);
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-primary: rgba(45, 80, 22, 0.9);
}

/* ===== CSS RESET ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 2px;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2937;
    background-color: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; } /* 40px */
h2 { font-size: 2rem; }   /* 32px */
h3 { font-size: 1.5rem; } /* 24px */
h4 { font-size: 1.25rem; }/* 20px */
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1rem; }

a {
    color: #2D5016;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: #1B3A0F; }

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

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.mt-lg { margin-top: 2rem; }

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.35rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #2D5016;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.site-logo-picture {
    display: flex;
    align-items: center;
}

.site-logo-image {
    display: block;
    height: 34px;
    width: auto;
    max-width: min(220px, 40vw);
    object-fit: contain;
}

.site-logo img.site-logo-image {
    height: 108px !important;
    width: auto !important;
}

.site-logo-text {
    white-space: nowrap;
}

.site-logo--image {
    gap: 0.75rem;
}

.site-logo--image .site-logo-icon {
    display: none;
}

.site-logo--image .site-logo-text {
    display: none;
}

@media (max-width: 480px) {
    .site-logo-image {
        height: 28px;
        max-width: min(180px, 55vw);
    }
}

.site-logo:hover {
    opacity: 0.8;
    color: #2D5016;
}

.site-logo-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E8F5E9;
    border-radius: 0.5rem;
}

/* Desktop Navigation - Hidden on mobile */
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2D5016;
    border-bottom-color: #2D5016;
}

/* Navigation CTA Buttons - Hidden on mobile */
.nav-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #2D5016;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay[aria-hidden="false"] {
    display: block;
    opacity: 1;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu[aria-hidden="false"] {
    right: 0;
}

.mobile-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-close-icon {
    position: relative;
    width: 24px;
    height: 24px;
}

.mobile-close-icon::before,
.mobile-close-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #2D5016;
    top: 50%;
    left: 0;
}

.mobile-close-icon::before {
    transform: rotate(45deg);
}

.mobile-close-icon::after {
    transform: rotate(-45deg);
}

.mobile-menu-header {
    padding: 2rem 1.5rem 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.mobile-menu-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #2D5016;
    text-decoration: none;
}

.mobile-menu-logo-picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-logo-image {
    display: block;
    height: 32px;
    width: auto;
    max-width: min(220px, 75vw);
    object-fit: contain;
}

.mobile-menu-logo img.mobile-menu-logo-image {
    height: 32px !important;
    width: auto !important;
}

.mobile-menu-logo--image .mobile-menu-logo-text {
    display: none;
}

.mobile-nav-links {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #1F2937;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: #F0F9F0;
    color: #2D5016;
}

.mobile-menu-cta {
    padding: 1.5rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-phone {
    display: block;
    text-align: center;
    padding: 0.75rem;
    background-color: #F0F9F0;
    color: #2D5016;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 48px;
    min-width: 48px;
}

.btn-primary {
    background-color: #2D5016;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #1B3A0F;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #2D5016;
    border: 2px solid #2D5016;
}

.btn-secondary:hover {
    background-color: #E8F5E9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    min-height: 56px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url('../images/hero-lawn.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #FFFFFF;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 64px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 80, 22, 0.7) 0%, rgba(45, 80, 22, 0.45) 55%, rgba(45, 80, 22, 0.15) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
}

.hero-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #FFFFFF;
}

.trust-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.75rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator-icon {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 16px; opacity: 0.5; }
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1F2937;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #E8F5E9;
    color: #2D5016;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.service-card p {
    color: #6B7280;
    margin-bottom: 1rem;
}

.service-price {
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 1rem;
}

.service-link {
    color: #2D5016;
    font-weight: 500;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(4px);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background-color: #F0F9F0;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #6B7280;
}

.testimonial-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: #FFFFFF;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: #1F2937;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #6B7280;
}

.testimonial-rating {
    color: #FFA500;
    margin-bottom: 0.5rem;
}

.testimonial-quote {
    font-style: italic;
    color: #4B5563;
}

/* ===== GALLERY ===== */
.before-after-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.before-after-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    height: 400px;
}

.before-after-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

.before-after-labels {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    pointer-events: none;
    z-index: 2;
}

.before-after-label {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.1;
}

.neighborhood-caption {
    padding: 1rem;
    text-align: center;
    background-color: #F9FAFB;
    font-size: 0.875rem;
    color: #6B7280;
}

/* ===== SERVICE AREA ===== */
.map-placeholder {
    background-color: #E5E7EB;
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.map-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.neighborhood-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.neighborhood-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkmark {
    color: #2D5016;
    font-weight: 700;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background-color: #1B3A0F;
    color: #FFFFFF;
    text-align: center;
}

.final-cta h2 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.final-cta-subtitle {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.final-cta-button {
    margin-bottom: 1rem;
}

.final-cta-phone {
    color: #FFFFFF;
}

.final-cta-phone a {
    color: #FFFFFF;
    text-decoration: underline;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    /* Show desktop navigation, hide mobile menu */
    .hamburger-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

    .nav-cta {
        display: flex;
    }

    /* Hero */
    .hero h1 { font-size: 3.5rem; }
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    .hero-cta-buttons .btn {
        width: auto;
        min-width: 200px;
    }

    /* Grids */
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
    .testimonial-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    .neighborhood-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    .hero h1 { font-size: 4.5rem; }
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .testimonial-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    .before-after-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    .neighborhood-list {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* ===== FOOTER ===== */
.site-footer {
    background-color: #1F2937;
    color: #D1D5DB;
    padding: 3rem 0 0;
    margin-top: 4rem;
    border-top: 4px solid #2D5016;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

/* Footer About Section */
.footer-about {
    text-align: center;
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-logo-picture {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    display: block;
    height: 44px;
    width: auto;
    max-width: min(320px, 80vw);
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.footer-logo img.footer-logo-image {
    height: 44px !important;
    width: auto !important;
}

.footer-logo--image .footer-logo-text {
    display: none;
}

.footer-tagline {
    color: #9CA3AF;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    border-radius: 50%;
    color: #D1D5DB;
    transition: all 0.2s ease;
}

.social-link:hover {
    background-color: #2D5016;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Footer Links Section */
.footer-links {
    text-align: center;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #2D5016;
}

/* Footer Contact Section */
.footer-contact {
    text-align: center;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    justify-content: center;
}

.footer-contact-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: text-top;
}

.footer-contact-text {
    text-align: left;
}

.footer-phone,
.footer-email {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-phone:hover,
.footer-email:hover {
    color: #2D5016;
}

.footer-address,
.footer-hours {
    color: #9CA3AF;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #111827;
    padding: 2rem 0;
    border-top: 1px solid #374151;
    margin-top: 2rem;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom-link:hover {
    color: #2D5016;
}

.footer-separator {
    color: #4B5563;
}

/* Tablet Footer Layout */
@media (min-width: 768px) {
    .footer-about,
    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
    }

    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
/* Founder Story Section */
.founder-story {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founder-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    border: 4px solid #E8F5E9;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
}

.founder-bio {
    text-align: left;
    line-height: 1.8;
    color: #4B5563;
}

/* Mission & Values Section */
.mission-values {
    background-color: #F9FAFB;
    padding: 4rem 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D5016;
}

.value-icon svg {
    width: 48px;
    height: 48px;
    color: #2D5016;
}

.value-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.value-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Journey Timeline Section */
.journey-timeline {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #FCD34D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1F2937;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    flex: 1;
}

.timeline-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: #6B7280;
    line-height: 1.6;
}

.timeline-image {
    width: 100%;
    border-radius: 0.75rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    background-color: #F9FAFB;
    padding: 4rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    text-align: center;
    background: #FFFFFF;
    padding: 2rem 1rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    border: 3px solid #E8F5E9;
}

.team-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: #2D5016;
    font-weight: 500;
}

/* ===== SERVICES PAGE STYLES ===== */
/* Services Hero */
.services-hero {
    background: linear-gradient(135deg, #2D5016 0%, #1B3A0F 100%);
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.service-pill {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-pill:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: #FFFFFF;
}

/* Service Detail Section */
.service-detail {
    padding: 4rem 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.service-detail:nth-child(even) {
    background-color: #F9FAFB;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-icon-large {
    font-size: 4rem;
    text-align: center;
}

.service-info h2 {
    font-size: 2rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.service-tagline {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 1rem;
}

.service-cta-link {
    color: #2D5016;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-cta-link:hover {
    color: #1B3A0F;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.service-description h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.service-description h3:first-child {
    margin-top: 0;
}

/* Lists with checkmarks - Remove default bullets */
.included-list,
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.included-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4B5563;
    line-height: 1.6;
}

.checkmark-icon,
.benefit-icon {
    color: #2D5016;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.best-time,
.frequency {
    margin-top: 2rem;
}

.best-time p,
.frequency p {
    color: #4B5563;
    line-height: 1.6;
}

/* Service Media */
.service-media {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.before-after-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.before-after-image {
    width: 100%;
    height: auto;
    display: block;
}

.before-after-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #FFFFFF;
    padding: 1.5rem 1rem 1rem;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Service Detail Card (legacy) */
.service-detail-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.service-price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4B5563;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2D5016;
    font-weight: 700;
}

.service-detail-image {
    border-radius: 0.75rem;
    overflow: hidden;
}

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

/* Service Packages Section */
.service-packages,
.packages-section {
    background-color: #F9FAFB;
    padding: 4rem 2rem;
}

.package-cards,
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card.featured,
.package-card.popular {
    border: 3px solid #2D5016;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-4px);
}

.popular-badge,
.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2D5016;
    color: #FFFFFF;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1rem;
}

.package-original-price {
    font-size: 1.125rem;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 0.5rem;
}

.package-period {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.package-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4B5563;
    border-bottom: 1px solid #F3F4F6;
}

.package-feature:last-child {
    border-bottom: none;
}

.package-features .checkmark-icon {
    color: #2D5016;
    font-weight: 700;
    flex-shrink: 0;
}

.savings-badge {
    background: #FCD34D;
    color: #1F2937;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    margin: 1rem 0;
    display: inline-block;
}

.package-cta {
    margin-top: 2rem;
}

/* Seasonal Guide */
.seasonal-guide {
    padding: 4rem 2rem;
    background: #FFFFFF;
}

.season-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.season-card {
    background: #F9FAFB;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.season-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.season-name {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.season-services {
    color: #4B5563;
    line-height: 1.6;
}

/* Services Bottom CTA */
.services-bottom-cta {
    background: linear-gradient(135deg, #2D5016 0%, #1B3A0F 100%);
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}

.services-bottom-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.services-bottom-cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.services-bottom-cta-button {
    margin: 2rem 0;
}

.services-bottom-cta-phone {
    margin-top: 1.5rem;
    font-size: 1.125rem;
}

.services-bottom-cta-phone a {
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transition: border-color 0.3s ease;
}

.services-bottom-cta-phone a:hover {
    border-bottom-color: #FFFFFF;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 3rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.faq-toggle-icon {
    font-size: 1.125rem;
    color: #2D5016;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 0;
}

.faq-text {
    flex: 1;
}

/* ===== CONTACT PAGE STYLES ===== */
/* Contact Methods Section */
.contact-methods {
    padding: 2rem 1rem 4rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card-icon {
    font-size: 3rem;
    color: #2D5016;
    margin-bottom: 1rem;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.contact-card-description {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background-color: #F9FAFB;
    padding: 4rem 2rem;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2D5016;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* Business Hours & Emergency Contact */
.business-info-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.business-info-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.business-info-card h3 {
    font-size: 1.25rem;
    color: #2D5016;
    margin-bottom: 1.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #F3F4F6;
    color: #4B5563;
}

.hours-list li:last-child {
    border-bottom: none;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    margin-top: 1rem;
    display: block;
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #2D5016 0%, #1B3A0F 100%);
    color: #FFFFFF;
    padding: 3rem 2rem;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #FFFFFF;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-current {
    color: #FFFFFF;
    font-weight: 600;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Contact Methods */
.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.method-card {
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-4px);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-icon svg {
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: middle;
}

.method-card h3 {
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.method-phone,
.method-email {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2D5016;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.method-phone:hover,
.method-email:hover {
    color: #1B3A0F;
}

.method-hours {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 600;
    margin-bottom: 1rem;
}

.method-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
}

/* Contact Form Enhancements */
.contact-form {
    max-width: 800px;
    margin: 2rem auto 0;
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-label {
    display: block;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.required {
    color: #DC2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2D5016;
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #4B5563;
}

.radio-label input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.file-upload-area {
    border: 2px dashed #D1D5DB;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.file-upload-area:hover {
    border-color: #2D5016;
}

.file-upload-input {
    display: none;
}

.file-upload-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #6B7280;
}

.file-upload-icon svg {
    width: 48px;
    height: 48px;
    display: inline-block;
    vertical-align: middle;
}

.file-upload-text {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.file-upload-hint {
    font-size: 0.875rem;
    color: #6B7280;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
    margin: 2rem 0;
    font-size: 0.875rem;
    color: #6B7280;
}

.privacy-icon {
    font-size: 1.25rem;
}

.form-message {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.form-message.show {
    display: flex;
}

.form-message.success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.form-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

.success-icon,
.error-icon {
    font-size: 1.5rem;
}

/* Business Hours */
.business-hours {
    padding: 4rem 2rem;
    background: #F9FAFB;
}

.hours-list {
    max-width: 600px;
    margin: 2rem auto;
    background: #FFFFFF;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #1F2937;
}

.hours-time {
    color: #2D5016;
    font-weight: 600;
}

.emergency-note {
    text-align: center;
    margin-top: 1.5rem;
    color: #6B7280;
    font-style: italic;
}

/* Service Area Map */
.service-area {
    padding: 4rem 2rem;
    background: #FFFFFF;
}

.map-container {
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.neighborhood-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.neighborhood-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #F9FAFB;
    border-radius: 0.5rem;
    transition: background 0.3s ease;
}

.neighborhood-item:hover {
    background: #E8F5E9;
}

.neighborhood-item .checkmark {
    color: #2D5016;
    font-weight: 700;
    font-size: 1.125rem;
}

.out-of-area-note {
    text-align: center;
    margin-top: 2rem;
    color: #6B7280;
    font-style: italic;
}

/* Contact FAQ */
.contact-faq {
    padding: 4rem 2rem;
    background: #F9FAFB;
}

/* Social Section */
.social-section {
    padding: 4rem 2rem;
    background: #FFFFFF;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2D5016;
    border-radius: 50%;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #1B3A0F;
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Alternative Contact */
.alternative-contact {
    padding: 3rem 2rem;
    background: #F9FAFB;
    text-align: center;
}

.text-contact {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.alternative-contact a {
    color: #2D5016;
    font-weight: 700;
    text-decoration: none;
}

.alternative-contact a:hover {
    text-decoration: underline;
}

/* Contact Bottom CTA */
.contact-bottom-cta {
    background: linear-gradient(135deg, #2D5016 0%, #1B3A0F 100%);
    color: #FFFFFF;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-bottom-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.contact-bottom-cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.contact-cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.cta-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-option:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.cta-option-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cta-option-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

.cta-option strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.cta-option a {
    color: #FFFFFF;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.3s ease;
}

.cta-option a:hover {
    border-bottom-color: #FFFFFF;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.trust-badge-icon {
    font-size: 1.5rem;
    color: #FCD34D;
}

/* Social Media Section */
.social-media-section {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #F9FAFB;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #2D5016;
    border-radius: 50%;
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: #1B3A0F;
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Process Accordion Styles */
.process-accordion {
    margin-top: 2rem;
}

.process-step {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #2D5016;
}

.process-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: #FFFFFF;
    transition: background-color 0.3s ease;
}

.process-header:hover {
    background-color: #F9FAFB;
}

.process-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #1F2937;
    font-size: 1.1rem;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #2D5016;
    color: #FFFFFF;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.process-toggle-icon {
    color: #2D5016;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.process-step.active .process-toggle-icon {
    transform: rotate(180deg);
}

.process-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #F9FAFB;
}

.process-step.active .process-content {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.process-content p {
    color: #4B5563;
    line-height: 1.6;
    margin: 0.5rem 0 0;
}

.process-step.active .process-header {
    background-color: #F9FAFB;
    border-bottom: 1px solid #E5E7EB;
}

.careers-section {
    padding: 80px 0;
    background: #f8fafc;
}

.careers-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: start;
}

.careers-copy h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3d25;
}

.careers-copy p {
    color: #4b5563;
    margin-bottom: 12px;
}

.careers-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.careers-perks li {
    position: relative;
    padding-left: 20px;
    color: #374151;
}

.careers-perks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: 700;
}

.careers-form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 24px;
    border: 1px solid #e5e7eb;
}

.careers-form-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #2c3d25;
}

.careers-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.careers-form label {
    font-weight: 600;
    color: #1f2937;
}

.careers-form input,
.careers-form select,
.careers-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    color: #1f2937;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.careers-form input:focus,
.careers-form select:focus,
.careers-form textarea:focus {
    outline: none;
    border-color: #2d5016;
    box-shadow: 0 0 0 3px rgba(45,80,22,0.18);
}

.careers-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #2d5016;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.careers-form button:hover {
    background: #254113;
}

.careers-form button:active {
    transform: translateY(1px);
}

.careers-success {
    margin-top: 12px;
    color: #2d5016;
    font-weight: 600;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .service-header {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .service-icon-large {
        font-size: 5rem;
        text-align: left;
    }

    .service-content {
        grid-template-columns: 1fr 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-row.full-width {
        grid-template-columns: 1fr;
    }
}
