@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Condensed:wght@400;700&display=swap');

:root {
    --primary-green: #6B8E23;
    --primary-green-dark: #5A781E;
    --primary-green-darker: #4B6318;
    --dark-blue-gray: #30475E;
    --lighter-green-olive: #A2B18E;
    --off-white: #F8F8F8;
    --light-gray: #E0E0E0;
    --subtle-red: #CD5C5C;
    --font-primary: 'Roboto', sans-serif;
    --font-condensed: 'Roboto Condensed', sans-serif;
    --header-height: 70px;
    --header-height-sticky: 56px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-blue-gray);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-green-dark);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-green);
    margin: 15px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background: var(--primary-green-dark);
    transform: scale(1.02);
}

.btn-primary:active {
    background: var(--primary-green-darker);
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: var(--dark-blue-gray);
    border: 2px solid var(--dark-blue-gray);
}

.btn-secondary:hover {
    background: var(--lighter-green-olive);
    border-color: var(--dark-blue-gray);
}

.btn-secondary:active {
    transform: scale(0.98, 0.95);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--off-white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.sticky {
    height: var(--header-height-sticky);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue-gray);
    display: none;
}

.nav-desktop {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-blue-gray);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.header-contact {
    display: none;
    flex-direction: column;
    gap: 5px;
    font-size: 0.85rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-blue-gray);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--off-white);
    z-index: 1001;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: var(--dark-blue-gray);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue-gray);
    display: block;
    padding: 10px 0;
}

.mobile-nav-cta {
    margin-top: 30px;
}

.mobile-nav-contact {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 1rem;
}

.hero {
    padding-top: var(--header-height);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--dark-blue-gray);
}

.hero-split {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
}

.hero-before, .hero-after {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-before img, .hero-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-before::after {
    content: 'BEFORE';
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--subtle-red);
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}

.hero-after::after {
    content: 'AFTER';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
}

.hero-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--off-white);
    cursor: ew-resize;
    z-index: 10;
}

.hero-slider::before {
    content: '< >';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--off-white);
    padding: 10px;
    border-radius: 50%;
    font-size: 0.8rem;
    white-space: nowrap;
}

.hero-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 20;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--off-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.hero-content p {
    color: var(--off-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.why-choose-us {
    background: var(--off-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.benefit-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card .icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.benefit-card h3 {
    color: var(--dark-blue-gray);
    margin-bottom: 10px;
}

.benefit-card .tooltip {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--primary-green);
    color: white;
    padding: 15px;
    font-size: 0.9rem;
    transition: bottom 0.3s ease;
}

.benefit-card:hover .tooltip {
    bottom: 0;
}

.problem-awareness {
    background: var(--light-gray);
}

.problem-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-content h2 {
    color: var(--dark-blue-gray);
}

.problem-list {
    list-style: none;
}

.problem-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--lighter-green-olive);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.problem-list li::before {
    content: '⚠';
    color: var(--subtle-red);
    font-size: 1.2rem;
}

.problem-image {
    border-radius: 12px;
    overflow: hidden;
}

.problem-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.our-process {
    background: var(--off-white);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 2rem;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.process-step .step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step .step-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
    fill: none;
}

.process-step h4 {
    color: var(--dark-blue-gray);
}

.process-line {
    display: none;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--light-gray);
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.service-card .icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.service-card h4 {
    color: var(--dark-blue-gray);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
}

.nationwide-section {
    background: var(--lighter-green-olive);
    padding: 80px 0;
    text-align: center;
}

.nationwide-map {
    max-width: 800px;
    margin: 30px auto;
}

.nationwide-map img {
    width: 100%;
    border-radius: 12px;
}

.stat-counter {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-green);
    margin: 20px 0;
}

.humane-promise {
    background: var(--off-white);
}

.humane-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.humane-image {
    border-radius: 12px;
    overflow: hidden;
}

.humane-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.humane-text h2 {
    color: var(--dark-blue-gray);
    margin-bottom: 1rem;
}

.testimonials {
    background: var(--off-white);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-blue-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: transparent;
    color: var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-green);
}

