/* Garden Site Main Styles */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

:root {
    /* Основные цвета - природная палитра */
    --primary-sage: #7FB069;
    /* Шалфейно-зеленый - основной */
    --primary-forest: #2D6A4F;
    /* Лесной зеленый - для акцентов */
    --dark-forest: #1B5E3F;
    /* Темно-лесной - для кнопок */
    --light-mint: #B7E4C7;
    /* Мятный - для фонов */
    --accent-terra: #BC6C25;
    /* Терракотовый - для выделения */
    --warm-beige: #F5EFE7;
    /* Теплый бежевый - для секций */
    --soft-cream: #FAF3E0;
    /* Кремовый - для карточек */

    /* Текстовые цвета */
    --text-dark: #2C3E50;
    /* Темно-серый с синим оттенком */
    --text-light: #5A6C7D;
    /* Средне-серый */
    --white: #ffffff;
    --section-bg: #FAFAFA;
    /* Очень светлый серый */
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--section-bg);
}

/* Header Styles */
.site-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 50px;
    height: 50px;
}

.logo-text h2 {
    font-size: 18px;
    color: var(--primary-forest);
    margin: 0;
}

.logo-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--light-mint);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-link:hover {
    background: var(--primary-sage);
    transform: translateY(-2px);
    color: white;
}

/* Hero Section */
.garden-hero {
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--primary-sage) 100%);
    padding: 60px 20px;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text .subtitle {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

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

.trust-badge-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-sage);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.trust-badge-text {
    font-weight: 600;
    color: var(--text-dark);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-forest);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(45, 106, 79, 0.3);
}

.cta-button:hover {
    background: var(--dark-forest);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 106, 79, 0.4);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

/* Section Styles */
.pricing-section,
.services-section,
.reviews-section,
.services-grid {
    padding: 80px 20px;
}

.pricing-container,
.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Modern Pricing Section */
.modern-pricing-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 80px 20px;
}

/* Pricing Hero Card */
.pricing-hero-card {
    background: linear-gradient(135deg, var(--light-mint) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 50px;
    margin: 40px 0 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-hero-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.pricing-hero-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlight-badge {
    background: var(--accent-terra);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    margin-right: 15px;
}

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

.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.pricing-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    height: auto;
}

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

.pricing-benefits .benefit-item span:last-child {
    font-size: 15px;
    line-height: 1.4;
    color: var(--text-dark);
}

.pricing-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-showcase {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.price-label {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 20px 0;
}

.price-currency {
    font-size: 30px;
    color: var(--primary-forest);
    margin-top: 10px;
}

.price-number {
    font-size: 72px;
    font-weight: bold;
    color: var(--primary-forest);
    line-height: 1;
}

.price-tag {
    background: var(--accent-terra);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: -15px;
    right: -15px;
    transform: rotate(10deg);
}

/* Modern Pricing Grid */
.modern-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.modern-price-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.modern-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-price-card.premium {
    border: 3px solid var(--primary-sage);
    transform: scale(1.05);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-terra);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
}

.price-card-header {
    padding: 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e9ecef;
}

.price-icon {
    width: 60px;
    height: 60px;
    background: var(--light-mint);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-forest);
}

.price-card-header h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

.price-card-body {
    padding: 30px;
}

.price-display {
    text-align: center;
    margin-bottom: 30px;
}

.from-text {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 5px;
}

.price-display .price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-display .currency {
    font-size: 24px;
    color: var(--primary-forest);
}

.price-display .price-amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
    font-weight: normal;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.price-footer {
    padding-top: 20px;
    text-align: center;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

/* Price Calculator CTA */
.price-calculator-cta {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.calculator-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.calculator-icon {
    flex-shrink: 0;
}

.calculator-icon svg {
    color: white;
}

.calculator-text {
    flex: 1;
    color: white;
}

.calculator-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.calculator-text p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Additional Info */
.pricing-additional-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-additional-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

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

.info-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-content h4 {
    font-size: 16px;
    color: var(--primary-forest);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Old Pricing Grid - Keep for compatibility */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

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

.price-box:hover {
    transform: translateY(-10px);
}

.price-box h3 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

.price-amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 20px 0;
}

.currency {
    font-size: 24px;
    vertical-align: top;
}

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

.pricing-info-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.pricing-info-box .highlight {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-forest);
    background: var(--light-mint);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Service Content Grid */
.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.service-content-grid.reverse {
    direction: rtl;
}

.service-content-grid.reverse>* {
    direction: ltr;
}

.service-text {
    font-size: 18px;
    line-height: 1.8;
}

.service-text p {
    margin-bottom: 20px;
}

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

/* Services Cards */
.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Content Grid Classes */
.content-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

/* Highlighted Sections */
.equipment-section,
.spring-section,
.quality-section,
.efficiency-section {
    background: var(--light-mint);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.highlighted-review {
    background: var(--warm-beige) !important;
    border: 2px solid var(--light-mint);
}

/* Gradient Section */
.gradient-section {
    background: linear-gradient(180deg, var(--light-mint) 0%, var(--primary-sage) 100%);
}

/* Text Utilities */
.text-intro {
    font-size: 18px;
    line-height: 1.8;
    margin: 30px 0;
}

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

.text-paragraph {
    font-size: 18px;
    line-height: 1.8;
}

.text-paragraph-mt {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 20px;
}

.text-paragraph-mt30 {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 30px;
}

.text-highlight {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 30px;
    font-weight: bold;
    text-align: center;
    color: var(--primary-forest);
}

/* List Styles */
.list-unstyled {
    list-style: none;
}

.list-checks {
    list-style: none;
    padding: 20px 0;
}

.list-checks li {
    margin: 10px 0;
}

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

.list-simple li {
    margin: 5px 0;
}

/* Headings */
.section-h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-h3-center {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.subsection-h4 {
    color: var(--primary-forest);
    margin-bottom: 10px;
}

.subsection-h3 {
    color: var(--primary-forest);
    margin-bottom: 20px;
}

.subsection-h3-dark {
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Images */
.img-full {
    width: 100%;
    border-radius: 15px;
}

/* Buttons */
.cta-button-center {
    display: block;
    text-align: center;
    width: 300px;
    margin: 0 auto;
}

.cta-button-center-mt30 {
    display: block;
    text-align: center;
    width: 300px;
    margin: 30px auto 0;
}

/* Boxes */
.white-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
}

.white-box-mb {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.white-box-mt {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.white-box-center {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-box-mt {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

/* Lawn Service Section */
.lawn-service-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--section-bg) 100%);
    padding: 80px 20px;
}

/* Service Timeline */
.service-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 60px;
    position: relative;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-forest);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(76, 146, 62, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.timeline-content {
    flex: 1;
}

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

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

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary-forest);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.timeline-connector {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    margin: 0 -20px;
    margin-top: -40px;
    z-index: 1;
}


/* Service Features Grid */
.service-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.feature-card.highlight {
    background: linear-gradient(135deg, var(--light-mint) 0%, white 100%);
    border: 2px solid var(--primary-sage);
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-terra);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.feature-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--light-mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-forest);
}

.feature-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: bold;
}

.price-highlight {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.price-highlight .price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-highlight .price-value {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-forest);
    margin: 10px 0;
}

.price-highlight .price-note {
    font-size: 16px;
    color: var(--primary-sage);
    font-weight: 600;
}

.feature-description {
    font-size: 16px;
    color: var(--text-dark);
    margin-top: 15px;
}

/* Service Showcase */
.service-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin: 60px 0;
}

