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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-padding-top: 100px;
}

html {
    scroll-behavior: smooth;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #4a7c3b 0%, #6b9b5f 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

header h1 {
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-logo {
    height: 40px;
    width: auto;
    display: block;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}


.footer-logo {
    height: 80px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.logo-bounce {
    animation: bounce 0.4s ease;
}

.pickle-counter {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-right: 15px;
    order: -1;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 5px;
}

.desktop-nav .nav-link {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.desktop-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

.desktop-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
}

.desktop-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-book-btn {
    display: inline-block;
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
    
    .mobile-nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 30px 30px;
}

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

.nav-menu a {
    display: block;
    padding: 15px 0;
    color: #4a7c3b;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #e0e0e0;
    transition: padding-left 0.3s;
}

.nav-menu a:hover {
    padding-left: 10px;
    color: #7cb342;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
}

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

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #4a7c3b;
    cursor: pointer;
    background: none;
    border: none;
}

.cta-button,
a.cta-button,
button.cta-button {
    background: #7cb342;
    color: white !important;  /* Added !important to force white text */
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #689f38;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Page Header for Internal Pages */
.page-header {
    background: #5B8241;
    color: white;
    padding: 60px 20px 40px;
    text-align: center;
}

.page-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: white;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Section */
.hero {
    background: #5B8241 !important;
    color: white !important;
    padding: 100px 20px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white !important;
}

.container h2 {
    text-align: center;
    padding: 25px 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: white !important;
}

.hero-badge {
    background: white;
    color: #4a7c3b;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 20px;
    font-weight: bold;
}

/* Section Styling */
section {
    padding: 60px 20px;
    scroll-margin-top: 100px;
}

section:nth-child(even) {
    background: #f8f9fa;
}

h3 {
    color: #4a7c3b;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Services */
.pricing-note {
    background: #fff9e6;
    border-left: 4px solid #ffb300;
    padding: 20px;
    margin: 20px auto 30px;
    max-width: 800px;
    border-radius: 5px;
}

.pricing-note p {
    margin: 5px 0;
    color: #555;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

/* Featured Service (Almost-Overnight) */
.featured-service {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 30px 0;
}

.featured-service .service-card {
    max-width: 500px;
    background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e9 100%);
    border: 3px solid #7cb342;
    box-shadow: 0 5px 25px rgba(124, 179, 66, 0.3);
}

.featured-service .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.4);
}

.featured-service .service-card h4 {
    font-size: 1.5rem;
}

.featured-service .price {
    font-size: 2.2rem;
}

.service-card h4 {
    color: #4a7c3b;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #555;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    color: #7cb342;
    font-weight: bold;
    margin: 15px 0;
}

.service-details {
    text-align: left;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f1f8e9;
}

.service-details h5 {
    color: #4a7c3b;
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    font-size: 0.9rem;
    color: #666;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7cb342;
    font-weight: bold;
}

/* Photo Carousel */
.carousel-section {
    padding: 60px 20px;
    background: white;
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.carousel-container h3 {
    margin-bottom: 40px;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    color: #4a7c3b;
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #7cb342;
    transform: scale(1.3);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

/* About */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #333;
}

.about-content p strong {
    color: #4a7c3b;
    font-size: 1.2rem;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge span {
    color: #333;
}

.badge strong {
    color: #4a7c3b;
}

/* Certifications Section */
.certifications {
    margin-top: 40px;
    padding: 30px;
    background: #f1f8e9;
    border-radius: 10px;
}

.certifications h4 {
    color: #4a7c3b;
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.cert-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cert-logo {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.cert-item h5 {
    color: #4a7c3b;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cert-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #7cb342;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: #4a7c3b;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Service Area */
.area-list {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

/* Contact */
.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #333;
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h4 {
    color: #4a7c3b;
    margin-bottom: 10px;
}

.contact-card a {
    color: #7cb342;
    text-decoration: none;
    font-weight: bold;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-form h4 {
    color: #4a7c3b;
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #7cb342;
}

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

.form-submit {
    text-align: center;
}

.form-submit button {
    background: #7cb342;
    color: white;
    padding: 15px 50px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit button:hover {
    background: #689f38;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* FAQ Page Specific */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #7cb342;
}

.faq-item h4 {
    color: #4a7c3b;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    line-height: 1.8;
}

/* Team Page Specific */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #7cb342;
}

.team-member h4 {
    color: #4a7c3b;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-role {
    color: #7cb342;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.team-bio {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.team-certifications {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f1f8e9;
}

.team-certifications h5 {
    color: #4a7c3b;
    font-size: 1rem;
    margin-bottom: 10px;
}

.team-certifications ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.team-certifications li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.team-certifications li:before {
    content: "✓ ";
    color: #7cb342;
    font-weight: bold;
}

/* Employment Page Specific */
.job-section {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.job-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f8e9;
}

.job-title {
    color: #4a7c3b;
    font-size: 2rem;
    margin-bottom: 10px;
}

.job-type {
    color: #7cb342;
    font-size: 1.2rem;
    font-weight: 600;
}

.job-content h4 {
    color: #4a7c3b;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.job-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.job-content ul {
    margin: 15px 0 25px 20px;
    color: #555;
}

.job-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.eeo-statement {
    background: #f1f8e9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #7cb342;
}

.eeo-statement p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #33691e;
    color: white;
    padding: 40px 20px 20px;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    header h1 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .carousel-slide img {
        height: 300px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .job-section {
        padding: 30px 20px;
    }
}

/* Social Media Icons */
.social-link:hover {
    transform: scale(1.1);
}

.social-link svg {
    transition: all 0.3s;
}

.social-link:hover svg {
    filter: brightness(1.2);
}

