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

:root {
    /* Brand Colors */
    --primary-green: #228B22;
    --primary-green-dark: #1a6b1a;
    --primary-green-light: #32a832;
    --secondary-brown: #8B4513;
    --accent-blue: #87CEEB;
    --accent-yellow: #FFD700;
    --background-beige: #F5F5DC;
    --white: #FFFFFF;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --gradient-primary: linear-gradient(135deg, #228B22 0%, #32a832 100%);
    --gradient-hero: linear-gradient(135deg, rgba(34, 139, 34, 0.95) 0%, rgba(26, 107, 26, 0.9) 50%, rgba(51, 51, 51, 0.85) 100%);
    
    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-padding: 1.5rem;
    --section-padding: 4rem 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 139, 34, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(135, 206, 235, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(34, 139, 34, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--container-padding);
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-green);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding-top: 80px;
}

/* Top Section: White Background */
.hero-top {
    background-color: var(--white);
    padding: 2rem 0;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-gray);
    margin: 0;
}

.hero-subheadline {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

.hero-cta-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.hero-cta-btn:hover {
    background: linear-gradient(135deg, #1e7a1e 0%, #228B22 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 139, 34, 0.4);
}

.hero-image-content {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--white);
    border: 2px solid rgba(51, 51, 51, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.badge-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-stars {
    color: var(--dark-gray);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.badge-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
}

/* Bottom Section: Dark Green Background */
.hero-bottom {
    background: linear-gradient(135deg, var(--primary-green-dark) 0%, var(--primary-green) 100%);
    padding: 4rem 0;
}

.hero-bottom-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background-beige);
    text-align: center;
    margin: 0 0 1rem 0;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.feature-icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-beige);
}

.feature-icon-wrapper svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--background-beige);
    margin: 0;
    line-height: 1.2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-align: center;
    min-width: 160px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 
        0 6px 20px rgba(34, 139, 34, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e7a1e 0%, #228B22 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(34, 139, 34, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:focus {
    outline: 3px solid rgba(34, 139, 34, 0.5);
    outline-offset: 2px;
}

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

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

.btn-secondary:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.contact .section-title {
    margin-bottom: 2.5rem;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    background: linear-gradient(180deg, #f8faf9 0%, #ffffff 30%, #f5f8f6 100%);
    position: relative;
    overflow: hidden;
    padding: 0 0 4rem 0;
}

.services .section-title {
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.services .section-title::after {
    background: var(--gradient-primary);
    height: 4px;
    width: 100px;
}

.services .container {
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 249, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.05) 0%, rgba(50, 168, 50, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.08) 0%, rgba(50, 168, 50, 0.12) 100%);
    border-color: rgba(34, 139, 34, 0.3);
    box-shadow: 
        0 15px 35px rgba(34, 139, 34, 0.2),
        0 5px 15px rgba(34, 139, 34, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover::after {
    width: 300px;
    height: 300px;
}

.service-icon-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon-outline::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1) 0%, rgba(50, 168, 50, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: scale(0.8);
}

.service-icon-outline svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-green);
    stroke-width: 2;
    fill: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.service-item:hover .service-icon-outline {
    transform: scale(1.1) rotate(5deg);
}

.service-item:hover .service-icon-outline::before {
    opacity: 1;
    transform: scale(1.2);
}

.service-item:hover .service-icon-outline svg {
    stroke: var(--primary-green-dark);
    stroke-width: 2.5;
    filter: drop-shadow(0 4px 8px rgba(34, 139, 34, 0.3));
    transform: scale(1.15);
}

.service-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 139, 34, 0.3);
}

.service-icon-circle svg {
    width: 32px;
    height: 32px;
    stroke: #FFFFFF;
    stroke-width: 3;
    fill: none;
}

.service-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-item:hover .service-label {
    color: var(--primary-green-dark);
    font-weight: 700;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(34, 139, 34, 0.2);
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.service-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.service-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--text-gray);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
}

.service-modal-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
    transform: rotate(90deg);
}