.showcase-title {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

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

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

.service-item .service-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 16px;
    color: var(--primary-forest);
    margin-bottom: 8px;
}

.service-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

.showcase-image {
    position: relative;
}

.img-rounded {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Lawn CTA Section */
.lawn-cta-section {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.lawn-cta-section h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.lawn-cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

.feature-check {
    width: 24px;
    height: 24px;
    background: white;
    color: var(--primary-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 20px;
}

/* Mobile Responsive Styles for Lawn Service Section */
@media (max-width: 768px) {
    .lawn-service-section {
        padding: 40px 15px;
    }

    /* Service Timeline - вертикальная на мобильных */
    .service-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px auto;
        max-width: 100%;
    }

    .timeline-item {
        padding: 15px;
        gap: 12px;
    }

    .timeline-dot {
        width: 10px;
        height: 10px;
    }

    .timeline-content h4 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    .timeline-number {
        position: absolute;
        left: -30px;
        top: 0;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .timeline-connector {
        display: none;
    }


    /* Service Features Grid - одна колонка на мобильных */
    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .price-highlight .price-value {
        font-size: 36px;
    }

    .price-highlight .price-note {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 14px;
        padding: 6px 0 6px 20px;
    }

    .feature-description {
        font-size: 14px;
    }

    /* Service Showcase - вертикальная компоновка */
    .service-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        margin: 40px 0;
    }

    .showcase-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-item .service-icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .service-item h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .service-item p {
        font-size: 12px;
    }

    .showcase-image {
        order: -1;
        /* Изображение сверху на мобильных */
    }

    .image-badge {
        bottom: 10px;
        left: 10px;
        padding: 8px 15px;
    }

    .badge-text {
        font-size: 12px;
    }

    /* Lawn CTA Section */
    .lawn-cta-section {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .lawn-cta-section h3 {
        font-size: 24px;
    }

    .lawn-cta-section p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 18px;
        width: 100%;
        max-width: 280px;
    }
}

/* Tablet Responsive (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-timeline {
        margin: 40px auto 50px;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

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

    .service-showcase {
        padding: 40px;
    }

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

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        align-items: flex-start;
    }

    .feature-badge {
        right: 10px;
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* Lawn Mowing Section (NEW DESIGN) */
.lawn-mowing-section {
    background: linear-gradient(180deg, var(--section-bg) 0%, #ffffff 100%);
    padding: 80px 20px;
}

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

.lawn-hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.lawn-hero-text strong {
    color: var(--primary-forest);
    font-weight: 600;
}

.price-badge {
    background: var(--accent-terra);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 0 5px;
}

/* Process Cards */
.lawn-process-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

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

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-card.highlight {
    background: linear-gradient(135deg, var(--light-mint) 0%, white 50%);
    border: 2px solid var(--primary-sage);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: var(--light-mint);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-forest);
}

.process-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Main Content Layout */
.lawn-main-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.lawn-text-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-highlights {
    margin-top: 30px;
}

.service-highlights h4 {
    font-size: 20px;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list .icon {
    color: var(--primary-sage);
    font-weight: bold;
    font-size: 18px;
}

/* Price Showcase Card */
.lawn-price-showcase {
    position: sticky;
    top: 100px;
}

.price-card-main {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    position: relative;
}

.price-header {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.price-header h3 {
    font-size: 24px;
    margin: 0;
}

.badge-top {
    position: absolute;
    top: 15px;
    right: 20px;
    background: var(--accent-terra);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.price-details {
    padding: 35px;
}

.anfahrt-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--warm-beige);
    border-radius: 15px;
    margin-bottom: 20px;
}

.anfahrt-price .label {
    font-size: 18px;
    color: var(--text-dark);
}

.anfahrt-price .price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-forest);
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.price-info {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.price-options {
    list-style: none;
    padding: 0;
}

.price-options li {
    padding: 10px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.price-options li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: bold;
}

.price-footer {
    background: var(--light-mint);
    padding: 20px;
    text-align: center;
}

.price-footer p {
    margin: 0;
    font-weight: 600;
    color: var(--primary-forest);
}

/* Features Section */
.lawn-features-section {
    background: white;
    padding: 60px 40px;
    border-radius: 30px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.lawn-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.lawn-feature {
    text-align: center;
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--primary-forest);
}

.lawn-feature h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.lawn-feature p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Final CTA */
.lawn-cta-final {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-final-content h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.cta-final-content p {
    font-size: 18px;
    color: white;
    opacity: 0.95;
    margin-bottom: 35px;
}

/* Mobile Responsive - Lawn Mowing Section */
@media (max-width: 1024px) {
    .lawn-process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .lawn-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lawn-mowing-section {
        padding: 40px 15px;
    }

    .lawn-hero-box {
        padding: 25px;
        margin-bottom: 30px;
    }

    .lawn-hero-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .price-badge {
        font-size: 1.1rem;
        padding: 4px 10px;
    }

    .lawn-process-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .process-card {
        padding: 20px;
    }

    .process-card .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .process-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .process-card p {
        font-size: 0.9rem;
    }

    .lawn-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .lawn-content-text h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .lawn-content-text h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }

    .lawn-content-text p,
    .lawn-content-text ul {
        font-size: 0.95rem;
    }

    .lawn-price-showcase {
        position: static;
        top: auto;
        margin: 0 auto;
        max-width: 100%;
    }

    .price-card {
        padding: 25px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-period {
        font-size: 0.9rem;
    }

    .price-features li {
        font-size: 0.9rem;
        padding: 8px 0;
    }

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

    .feature-item {
        padding: 20px;
    }

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

    .feature-item h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .lawn-cta-final {
        padding: 30px 20px;
    }

    .lawn-cta-final h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .lawn-cta-final p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .lawn-cta-final .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Tree Pruning Section */
.tree-pruning-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f5 100%);
    padding: 80px 20px;
    position: relative;
}

.pruning-hero {
    text-align: center;
    margin-bottom: 60px;
}

.pruning-title {
    font-size: 48px;
    color: var(--primary-forest);
    margin-bottom: 25px;
    font-weight: 700;
}

.pruning-intro {
    max-width: 800px;
    margin: 0 auto;
}

.pruning-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
}

.pruning-image-section {
    max-width: 1200px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pruning-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.pruning-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.pruning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-sage);
}

.pruning-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.pruning-card h3 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 15px;
    font-weight: 600;
}

