/* New Sections CSS Styles */

/* Leaf Removal Section */
.leaf-removal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--soft-cream) 100%);
}

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

.leaf-removal-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.leaf-removal-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.leaf-removal-hero {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.leaf-removal-image-wrapper {
    position: relative;
}

.leaf-removal-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seasonal-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(127, 176, 105, 0.4);
}

.badge-icon {
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
}

.leaf-intro-text {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.leaf-highlight-box {
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-cream) 100%);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: start;
    gap: 15px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-sage);
}

.highlight-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.leaf-highlight-box p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.leaf-services-overview {
    margin-bottom: 30px;
}

.leaf-services-overview h3 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tag {
    background: white;
    border: 2px solid var(--light-mint);
    padding: 10px 18px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary-forest);
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: var(--light-mint);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 176, 105, 0.2);
}

.tag-icon {
    font-size: 16px;
}

.leaf-property-types {
    margin-bottom: 30px;
}

.leaf-property-types h4 {
    font-size: 20px;
    color: var(--primary-forest);
    margin-bottom: 15px;
    font-weight: 600;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.property-item {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.property-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(127, 176, 105, 0.15);
}

.property-icon {
    font-size: 24px;
}

.leaf-footer-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
    padding-top: 20px;
    border-top: 1px solid var(--light-mint);
}

.leaf-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.leaf-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

.cta-icon {
    font-size: 20px;
}

/* Mobile Responsiveness for Leaf Removal Section */
@media (max-width: 1024px) {
    .leaf-removal-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .leaf-removal-title {
        font-size: 32px;
    }

    .leaf-removal-main {
        padding: 30px 20px;
    }

    .service-tags {
        flex-direction: column;
    }

    .service-tag {
        width: 100%;
        justify-content: center;
    }

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

    .seasonal-badge {
        top: 10px;
        left: 10px;
        padding: 8px 15px;
    }

    .leaf-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Info Section */
.pricing-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
}

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

.pricing-info-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-info-intro {
    font-size: 22px;
    color: var(--primary-sage);
    text-align: center;
    margin-bottom: 50px;
}

.pricing-factors {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.pricing-factors h3 {
    font-size: 28px;
    color: var(--primary-forest);
    margin-bottom: 30px;
    text-align: center;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.factor-card {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.2);
}

.factor-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.factor-card h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin-bottom: 10px;
    font-weight: 600;
}

.factor-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.pricing-process {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.pricing-process h3 {
    font-size: 28px;
    color: var(--primary-forest);
    margin-bottom: 40px;
    text-align: center;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin-bottom: 5px;
}

.process-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.process-arrow {
    font-size: 30px;
    color: var(--primary-sage);
    margin: 0 20px;
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.highlight-text {
    font-size: 28px;
    font-weight: 600;
}

.pricing-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-forest);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Quality Guarantee Section */
.quality-guarantee-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--warm-beige) 100%);
}

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

.quality-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.quality-intro {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.quality-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.quality-subtitle {
    font-size: 32px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.quality-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.quality-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.2);
}

.quality-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.quality-icon {
    font-size: 40px;
    color: white;
}

.quality-card h4 {
    font-size: 20px;
    color: var(--primary-forest);
    margin-bottom: 10px;
    font-weight: 600;
}

.quality-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quality-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-sage);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.feature-check {
    color: var(--primary-sage);
    font-size: 20px;
    font-weight: bold;
}

.quality-cta {
    text-align: center;
    margin-top: 40px;
}

.quality-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.quality-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

/* Seniors Care Section */
.seniors-care-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}

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

.seniors-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.seniors-intro {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.seniors-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.seniors-services h3 {
    font-size: 28px;
    color: var(--primary-forest);
    margin-bottom: 30px;
    text-align: center;
}

.seniors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.senior-service-card {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.senior-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.2);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: block;
}

.senior-service-card h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin-bottom: 8px;
    font-weight: 600;
}

.senior-service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.seniors-promise {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-sage);
}

.seniors-promise h4 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 15px;
    font-weight: 600;
}

.seniors-promise p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
}

.seniors-cta {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.seniors-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

/* Contract Section */
.contract-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--soft-cream) 100%);
}

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

.contract-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.contract-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contract-image {
    position: relative;
}