.service-modal-body {
    padding: 3rem;
}

.service-detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.service-detail-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
}

.service-detail-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    box-shadow: 
        0 6px 20px rgba(34, 139, 34, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: linear-gradient(135deg, #1e7a1e 0%, #228B22 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 
        0 10px 30px rgba(34, 139, 34, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.slider-btn:focus {
    outline: 3px solid rgba(34, 139, 34, 0.5);
    outline-offset: 2px;
}

.slider-btn-prev {
    left: -25px;
}

.slider-btn-next {
    right: -25px;
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.services-dots,
.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot.active {
    background-color: var(--primary-green);
    transform: scale(1.2);
}

/* ============================================
   About Section
   ============================================ */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 98px, rgba(34, 139, 34, 0.02) 100px),
        repeating-linear-gradient(0deg, transparent, transparent 98px, rgba(34, 139, 34, 0.02) 100px);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.12);
    border-left-width: 6px;
}

.feature-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: linear-gradient(135deg, #f5f5dc 0%, #faf9f5 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem 0;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    border: 1px solid rgba(34, 139, 34, 0.1);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: 'Merriweather', serif;
    color: rgba(34, 139, 34, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(34, 139, 34, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonial-rating {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(34, 139, 34, 0.01) 2px, rgba(34, 139, 34, 0.01) 4px);
    z-index: 0;
}


.contact .container {
    position: relative;
    z-index: 1;
    padding: 2rem var(--container-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

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

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-left: 5px solid var(--primary-green);
    padding: 1.75rem 1.5rem;
    display: flex;
    gap: 1.25rem;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.contact-card:hover {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(34, 139, 34, 0.15);
    transform: translateY(-3px) translateX(3px);
    border-left-width: 6px;
}

.contact-icon {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
    color: var(--primary-green);
}

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

.contact-details {
    flex: 1;
}

.contact-details h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.btn-directions {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(34, 139, 34, 0.3);
}

.btn-directions:hover {
    background: linear-gradient(135deg, #1e7a1e 0%, #228B22 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.4);
}

.contact-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-green-dark);
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    height: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--primary-green);
    background-color: var(--white);
    padding: 4px;
    box-sizing: border-box;
}

.contact-map .map-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}


/* ============================================
   Footer
   ============================================ */
.footer {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 139, 34, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-green);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--accent-blue);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
    }
    
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }
    
    /* Hero Section */
    .hero-top {
        padding: 2rem 0;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text-content {
        order: 1;
        text-align: center;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-image-content {
        order: 2;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .hero-cta-btn {
        align-self: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-bottom {
        padding: 3rem 0;
    }
    
    .hero-bottom-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-icon-wrapper {
        width: 36px;
        height: 36px;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .hero-image-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }
    
    /* Services & Testimonials Sliders */
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .service-label {
        font-size: 0.8rem;
    }
    
    .service-icon-outline,
    .service-icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-circle svg {
        width: 24px;
        height: 24px;
    }
    
    .service-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .service-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    /* About Section */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact {
        margin: 1.5rem 1rem;
        border-width: 3px;
        border-radius: 15px;
    }
    
    .contact .container {
        padding: 1.5rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map {
        height: 400px;
        order: -1;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .btn-directions {
        width: 100%;
        text-align: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-top {
        padding: 2rem 0;
    }
    
    .hero-content-wrapper {
        gap: 2rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .hero-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-bottom {
        padding: 2.5rem 0;
    }
    
    .hero-bottom-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .hero-image-badge {
        bottom: 0.75rem;
        right: 0.75rem;
        padding: 0.6rem 1rem;
    }
    
    .badge-stars {
        font-size: 0.9rem;
    }
    
    .badge-score {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-label {
        font-size: 0.75rem;
    }
    
    .service-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .service-modal-body {
        padding: 2rem 1.5rem;
    }
    
    .trust-item {
        padding: 0.875rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
}

/* ============================================
   Accessibility Improvements
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