.pruning-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pruning-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-left h3 {
    font-size: 32px;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

.content-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.service-benefits {
    background: linear-gradient(135deg, var(--sage-light) 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 30px;
}

.service-benefits h4 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

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

.service-benefits li {
    font-size: 16px;
    color: var(--text-primary);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-benefits li:last-child {
    border-bottom: none;
}

.seasonal-timing {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.seasonal-timing h4 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 25px;
    text-align: center;
}

.season-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.season-item:last-child {
    border-bottom: none;
}

.season-item .season {
    font-weight: 600;
    color: var(--primary-sage);
    font-size: 16px;
    min-width: 80px;
}

.season-item span:last-child {
    color: var(--text-secondary);
    font-size: 15px;
    text-align: right;
    flex: 1;
    margin-left: 15px;
}

.pruning-process {
    margin-bottom: 60px;
}

.pruning-process h3 {
    font-size: 36px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 50px;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 25px;
    font-size: 24px;
    color: var(--primary-sage);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pruning-cta {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pruning-cta .cta-content h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.pruning-cta .cta-content p {
    font-size: 18px;
    color: white;
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.pruning-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--sage-light);
}

/* Mobile Responsive - Tree Pruning Section */
@media (max-width: 1024px) {
    .pruning-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .pruning-services-grid .pruning-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .tree-pruning-section {
        padding: 40px 15px;
    }

    .pruning-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .pruning-intro p {
        font-size: 16px;
        line-height: 1.6;
    }

    .pruning-image-section {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .pruning-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .pruning-services-grid .pruning-card:last-child {
        grid-column: 1;
        max-width: 100%;
    }

    .pruning-card {
        padding: 25px;
    }

    .pruning-card .card-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .pruning-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .pruning-card p {
        font-size: 14px;
    }

    .pruning-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .content-left h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .content-left p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .service-benefits {
        padding: 20px;
    }

    .service-benefits h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .service-benefits li {
        font-size: 14px;
        padding: 8px 0;
    }

    .seasonal-timing {
        padding: 25px;
    }

    .seasonal-timing h4 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .season-item {
        flex-direction: column;
        padding: 12px 0;
    }

    .season-item .season {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .season-item span:last-child {
        text-align: left;
        margin-left: 0;
        font-size: 14px;
    }

    .pruning-process h3 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .process-step h4 {
        font-size: 16px;
    }

    .process-step p {
        font-size: 13px;
    }

    .pruning-cta {
        padding: 35px 20px;
    }

    .pruning-cta .cta-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .pruning-cta .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .pruning-cta .cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Seasonal Care Section */
.seasonal-care-section {
    background: linear-gradient(180deg, #fafafa 0%, #f0f4f0 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.seasonal-care-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-forest) 0%,
            #FFD700 25%,
            #FF6B35 50%,
            #8B4513 75%,
            var(--primary-forest) 100%);
}

.seasonal-header {
    text-align: center;
    margin-bottom: 60px;
}

.seasonal-title {
    font-size: 48px;
    color: var(--primary-forest);
    margin-bottom: 25px;
    font-weight: 700;
}

.seasonal-intro {
    max-width: 900px;
    margin: 0 auto;
}

.seasonal-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-primary);
}

.seasons-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.season-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.season-card.spring::before {
    background: linear-gradient(90deg, #90EE90 0%, #32CD32 100%);
}

.season-card.summer::before {
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.season-card.autumn::before {
    background: linear-gradient(90deg, #FF6B35 0%, #8B4513 100%);
}

.season-card.winter::before {
    background: linear-gradient(90deg, #87CEEB 0%, #4682B4 100%);
}

.season-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.season-icon {
    margin-bottom: 15px;
}

.season-content h3 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 20px;
    font-weight: 600;
}

.season-tasks {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.season-tasks span {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 8px;
    background: var(--sage-light);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.season-tasks span:hover {
    background: var(--primary-sage);
    color: white;
}

.seasonal-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.services-description h3 {
    font-size: 32px;
    color: var(--primary-forest);
    margin-bottom: 20px;
}

.services-description p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-primary);
}

.services-checklist {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.services-checklist h4 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 25px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checklist-item {
    font-size: 15px;
    color: var(--text-primary);
    padding: 10px;
    background: linear-gradient(90deg, var(--sage-light) 0%, transparent 100%);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.checklist-item:hover {
    background: var(--sage-light);
    transform: translateX(5px);
}

.seasonal-booking {
    max-width: 1000px;
    margin: 0 auto;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.booking-option {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.booking-option:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.option-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.booking-option h4 {
    font-size: 22px;
    color: var(--primary-forest);
    margin-bottom: 10px;
}

.booking-option p {
    font-size: 15px;
    color: var(--text-secondary);
}

.booking-cta {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.booking-cta p {
    font-size: 17px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.seasonal-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--sage-light);
}

/* Mobile Responsive - Seasonal Care Section */
@media (max-width: 1024px) {
    .seasons-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .seasonal-services {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .seasonal-care-section {
        padding: 40px 15px;
    }

    .seasonal-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .seasonal-intro p {
        font-size: 16px;
        line-height: 1.6;
    }

    .seasons-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .season-card {
        padding: 25px 15px;
    }

    .season-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .season-tasks span {
        font-size: 13px;
        padding: 6px;
    }

    .seasonal-services {
        margin-bottom: 40px;
    }

    .services-description h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .services-description p {
        font-size: 15px;
        line-height: 1.6;
    }

    .services-checklist {
        padding: 25px;
    }

    .services-checklist h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .checklist-item {
        font-size: 14px;
        padding: 8px;
    }

    .booking-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .booking-option {
        padding: 25px;
    }

    .option-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .booking-option h4 {
        font-size: 18px;
    }

    .booking-option p {
        font-size: 14px;
    }

    .booking-cta {
        padding: 35px 20px;
    }

    .booking-cta p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .seasonal-cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Regular Care Section */
.regular-care-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
    padding: 80px 20px;
}

.regular-care-header {
    text-align: center;
    margin-bottom: 60px;
}

.regular-care-title {
    font-size: 48px;
    color: var(--primary-forest);
    margin-bottom: 20px;
    font-weight: 700;
}

.regular-care-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    max-width: 800px;
    margin: 0 auto;
}

.regular-care-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.care-image-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

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

.care-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.care-services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.care-service-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.care-service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--sage-light) 0%, var(--primary-sage) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon {
    font-size: 28px;
}

.service-details h3 {
    font-size: 20px;
    color: var(--primary-forest);
    margin-bottom: 8px;
}

.service-details p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.care-benefits-section {
    margin-bottom: 60px;
}

.care-benefits-section h3 {
    font-size: 36px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 50px;
}

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

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

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.benefit-card h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin: 25px 0 15px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.care-target-groups {
    background: linear-gradient(135deg, var(--sage-light) 0%, #ffffff 100%);
    border-radius: 30px;
    padding: 50px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.target-content h3 {
    font-size: 32px;
    color: var(--primary-forest);
    text-align: center;
    margin-bottom: 40px;
}

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

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

.target-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 20px;
}

.target-item h4 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 15px;
}

.target-item p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.care-cta-section {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.care-cta-section .cta-content h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
}

.care-cta-section .cta-content p {
    font-size: 18px;
    color: white;
    opacity: 0.95;
    margin-bottom: 35px;
    line-height: 1.8;
}

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

.care-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--sage-light);
}

/* Mobile Responsive - Regular Care Section */
@media (max-width: 1024px) {
    .benefits-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .regular-care-section {
        padding: 40px 15px;
    }

    .regular-care-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .regular-care-subtitle {
        font-size: 16px;
        line-height: 1.6;
    }

    .regular-care-main {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .care-badge {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
    }

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

    .badge-text {
        font-size: 12px;
    }

    .care-service-item {
        padding: 20px;
        gap: 15px;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }

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

    .service-details h3 {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .service-details p {
        font-size: 14px;
    }

    .care-benefits-section h3 {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .benefit-card h4 {
        font-size: 16px;
        margin: 20px 0 10px;
    }

    .benefit-card p {
        font-size: 13px;
    }

    .care-target-groups {
        padding: 35px 20px;
        margin-bottom: 40px;
    }

    .target-content h3 {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .target-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .target-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .target-item h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .target-item p {
        font-size: 14px;
    }

    .care-cta-section {
        padding: 40px 25px;
    }

    .care-cta-section .cta-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .care-cta-section .cta-content p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .care-cta-button {
        padding: 14px 30px;
        font-size: 16px;
    }
}

/* Equipment Showcase Section */
.equipment-showcase-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
}

.equipment-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

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

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

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
}

.equipment-showcase {
    margin-top: 60px;
}

.equipment-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-mint);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--light-mint);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-forest);
}

.category-header h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin: 0;
}

.equipment-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.equipment-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--section-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    background: var(--light-mint);
    transform: translateX(5px);
}

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

.equipment-item h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin-bottom: 8px;
}

.equipment-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.equipment-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.cta-text strong {
    color: var(--primary-forest);
}

/* Specific Content */
.faq-container {
    max-width: 900px;
    margin: 40px auto;
}

.text-mb40 {
    margin-bottom: 40px;
}

.review-avatar-green {
    background: #2E7D32 !important;
}

.service-list-icon {
    margin: 10px 0;
    font-size: 18px;
}

.emoji-list {
    font-size: 18px;
    line-height: 2;
    list-style: none;
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.spring-tasks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quality-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.services-grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

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

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

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

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--light-mint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.review-info h4 {
    margin: 0;
    color: var(--text-dark);
}

.review-stars {
    color: #FFD700;
    font-size: 18px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--primary-sage) 100%);
    padding: 80px 20px;
    color: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
}

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

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-sage);
}

.submit-button {
    background: var(--primary-forest);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--dark-forest);
    transform: translateY(-3px);
}