.faq-section {
    background: var(--off-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue-gray);
    text-align: left;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.about-snippet {
    background: var(--off-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.final-cta {
    background: var(--primary-green);
    text-align: center;
}

.final-cta h2 {
    color: var(--off-white);
    margin-bottom: 2rem;
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.final-cta .btn-primary {
    background: var(--dark-blue-gray);
    color: white;
}

.final-cta .btn-primary:hover {
    background: #243444;
}

.final-cta .btn-secondary {
    border-color: white;
    color: white;
}

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

.footer {
    background: var(--dark-blue-gray);
    color: var(--off-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.7;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-info a {
    color: var(--off-white);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.footer-contact-info a:hover {
    color: var(--primary-green);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links h3 {
    color: var(--off-white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--off-white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-cta h3 {
    color: var(--off-white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-cta-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-cta-item {
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-hero {
    padding-top: var(--header-height);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(48, 71, 94, 0.7);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.page-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.services-hero {
    background-image: url('images/tranquil_backyard.png');
}

.about-hero {
    background-image: url('images/about_founder.png');
}

.locations-hero {
    background-image: url('images/nationwide_map.png');
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--off-white) 100%);
}

.education-hero {
    background-image: url('images/education_handbook.png');
}

.services-intro {
    background: var(--off-white);
    text-align: center;
}

.services-intro p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.detail-service {
    padding: 60px 0;
}

.detail-service:nth-child(even) {
    background: var(--light-gray);
}

.detail-service:nth-child(odd) {
    background: var(--off-white);
}

.detail-service-inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-service-image {
    border-radius: 12px;
    overflow: hidden;
}

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

.detail-service-content h3 {
    color: var(--dark-blue-gray);
    margin-bottom: 1rem;
}

.detail-service-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.detail-service-content ul {
    list-style: none;
}

.detail-service-content li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-service-content li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

.exclusion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.exclusion-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.exclusion-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--lighter-green-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exclusion-card h4 {
    color: var(--dark-blue-gray);
    margin-bottom: 10px;
}

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

.service-advantages h2 {
    color: white;
}

.advantages-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.advantage-item .icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-item .icon svg {
    width: 25px;
    height: 25px;
    stroke: var(--primary-green);
}

.mission-values {
    background: var(--off-white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card .icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.our-story {
    background: var(--lighter-green-olive);
    text-align: center;
}

.story-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-green);
}

.stat-item .label {
    font-size: 1rem;
    color: var(--dark-blue-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card-content {
    padding: 25px;
    text-align: center;
}

.team-card h4 {
    color: var(--dark-blue-gray);
    margin-bottom: 5px;
}

.team-card .title {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.team-card .bio {
    font-size: 0.9rem;
    color: #666;
}

.differentiators {
    background: var(--light-gray);
}

.differentiator-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.differentiator-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.differentiator-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.differentiator-card .icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-green);
    stroke-width: 1.5;
    fill: none;
}

.community-section {
    background: var(--off-white);
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.community-image {
    border-radius: 12px;
    overflow: hidden;
}

.community-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.locations-search {
    background: var(--off-white);
    text-align: center;
}

.search-form {
    max-width: 500px;
    margin: 30px auto 0;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.local-benefits {
    background: var(--lighter-green-olive);
}

.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefits-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefits-image {
    border-radius: 12px;
    overflow: hidden;
}

.benefits-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-locations {
    background: var(--off-white);
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.location-link {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--light-gray);
    color: var(--dark-blue-gray);
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.location-link:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.call-service {
    background: var(--lighter-green-olive);
    text-align: center;
}

.call-service h3 {
    margin-bottom: 1rem;
}

.call-service p {
    margin-bottom: 2rem;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-form-wrapper {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-blue-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

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

.direct-contact {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

.direct-contact h3 {
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-method .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method .icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.contact-method h4 {
    margin-bottom: 5px;
}

.contact-method p {
    margin: 0;
    font-size: 0.95rem;
}

.emergency-note {
    background: var(--subtle-red);
    color: white;
    text-align: center;
    border-radius: 12px;
    padding: 30px;
}

.emergency-note h3 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-note p {
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.emergency-note .btn {
    background: white;
    color: var(--subtle-red);
}

.service-map {
    background: var(--off-white);
    text-align: center;
}

.service-map img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px auto;
}

.operating-hours {
    background: var(--lighter-green-olive);
}

.hours-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.trust-badges {
    background: var(--off-white);
    text-align: center;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.badge-item {
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.badge-item .icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.education-resources {
    background: var(--off-white);
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 2rem;
}

.resource-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.resource-card .image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-card .image svg {
    width: 60px;
    height: 60px;
    stroke: var(--primary-green);
}

.resource-card-content {
    padding: 25px;
}

.resource-card h4 {
    color: var(--dark-blue-gray);
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 0.95rem;
    color: #666;
}

.bird-guide {
    background: var(--light-gray);
}

.bird-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    justify-content: center;
}

.bird-filter {
    padding: 8px 20px;
    border: 2px solid var(--primary-green);
    background: transparent;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.bird-filter:hover,
.bird-filter.active {
    background: var(--primary-green);
    color: white;
}

.bird-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 2rem;
}

.bird-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.bird-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--lighter-green-olive);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bird-card h4 {
    color: var(--dark-blue-gray);
    margin-bottom: 10px;
}

.bird-card p {
    font-size: 0.9rem;
    color: #666;
}

.prevention-section {
    background: var(--off-white);
}

.prevention-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prevention-tips {
    list-style: none;
}

.prevention-tips li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.prevention-tips li::before {
    content: '→';
    color: var(--primary-green);
    font-weight: bold;
}

.prevention-image {
    border-radius: 12px;
    overflow: hidden;
}

.prevention-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.articles-section {
    background: var(--lighter-green-olive);
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 2rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.article-card .image {
    height: 180px;
    background: var(--light-gray);
}

.article-card-content {
    padding: 25px;
}

.article-card h4 {
    color: var(--dark-blue-gray);
    margin-bottom: 10px;
}

.article-card .date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .process-step {
        flex: 1;
        max-width: 250px;
    }
    
    .process-line {
        display: block;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--lighter-green-olive);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .humane-content {
        flex-direction: row;
        align-items: center;
    }
    
    .humane-image, .humane-text {
        flex: 1;
    }
    
    .about-content {
        flex-direction: row;
        align-items: center;
    }
    
    .about-image, .about-text {
        flex: 1;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .detail-service-inner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }
    
    .detail-service-inner.reverse {
        flex-direction: row-reverse;
    }
    
    .detail-service-image, .detail-service-content {
        flex: 1;
    }
    
    .exclusion-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .differentiator-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .community-content {
        flex-direction: row;
        align-items: center;
    }
    
    .community-image, .community-text {
        flex: 1;
    }
    
    .locations-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .contact-layout {
        flex-direction: row;
    }
    
    .contact-form-wrapper, .direct-contact {
        flex: 1;
    }
    
    .badges-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bird-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .prevention-content {
        flex-direction: row;
        align-items: center;
    }
    
    .prevention-text, .prevention-image {
        flex: 1;
    }
    
    .articles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .advantages-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .final-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    :root {
        --header-height: 80px;
    }
    
    .container {
        padding: 0 60px;
    }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.75rem; }
    
    .nav-desktop {
        display: block;
    }
    
    .hamburger {
        display: none;
    }
    
    .header-cta {
        display: block;
    }
    
    .header-contact {
        display: flex;
    }
    
    .hero-split {
        position: absolute;
    }
    
    .hero-content {
        bottom: 10%;
    }
    
    .benefits-grid {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stat-counter {
        font-size: 5rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
    }
    
    .locations-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .bird-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 767px) {
    .header {
        height: 60px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .page-hero {
        min-height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem;
    }
}