.contract-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contract-seal {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary-sage);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.4);
    font-weight: 600;
    font-size: 14px;
}

.contract-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contract-services {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contract-services h3 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 10px;
    font-weight: 600;
}

.contract-services p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-cream) 100%);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--primary-forest);
    font-weight: 500;
}

.contract-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-box {
    display: flex;
    gap: 15px;
    align-items: start;
}

.benefit-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.benefit-box h4 {
    font-size: 16px;
    color: var(--primary-forest);
    margin-bottom: 5px;
    font-weight: 600;
}

.benefit-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contract-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.contract-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

/* Family House Section */
.family-house-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
}

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

.family-house-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.family-house-intro {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.family-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.family-service-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.family-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.2);
}

.service-icon-big {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.family-service-card h3 {
    font-size: 20px;
    color: var(--primary-forest);
    margin-bottom: 10px;
    font-weight: 600;
}

.family-service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.service-frequency {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-sage);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.family-cta-section {
    text-align: center;
}

.family-cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.family-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

/* Large Estates Section */
.large-estates-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--warm-beige) 100%);
}

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

.large-estates-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.large-estates-intro {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.estates-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.estates-subtitle {
    font-size: 28px;
    color: var(--primary-forest);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.estates-description {
    font-size: 18px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.estates-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-column {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-icon {
    font-size: 32px;
}

.feature-header h4 {
    font-size: 22px;
    color: var(--primary-forest);
    margin: 0;
    font-weight: 600;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.check-mark {
    color: var(--primary-sage);
    font-size: 18px;
    font-weight: bold;
}

.estates-stats {
    display: flex;
    justify-content: space-around;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-cream) 100%);
    border-radius: 15px;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    color: var(--primary-forest);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.estates-cta-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.estates-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

/* Long Term Section */
.long-term-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, #ffffff 100%);
}

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

.long-term-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.long-term-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.long-term-image {
    position: relative;
}

.long-term-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reliability-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-forest);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.4);
}

.badge-years {
    display: block;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-text {
    color: #38c838;
    font-size: 14px;
}

.long-term-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.6;
}

.long-term-services {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.long-term-services h3 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 25px;
    font-weight: 600;
}

.service-timeline {
    position: relative;
    padding-left: 30px;
}

.service-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--light-mint);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: start;
    gap: 20px;
}

.timeline-dot {
    position: absolute;
    left: -22px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--primary-sage);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-content h4 {
    font-size: 16px;
    color: var(--primary-forest);
    margin-bottom: 5px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.long-term-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.benefit-tag {
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--soft-cream) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    color: var(--primary-forest);
    font-weight: 500;
}

.long-term-promise {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-style: italic;
    text-align: center;
}

.long-term-cta {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.3);
}

.long-term-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--soft-cream) 0%, #ffffff 100%);
}

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

.faq-title {
    font-size: 48px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 20px;
    color: var(--primary-forest);
    margin: 0;
    font-weight: 600;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    padding-left: 60px;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    border-radius: 20px;
    color: white;
}

.faq-cta p {
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.faq-button {
    display: inline-block;
    padding: 18px 45px;
    background: white;
    color: var(--primary-forest);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile Responsiveness for All New Sections */
@media (max-width: 1024px) {
    .factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quality-cards,
    .seniors-grid,
    .family-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contract-content,
    .long-term-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .quality-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pricing-info-title,
    .quality-title,
    .seniors-title,
    .contract-title,
    .family-house-title,
    .large-estates-title,
    .long-term-title,
    .faq-title {
        font-size: 32px;
    }

    .factors-grid,
    .quality-cards,
    .seniors-grid,
    .family-services-grid {
        grid-template-columns: 1fr;
    }

    .process-flow {
        flex-direction: column;
        gap: 30px;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .quality-features {
        grid-template-columns: 1fr;
    }

    .contract-benefits {
        grid-template-columns: 1fr;
    }

    .estates-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .estates-stats {
        flex-direction: column;
        gap: 20px;
    }

    .reliability-badge {
        position: static;
        margin-top: 20px;
        width: 100%;
        border-radius: 15px;
        padding: 20px;
    }

    .faq-answer p {
        padding-left: 0;
    }

    .pricing-factors,
    .pricing-process,
    .quality-main,
    .seniors-main,
    .estates-main {
        padding: 30px 20px;
    }
}