/* Footer */
.garden-footer {
    background: linear-gradient(135deg, var(--dark-forest) 0%, var(--primary-forest) 100%);
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.garden-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-sage) 0%, var(--light-mint) 50%, var(--primary-sage) 100%);
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    color: var(--light-mint);
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-sage);
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.footer-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(127, 176, 105, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid var(--primary-sage);
    margin-top: 10px;
}

.footer-highlight .highlight-icon {
    color: var(--light-mint);
    font-size: 18px;
    font-weight: bold;
}

.footer-highlight .highlight-text {
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--light-mint);
    padding-left: 15px;
}

.footer-link:hover::before {
    opacity: 1;
    left: -15px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.contact-link {
    color: var(--light-mint);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
    text-decoration: underline;
}

.footer-pricing-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pricing-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pricing-badge-highlight {
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    border-color: var(--primary-sage);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Keep old selectors for backward compatibility */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--light-mint);
}

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

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

.footer-column a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--light-mint);
}

/* Footer Mobile Responsiveness */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .garden-footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-highlight {
        display: inline-flex;
        margin: 20px auto 0;
    }

    .footer-links {
        text-align: left;
        max-width: 200px;
        margin: 0 auto;
    }

    .footer-link::before {
        display: none;
    }

    .footer-link:hover {
        padding-left: 0;
        transform: translateX(5px);
    }

    .contact-items {
        align-items: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-pricing-info {
        max-width: 280px;
        margin: 20px auto 0;
    }

    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-copyright {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Fixed Call Button */
.fixed-call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-terra);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.fixed-call-button:hover {
    background: var(--primary-forest);
    transform: scale(1.1);
}

.fixed-call-button svg {
    width: 30px;
    height: 30px;
}

/* MOBILE RESPONSIVE STYLES */
@media (max-width: 768px) {

    /* Header Mobile */
    .header-container {
        padding: 10px 15px;
    }

    .logo-text h2 {
        font-size: 20px;
    }

    .logo-subtitle {
        display: none;
    }

    .blog-link {
        padding: 8px 15px;
        font-size: 14px;
    }

    .blog-link span {
        display: none;
    }

    /* Hero Mobile */
    .garden-hero {
        padding: 40px 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text .subtitle {
        font-size: 18px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    /* Sections Mobile */
    .pricing-section,
    .services-section,
    .reviews-section,
    .services-grid {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    /* Pricing Grid Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Pricing Benefits Mobile */
    .pricing-benefits {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 15px;
    }

    .pricing-benefits .benefit-item {
        padding: 12px 15px;
    }

    .pricing-benefits .benefit-icon {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }

    .pricing-benefits .benefit-item span:last-child {
        font-size: 14px;
    }

    /* Modern Pricing Mobile */
    .pricing-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-hero-card {
        padding: 30px 20px;
    }

    .pricing-hero-title {
        font-size: 24px;
    }

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

    .price-showcase {
        padding: 30px 20px;
    }

    .price-number {
        font-size: 56px;
    }

    .modern-pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modern-price-card.premium {
        transform: scale(1);
    }

    .price-calculator-cta {
        padding: 30px 20px;
    }

    .calculator-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .calculator-text h3 {
        font-size: 22px;
    }

    .calculator-text p {
        font-size: 16px;
    }

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

    .pricing-additional-info {
        padding: 30px 20px;
    }

    /* Service Content Grid Mobile - FIXED FOR MOBILE */
    .service-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .service-content-grid.reverse {
        direction: ltr;
    }

    .service-text {
        order: 2;
    }

    .service-image {
        order: 1;
    }

    /* Content Grid Classes Mobile */
    .content-grid-2col {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .equipment-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .spring-tasks-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    .quality-grid-3col {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .services-grid-3col {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .efficiency-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
        margin-top: 20px;
    }

    /* Ensure images come first on mobile in 2-column grids */
    .content-grid-2col>div:first-child {
        order: 2;
    }

    .content-grid-2col>div:last-child {
        order: 1;
    }

    /* If image is in last position, make it first */
    .content-grid-2col>div:has(img) {
        order: 1 !important;
    }

    .content-grid-2col>div:not(:has(img)) {
        order: 2 !important;
    }

    /* Services Cards Mobile */
    .services-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Reviews Mobile */
    .reviews-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Fixed Call Button Mobile */
    .fixed-call-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .fixed-call-button svg {
        width: 24px;
        height: 24px;
    }

    /* All grid layouts with 2 columns - FORCE TO 1 COLUMN ON MOBILE */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* All grid layouts with 3 columns - FORCE TO 1 COLUMN ON MOBILE */
    div[style*="grid-template-columns: 1fr 1fr 1fr"],
    div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }

    /* Equipment Showcase Mobile */
    .equipment-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }

    .benefit-card {
        padding: 25px;
    }

    .benefit-icon {
        font-size: 36px;
    }

    .equipment-category {
        padding: 25px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .category-header h3 {
        font-size: 24px;
    }

    .equipment-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .equipment-item {
        padding: 15px;
    }

    .equipment-item h4 {
        font-size: 16px;
    }

    .equipment-cta {
        padding: 25px;
    }

    .cta-text {
        font-size: 16px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

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

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

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

    /* Service content grids on tablet */
    .service-content-grid {
        gap: 30px;
    }

    /* Content grids on tablet */
    .content-grid-2col {
        grid-template-columns: 1fr 1fr;
    }

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

    .spring-tasks-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .services-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }

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

    /* Force 2-column grids to stay 2-column on tablet */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr 1fr;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-button {
        width: 100%;
        padding: 12px 25px;
        font-size: 16px;
    }

    .form-control {
        padding: 12px;
        font-size: 14px;
    }

    .submit-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .cta-button {
        justify-content: center;
    }
}

/* Print Styles */
@media print {

    .fixed-call-button,
    .blog-link,
    .contact-section {
        display: none;
    }
}

/* Own Equipment Section */
.own-equipment-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.own-equipment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.equipment-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.equipment-title {
    font-size: 42px;
    color: #33691e;
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.equipment-intro {
    max-width: 900px;
    margin: 0 auto;
}

.equipment-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.equipment-intro strong {
    color: #558b2f;
    font-weight: 600;
}

.equipment-benefits {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.2);
    border-color: #8bc34a;
}

.benefit-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8bc34a, #689f38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
}

.benefit-icon-wrapper svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.benefit-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-content h3 {
    color: #33691e;
    font-size: 22px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.benefit-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
    max-width: 280px;
}

.equipment-description {
    max-width: 1100px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.equipment-description h3 {
    color: #33691e;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.equipment-description p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 16px;
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #8bc34a;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.category-header svg {
    width: 45px;
    height: 45px;
    color: #689f38;
    flex-shrink: 0;
}

.category-header h3 {
    color: #33691e;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.category-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    color: #555;
    line-height: 1.4;
    font-size: 14px;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li span {
    color: #8bc34a;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: -2px;
}

.equipment-footer {
    background: linear-gradient(135deg, #f1f8e9, #e8f5e9);
    border-radius: 25px;
    padding: 50px;
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.footer-content {
    margin-bottom: 30px;
}

.footer-content p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 15px 0;
    font-size: 17px;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

.footer-content strong {
    font-weight: 600;
}

.footer-highlight {
    color: #558b2f;
    font-size: 18px;
    font-weight: 500;
    margin: 20px 0 0 0;
}

.equipment-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #689f38, #8bc34a);
    color: white;
    padding: 18px 45px;
    border-radius: 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(104, 159, 56, 0.3);
    border: 2px solid transparent;
}

.equipment-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(104, 159, 56, 0.4);
    background: linear-gradient(135deg, #558b2f, #7cb342);
    border-color: #689f38;
}

.equipment-cta-btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}


/* Tablet Responsiveness for Own Equipment Section */
@media (max-width: 1024px) {
    .equipment-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile Responsiveness for Own Equipment Section */
@media (max-width: 768px) {
    .own-equipment-section {
        padding: 60px 15px;
    }

    .own-equipment-section .container {
        padding: 0 10px;
    }

    .equipment-title {
        font-size: 32px;
    }

    .equipment-intro p {
        font-size: 16px;
    }

    .equipment-benefits {
        padding: 0 15px;
    }

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

    .benefit-item {
        padding: 30px 20px;
        min-height: auto;
    }

    .benefit-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .benefit-icon-wrapper svg {
        width: 30px;
        height: 30px;
    }

    .benefit-content h3 {
        font-size: 20px;
    }

    .benefit-content p {
        font-size: 14px;
    }

    .equipment-description {
        padding: 30px 20px;
        margin: 40px auto;
    }

    .equipment-description h3 {
        font-size: 24px;
    }

    .equipment-categories {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0;
    }

    .category-card {
        padding: 25px 20px;
        min-height: auto;
    }

    .category-header {
        gap: 12px;
    }

    .category-header svg {
        width: 35px;
        height: 35px;
    }

    .category-header h3 {
        font-size: 18px;
        white-space: normal;
    }

    .category-list li {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .equipment-footer {
        padding: 35px 25px;
        margin: 40px 15px 0;
        border-radius: 20px;
    }

    .footer-content p {
        font-size: 15px;
    }

    .footer-highlight {
        font-size: 16px;
    }

    .equipment-cta-btn {
        padding: 15px 30px;
        font-size: 16px;
        margin-top: 20px;
    }

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

/* Extra small screens (375px and below) */
@media (max-width: 480px) {
    .equipment-footer {
        padding: 25px 15px;
        margin: 30px 10px 0;
        border-radius: 15px;
    }

    .equipment-footer .footer-content {
        margin-bottom: 20px;
    }

    .equipment-footer .footer-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .equipment-footer .footer-highlight {
        font-size: 14px;
        line-height: 1.6;
    }

    .equipment-cta-btn {
        padding: 14px 20px;
        font-size: 14px;
        margin-top: 15px;
        width: 100%;
        gap: 8px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .equipment-cta-btn span {
        flex: 1 1 100%;
        line-height: 1.4;
    }

    .equipment-cta-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Equipment CTA Section Styles */
.equipment-cta-section {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    text-align: center;
}

.equipment-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.equipment-cta-section .cta-content h3 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.equipment-cta-section .cta-content p {
    color: #5a6c7d;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
}

.equipment-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

.equipment-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

@media (max-width: 768px) {
    .equipment-cta-section {
        margin-top: 40px;
        padding: 35px 20px;
    }

    .equipment-cta-section .cta-content h3 {
        font-size: 26px;
    }

    .equipment-cta-section .cta-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .equipment-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Einmalige Gartenarbeiten Wien Section */
.one-time-garden-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.one-time-garden-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.one-time-garden-section .section-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.one-time-garden-section .header-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 0 auto;
    border-radius: 2px;
}

.garden-work-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.main-content-area {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.intro-card {
    background: linear-gradient(135deg, #f6f9fc 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 5px solid #27ae60;
}

.intro-card h3 {
    color: #2c3e50;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

.intro-card p {
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.services-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.highlight-content h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.highlight-content p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.work-types {
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    padding: 30px;
    border-radius: 12px;
}

.work-types h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

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

.work-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    color: #5a6c7d;
    font-size: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.work-item:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.side-content {
    position: sticky;
    top: 20px;
}

.side-content .image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.side-content .image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    padding: 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.cta-card {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.cta-card h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 25px;
}

.cta-button-new {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #27ae60;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-button-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

.cta-button-new svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsiveness for One-time Garden Section */
@media (max-width: 1024px) {
    .garden-work-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .side-content {
        position: static;
    }

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

@media (max-width: 768px) {
    .one-time-garden-section {
        padding: 60px 0;
    }

    .one-time-garden-section .section-header h2 {
        font-size: 32px;
    }

    .main-content-area {
        padding: 25px;
    }

    .intro-card {
        padding: 20px;
    }

    .intro-card h3 {
        font-size: 22px;
    }

    .intro-card p {
        font-size: 16px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        margin: 0 auto;
    }

    .work-types {
        padding: 20px;
    }

    .work-types h3 {
        font-size: 20px;
    }

    .cta-card {
        padding: 25px;
    }

    .cta-card h3 {
        font-size: 20px;
    }

    .cta-button-new {
        padding: 12px 25px;
        font-size: 16px;
    }
}

/* Professional Reviews Section */
.professional-reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

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

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.reviews-header h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.reviews-subtitle {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-showcase {
    margin-bottom: 60px;
}

.featured-reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.customer-review-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.customer-review-card.featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #27ae60;
}

.review-rating {
    margin-bottom: 25px;
}

.star-rating {
    color: #ffd700;
    font-size: 24px;
    letter-spacing: 3px;
}

.rating-text {
    display: block;
    color: #95a5a6;
    font-size: 14px;
    margin-top: 5px;
}

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

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
}

.customer-name h3 {
    color: #2c3e50;
    font-size: 22px;
    margin: 0;
    font-weight: 600;
}

.customer-review-card blockquote {
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.8;
    font-style: italic;
    margin: 0 0 20px 0;
    padding-left: 20px;
    border-left: 3px solid #e9ecef;
}

.review-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.review-tags .tag {
    background: #e8f5e9;
    color: #27ae60;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

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

.stats-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat-label {
    color: #95a5a6;
    font-size: 14px;
}

.additional-reviews {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
}

.additional-reviews h3 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

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

.mini-review {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mini-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-initial {
    width: 40px;
    height: 40px;
    background: #e9ecef;
    color: #5a6c7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer-name {
    font-weight: 600;
    color: #2c3e50;
    display: block;
}

.mini-stars {
    color: #ffd700;
    font-size: 14px;
}

.mini-review-text {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.review-service-tag {
    background: #f0f4f8;
    color: #5a6c7d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
}

.write-review-button-wrp {
    text-align: center;
    margin-top: 30px;
}

.write-review-button {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.write-review-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.reviews-cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.reviews-cta h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.reviews-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.reviews-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.reviews-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
}

.reviews-cta-button svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsiveness for Professional Reviews */
@media (max-width: 1024px) {
    .featured-reviews {
        grid-template-columns: 1fr;
    }

    .reviews-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .professional-reviews-section {
        padding: 60px 0;
    }

    .reviews-header h2 {
        font-size: 32px;
    }

    .reviews-subtitle {
        font-size: 16px;
    }

    .customer-review-card {
        padding: 25px;
    }

    .star-rating {
        font-size: 20px;
    }

    .customer-avatar {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .customer-name h3 {
        font-size: 20px;
    }

    .customer-review-card blockquote {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .additional-reviews {
        padding: 30px 20px;
    }

    .reviews-cta {
        padding: 35px 20px;
    }

    .reviews-cta h3 {
        font-size: 26px;
    }

    .reviews-cta p {
        font-size: 16px;
    }

    .reviews-cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
}

/* Landscape Care Section */
.landscape-care-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
}

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

.landscape-header {
    text-align: center;
    margin-bottom: 50px;
}

.landscape-header .header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #5dade2);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.landscape-header h2 {
    font-size: 42px;
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.landscape-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.intro-highlight {
    font-size: 19px;
    color: #5a6c7d;
    line-height: 1.8;
}

.landscape-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.services-overview h3 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

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

.service-item-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: #3498db;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e8f4fd, #d6ebf9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: #3498db;
}

.service-item-card h4 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item-card p {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.planning-info {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.planning-card {
    background: linear-gradient(135deg, #f9fbfd 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    border-left: 5px solid #3498db;
}

.planning-card h3 {
    color: #2c3e50;
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
}

.planning-card p {
    color: #5a6c7d;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.planning-card p:last-child {
    margin-bottom: 0;
}

.benefits-landscape {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefits-landscape h4 {
    color: #2c3e50;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 600;
}

.benefits-landscape ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-landscape li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.6;
}

.benefits-landscape li:last-child {
    margin-bottom: 0;
}

.benefit-check {
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.landscape-footer {
    margin-top: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
}

.landscape-footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-highlight {
    color: white;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.landscape-footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: 35px;
}

.landscape-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.landscape-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(39, 174, 96, 0.5);
}

.landscape-cta-btn svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsiveness for Landscape Care */
@media (max-width: 1024px) {
    .planning-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .landscape-care-section {
        padding: 60px 0;
    }

    .landscape-header h2 {
        font-size: 32px;
    }

    .intro-highlight {
        font-size: 17px;
    }

    .services-overview h3 {
        font-size: 24px;
    }

    .services-grid-landscape {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item-card {
        padding: 25px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon svg {
        width: 30px;
        height: 30px;
    }

    .planning-card {
        padding: 30px 25px;
    }

    .planning-card h3 {
        font-size: 22px;
    }

    .planning-card p {
        font-size: 16px;
    }

    .benefits-landscape {
        padding: 25px;
    }

    .benefits-landscape h4 {
        font-size: 20px;
    }

    .landscape-footer {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .footer-highlight {
        font-size: 18px;
    }

    .landscape-footer p {
        font-size: 16px;
    }

    .landscape-cta-btn {
        padding: 15px 30px;
        font-size: 16px;
    }

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

/* Complete Care Section */
.complete-care-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

.complete-care-header {
    text-align: center;
    margin-bottom: 60px;
}

.complete-care-header .header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.3);
}

.complete-care-header .header-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.complete-care-header h2 {
    font-size: 42px;
    color: var(--primary-forest);
    margin-bottom: 20px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 18px;
    color: var(--primary-sage);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.services-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.services-description p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-item-complete {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-sage);
}

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

.service-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-forest);
    flex-shrink: 0;
    width: 50px;
}

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

.service-details p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.care-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card-complete {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card-complete:hover {
    transform: translateY(-5px);
    border-color: var(--primary-sage);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.15);
}

.benefit-icon-complete {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-mint), var(--soft-cream));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon-complete svg {
    width: 35px;
    height: 35px;
    color: var(--primary-forest);
}

.benefit-card-complete h3 {
    color: var(--primary-forest);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card-complete p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.complete-care-process {
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 60px;
    color: white;
}

.complete-care-process h3 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.process-step {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: var(--primary-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

.process-arrow {
    font-size: 30px;
    color: white;
    flex-shrink: 0;
}

.complete-care-footer {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 50px;
}

.complete-care-footer .footer-text {
    font-size: 19px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 15px;
}

.complete-care-footer p {
    color: #5a6c7d;
    font-size: 17px;
    margin-bottom: 35px;
}

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

.complete-care-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(127, 176, 105, 0.5);
}

.complete-care-cta svg {
    width: 24px;
    height: 24px;
}

/* Mobile Responsiveness for Complete Care */
@media (max-width: 1024px) {
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .care-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-steps {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .complete-care-section {
        padding: 60px 0;
    }

    .complete-care-header h2 {
        font-size: 32px;
    }

    .header-subtitle {
        font-size: 16px;
    }

    .service-item-complete {
        padding: 20px;
    }

    .service-number {
        font-size: 24px;
        width: 40px;
    }

    .service-details h3 {
        font-size: 18px;
    }

    .benefit-card-complete {
        padding: 25px;
    }

    .complete-care-process {
        padding: 35px 25px;
    }

    .complete-care-process h3 {
        font-size: 24px;
    }

    .process-step {
        padding: 25px;
    }

    .complete-care-footer {
        padding: 35px 25px;
    }

    .complete-care-footer .footer-text {
        font-size: 17px;
    }

    .complete-care-cta {
        padding: 15px 30px;
        font-size: 16px;
    }

    .complete-care-cta svg {
        width: 20px;
        height: 20px;
    }
}

/* Spring Cleaning Section Styles */
.spring-cleaning-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--warm-beige) 0%, #ffffff 50%, var(--soft-cream) 100%);
    position: relative;
    overflow: hidden;
}

.spring-cleaning-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.spring-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

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

.spring-content {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.1);
}

.spring-subtitle {
    font-size: 32px;
    color: var(--dark-forest);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.spring-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
}

.spring-tasks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

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

.spring-task-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.2);
    border-color: var(--primary-sage);
    background: linear-gradient(135deg, #ffffff 0%, var(--light-mint) 100%);
}

.spring-task-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: springBounce 2s ease-in-out infinite;
}

@keyframes springBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

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

.spring-task-card p {
    font-size: 14px;
    color: var(--primary-sage);
    margin: 0;
    line-height: 1.4;
}

.spring-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--light-mint);
}

.spring-description {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.spring-cta-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);
}

.spring-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
}

/* Mobile Responsiveness for Spring Cleaning Section */
@media (max-width: 1024px) {
    .spring-tasks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .spring-cleaning-section {
        padding: 60px 0;
    }

    .spring-title {
        font-size: 32px;
    }

    .spring-intro {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .spring-content {
        padding: 30px 20px;
    }

    .spring-subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .spring-tasks-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .spring-task-card {
        padding: 20px;
    }

    .spring-task-icon {
        font-size: 36px;
    }

    .spring-description {
        font-size: 16px;
    }

    .spring-cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* Autumn Cleaning Section Styles */
.autumn-cleaning-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 50%, var(--warm-beige) 100%);
    position: relative;
}

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

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

.autumn-title::after {
    content: '🍂';
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    font-size: 32px;
    opacity: 0.6;
}

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

.autumn-text-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.1);
}

.autumn-intro {
    font-size: 20px;
    color: var(--primary-sage);
    margin-bottom: 30px;
    line-height: 1.6;
}

.autumn-services-box {
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.autumn-services-box h3 {
    font-size: 24px;
    color: var(--primary-forest);
    margin-bottom: 25px;
    font-weight: 600;
}

.autumn-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.autumn-services-list li {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.autumn-services-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.15);
}

.autumn-icon {
    font-size: 32px;
    margin-right: 20px;
    flex-shrink: 0;
}

.autumn-services-list strong {
    color: var(--dark-forest);
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.autumn-services-list p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.autumn-benefits {
    padding: 25px;
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    border-radius: 15px;
    border-left: 5px solid var(--primary-sage);
}

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

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

.autumn-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.2);
}

.autumn-cta-box {
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.3);
}

.autumn-cta-box h4 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.autumn-cta-box p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.autumn-cta-button {
    display: inline-block;
    padding: 15px 40px;
    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);
}

.autumn-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: var(--soft-cream);
}

/* Mobile Responsiveness for Autumn Section */
@media (max-width: 1024px) {
    .autumn-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .autumn-cleaning-section {
        padding: 60px 0;
    }

    .autumn-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .autumn-text-content {
        padding: 25px;
    }

    .autumn-intro {
        font-size: 18px;
    }

    .autumn-services-box {
        padding: 20px;
    }

    .autumn-services-box h3 {
        font-size: 20px;
    }

    .autumn-services-list li {
        padding: 12px;
    }

    .autumn-icon {
        font-size: 28px;
        margin-right: 15px;
    }

    .autumn-services-list strong {
        font-size: 16px;
    }

    .autumn-cta-box {
        padding: 25px;
    }

    .autumn-cta-box h4 {
        font-size: 20px;
    }

    .autumn-cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Weed Removal Section Styles */
.weed-removal-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--warm-beige) 0%, #ffffff 50%, var(--soft-cream) 100%);
    position: relative;
}

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

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

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

.weed-image-box {
    position: relative;
}

.weed-main-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.15);
}

.weed-stats {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.weed-info-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(127, 176, 105, 0.1);
}

.weed-intro p {
    font-size: 18px;
    color: var(--primary-forest);
    line-height: 1.6;
    margin-bottom: 30px;
}

.weed-services {
    margin-bottom: 30px;
}

.weed-services h3 {
    font-size: 24px;
    color: var(--dark-forest);
    margin-bottom: 20px;
    font-weight: 600;
}

.weed-service-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.weed-card {
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--light-mint);
    transition: all 0.3s ease;
}

.weed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(127, 176, 105, 0.2);
    border-color: var(--primary-sage);
}

.weed-card-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

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

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

.weed-benefits {
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 100%);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
}

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

.weed-extras {
    margin-bottom: 30px;
}

.weed-extras h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin-bottom: 15px;
    font-weight: 600;
}

.weed-extras ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.weed-extras li {
    padding: 8px 0;
    color: var(--primary-sage);
    font-size: 15px;
}

.weed-cta-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);
}

