/* ===================================
   SERVICES PAGES - SPECIFIC STYLES
   Cleaning & Landscaping Service Pages
   =================================== */

/* ===================================
   SERVICES HERO SECTION
   =================================== */
.services-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green) 0%, #0d7a4d 100%);
    padding: 140px 1.5rem 80px;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" opacity="0.1">🍀</text></svg>') repeat;
    opacity: 0.1;
    animation: float-pattern 20s linear infinite;
}

@keyframes float-pattern {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.services-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* MAIN FIX: Orange title on green background for maximum visibility */
.services-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange); /* ORANGE TEXT - Clearly visible! */
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Added shadow for extra contrast */
    line-height: 1.2;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===================================
   SERVICE DETAIL CARDS
   =================================== */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 1.5rem;
}

.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-green);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-detail-card h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.service-detail-card h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 600;
}

/* Service Features List */
.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
}

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

.service-features i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

/* Pricing Display */
.service-pricing {
    background: linear-gradient(135deg, var(--bg-light), var(--white));
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid var(--primary-green);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.price {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-section {
    background: linear-gradient(135deg, rgba(22, 155, 98, 0.05), rgba(255, 136, 62, 0.05));
    padding: 80px 1.5rem;
}

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

.feature-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-box .feature-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    display: block;
}

.feature-box h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    color: var(--white);
    padding: 80px 1.5rem;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (max-width: 992px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .service-detail-card h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */
@media (max-width: 768px) {
    .services-hero {
        min-height: 350px;
        padding: 120px 1rem 60px;
    }
    
    .services-hero-title {
        font-size: 2rem;
        color: var(--primary-orange); /* Keep orange on mobile too! */
    }
    
    .services-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-container {
        padding: 60px 1rem;
    }
    
    .service-detail-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .service-detail-card h2 {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-lg {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.75rem;
    }
    
    .service-detail-card {
        padding: 1.25rem;
    }
    
    .service-detail-card h2 {
        font-size: 1.3rem;
    }
    
    .feature-box {
        padding: 2rem;
    }
}

/* ===================================
   UTILITY: Ensure visibility
   =================================== */
.text-orange {
    color: var(--primary-orange);
}

.text-green {
    color: var(--primary-green);
}

/* Extra contrast for better readability */
.high-contrast {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
