/* Reset and Helper Styles */
:root {
    --primary-green: #1d4d31;
    --secondary-green: #2a6a44;
    --accent-green: #79f2a6;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --bg-light: #f1fcf5;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

.header-top-bar-two {
    padding: 0.625rem 0 !important;
}

/* New Hero Section Styles */
.custom-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://groundsmennc.com/assets/images/my-yard-2023-11-27-05-10-50-utc.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.hero-logo img {
    height: 80px; /* Adjust size as needed */
    width: auto;
}

@media (max-width: 991px) {
    .hero-logo {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 30px;
        text-align: center;
    }
}

.custom-hero .hero-content {
    max-width: 650px;
}

.custom-hero .badge-top {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.custom-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-white);
}

.custom-hero h1 span {
    color: var(--accent-green);
}

.custom-hero p.hero-copy {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.custom-hero .hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.btn-primary-custom,
.btn-secondary-custom {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    font-size: 16px;
}

.btn-primary-custom {
    background-color: var(--accent-green);
    color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(121, 242, 166, 0.3);
}

.btn-primary-custom:hover {
    background-color: #5edb8e;
    transform: translateY(-3px);
    color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(121, 242, 166, 0.4);
}

.btn-secondary-custom {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-custom:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--text-white);
}

.hero-stats {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #86EFAC;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-gray);
    margin-top: 10px;
    font-weight: 700;
}

/* Form Styles */
.hero-form-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    color: #333;
    max-width: 450px;
    margin-left: auto;
}

.hero-form-card h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-green);
}

.hero-form-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.hero-form-card .form-group {
    margin-bottom: 18px;
}

.hero-form-card .form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 12px 20px;
    font-size: 15px;
    background-color: #f8fafc;
    transition: var(--transition);
}

.hero-form-card .form-control:focus {
    border-color: var(--secondary-green);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(42, 106, 68, 0.1);
    outline: none;
}

.hero-form-card textarea.form-control {
    height: 120px;
    resize: none;
}

.hero-form-card .btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--text-white);
    padding: 18px;
    border-radius: 12px;
    font-weight: 700;
    border: none;
    margin-top: 15px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 16px;
}

.hero-form-card .btn-submit:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Services Grid Styles */
.services-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/bush-trimming-7.jpg);
    
    /* Positioning and Sizing */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    
    /* This creates the fixed scrolling effect */
    background-attachment: fixed;
}

.section-label {
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.services-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
}

.service-card {
    background: var(--bg-light);
    border: 1px solid #e1f5e9;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(29, 77, 49, 0.08);
    background: #fff;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 28px;
    color: var(--text-white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--secondary-green);
}

.service-card h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 18px;
}

.service-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

/* Why Choose Us Styles */
.choose-us-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background-color: var(--bg-light);
}

.choose-us-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 60px;
}

.choose-card {
    background: #ffffff;
    border: 1px solid #e1f5e9;
    padding: 35px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    height: 100%;
    transition: var(--transition);
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.check-icon {
    min-width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.choose-card-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.choose-card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Reviews Section Styles */
.reviews-section {
    padding: clamp(60px, 10vw, 120px) 0;
    background-color: var(--bg-light);
}

.reviews-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 50px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px;
    border-radius: 24px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.review-card:hover {
    /* transform: translateY(-10px); */
    border-color: var(--accent-green);
    box-shadow: 0 15px 40px rgba(29, 77, 49, 0.08);
}

/* Swiper Styles */
.reviews-swiper .swiper-wrapper {
    display: flex;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.reviews-swiper .review-card {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.reviews-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    opacity: 1;
    transition: var(--transition);
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--secondary-green) !important;
    width: 30px;
    border-radius: 10px;
}

.review-stars {
    color: #ffb400;
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-green);
    margin: 0;
}

.author-info span {
    font-size: 13px;
    color: #777;
}

.google-verified {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 25px;
    height: 25px;
    object-fit: contain;
}

/* Final Sections Styles */
.service-areas-footer {
    background-color: var(--primary-green);
    padding: 80px 0;
    color: var(--text-white);
}

.service-areas-footer h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    color: var(--text-white);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    color: var(--text-white);
    transition: var(--transition);
}

.area-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-green);
}

.final-cta {
    background-color: var(--secondary-green);
    padding: clamp(80px, 12vw, 140px) 0;
    color: var(--text-white);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 25px;
}

.final-cta p {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
}

.btn-cta-white {
    background-color: #ffffff;
    color: var(--primary-green);
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta-white:hover {
    background-color: var(--accent-green);
    transform: translateY(-5px);
    color: var(--primary-green);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:focus,
.btn-cta-white:active {
    color: var(--primary-green);
    text-decoration: none;
    outline: none;
}

/* Responsive Overrides (Industry Grade) */

/* Tablet and below */
@media (max-width: 991px) {
    .custom-hero {
        padding: 20px 0;
        text-align: center;
        flex-direction: column;
    }

    .custom-hero .hero-content {
        margin: 0 auto 60px;
    }

    .hero-form-card {
        margin: 0 auto;
    }

    .custom-hero .hero-btns {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item {
        padding: 0 20px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .custom-hero .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 0;
        padding-top: 30px;
    }

    .stat-item {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
        padding: 0 10px;
        width: 100%;
        text-align: center;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .hero-form-card {
        padding: 30px 20px;
    }

    .services-section h2,
    .choose-us-section h2 {
        margin-bottom: 40px;
    }

    .choose-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .custom-hero h1 {
        font-size: 32px;
    }

    .badge-top {
        font-size: 11px;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}

/* Sticky Call Header */
.sticky-call-header {
    background-color: var(--primary-green);
    color: var(--text-white);
    text-align: center;
    padding: 3px 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-call-header a {
    color: var(--accent-green);
    text-decoration: none;
    font-weight: 800;
    font-size: clamp(18px, 4vw, 20px);
    transition: var(--transition);
}

.sticky-call-header a:hover {
    color: var(--text-white);
    text-decoration: none;
}