.weed-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
}

/* Small Tasks Section Styles */
.small-tasks-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--soft-cream) 0%, #ffffff 50%, var(--warm-beige) 100%);
    position: relative;
}

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

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

.small-tasks-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.small-tasks-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(45, 106, 79, 0.1);
}

.small-tasks-intro p {
    font-size: 18px;
    color: var(--primary-forest);
    line-height: 1.6;
    margin-bottom: 30px;
}

.small-tasks-list {
    margin-bottom: 30px;
}

.small-tasks-list h3 {
    font-size: 24px;
    color: var(--primary-sage);
    margin-bottom: 25px;
    font-weight: 600;
}

.small-task-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.small-task-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.small-task-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(127, 176, 105, 0.2);
    background: linear-gradient(135deg, var(--primary-sage) 0%, #ffffff 100%);
}

.task-icon {
    font-size: 32px;
    flex-shrink: 0;
}

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

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

.small-tasks-benefits {
    background: linear-gradient(135deg, var(--light-mint) 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-sage);
    margin-bottom: 30px;
}

.small-tasks-benefits h4 {
    font-size: 18px;
    color: var(--primary-forest);
    margin-bottom: 15px;
    font-weight: 600;
}

.small-tasks-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.small-tasks-benefits li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.small-tasks-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-sage);
    font-weight: bold;
}

.small-tasks-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);
}

.small-tasks-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(127, 176, 105, 0.4);
    background: linear-gradient(135deg, var(--primary-forest) 0%, var(--dark-forest) 100%);
}

.small-tasks-image {
    position: relative;
}

.small-tasks-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.15);
}

.small-tasks-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-forest) 100%);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(127, 176, 105, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {

    .weed-content-grid,
    .small-tasks-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .weed-service-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .weed-removal-section,
    .small-tasks-section {
        padding: 60px 0;
    }

    .weed-title,
    .small-tasks-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .weed-info-box,
    .small-tasks-content {
        padding: 25px;
    }

    .weed-stats {
        padding: 20px;
        margin-top: 20px;
    }

    .stat-number {
        font-size: 24px;
    }

    .small-tasks-badge {
        width: 100px;
        height: 100px;
        top: 20px;
        right: 20px;
    }

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

    .weed-cta-button,
    .small-tasks-cta {
        padding: 15px 35px;
        font-size: 16px;
    }
}

/* Other Regions Section - Minimal */
.other-regions-section {
    background: #f8f9fa;
    padding: 25px 0;
    border-top: 1px solid #e9ecef;
}

.other-regions-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.regions-title {
    font-size: 16px;
    color: #5a6c7d;
    margin-right: 10px;
    font-weight: 500;
}

.regions-grid {
    display: inline;
}

.region-link {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    margin: 0 8px;
    white-space: nowrap;
}

.region-link:hover {
    color: #27ae60;
    text-decoration: underline;
}

.region-link svg {
    display: none;
    /* Hide icons for minimal design */
}

/* Add separator between links */
.region-link:not(:last-child)::after {
    content: "|";
    margin-left: 8px;
    color: #cbd5e0;
}

/* Mobile responsive for regions */
@media (max-width: 768px) {
    .other-regions-section {
        padding: 20px 0;
    }

    .regions-title {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .regions-grid {
        display: block;
        line-height: 1.8;
    }

    .region-link {
        display: inline-block;
        margin: 2px 6px;
        font-size: 13px;
    }

    .region-link:not(:last-child)::after {
        content: "";
        margin: 0;
    }
}