/* =============================================================================
   SERVICE DETAIL PAGES CSS
   服务详情页面专用样式
============================================================================= */

/* =============================================================================
   SERVICE HERO SECTION
============================================================================= */
.service-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-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 1200 600"><defs><pattern id="grass" patternUnits="userSpaceOnUse" width="100" height="100"><rect fill="%234CAF50" width="100" height="100"/><path fill="%232E7D32" d="M20,80 Q30,60 40,80 M60,80 Q70,60 80,80"/></pattern></defs><rect fill="url(%23grass)" width="1200" height="600" opacity="0.1"/></svg>') center/cover;
    opacity: 0.1;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.service-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 3rem 0;
    line-height: 1.1;
    color: white;
    text-align: center;
    animation: fadeInUp 1s ease 0.2s both;
}

.service-hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 auto 3rem auto;
    opacity: 0.95;
    max-width: 600px;
    text-align: center;
    animation: fadeInUp 1s ease 0.4s both;
    color: white !important;
}

.service-hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-hero-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    width: 100%;
    animation: fadeInUp 1s ease 0.8s both;
}

.talk-to-us-hero-btn {
    background: white;
    color: #333;
    border: none;
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    position: relative;
    overflow: hidden;
}

.talk-to-us-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s;
}

.talk-to-us-hero-btn:hover::before {
    left: 100%;
}

.talk-to-us-hero-btn:hover {
    background: #f5f5f5;
    color: #222;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.talk-to-us-hero-btn:active {
    transform: translateY(-1px) scale(1.02);
}
/* =============================================================================
   SERVICE OVERVIEW SECTION - NEW LAYOUT
============================================================================= */
.service-overview {
    padding: 100px 0;
    background: var(--bg-white);
}

.overview-intro {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
}

.service-detail-image .image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-large);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

/*.service-image:hover {*/
/*    transform: scale(1.05);*/
/*}*/

.service-detail-item:hover .service-image {
    /*transform: scale(1.05);*/
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .service-image {
        height: 250px;
    }
}

.garden-cleanup {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
}

.maintenance {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.planting {
    background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
}

.service-detail-image .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-detail-image span {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.service-detail-content {
    padding: 2rem 0;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.talk-to-us-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    border-radius: 0;
}

.talk-to-us-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.overview-text h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.overview-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.overview-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.feature-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.overview-image {
    position: relative;
}

.overview-image .image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-large);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-medium);
}

.overview-image .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* =============================================================================
   SERVICE DETAILS SECTION
============================================================================= */
.service-details {
    padding: 100px 0;
    background: var(--bg-light);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.detail-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.detail-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    min-width: 16px;
}

.price-range {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--accent-color);
    margin-top: auto;
}

/* =============================================================================
   PROCESS SECTION
============================================================================= */
.service-process {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 3;
}

.step-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =============================================================================
   GALLERY SECTION
============================================================================= */
.service-gallery {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-image {
    height: 200px;
    position: relative;
}

.gallery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.gallery-image .placeholder-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.gallery-image span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* =============================================================================
   CONTACT FORM SECTION
============================================================================= */
.contact-form-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-highlights {
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.highlight-icon {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.emergency-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.emergency-contact p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.emergency-phone {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.emergency-phone:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    color: white;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.1);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* =============================================================================
   RELATED SERVICES SECTION
============================================================================= */
.related-services {
    padding: 80px 0;
    background: var(--bg-white);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.related-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: var(--secondary-color);
}

.related-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.related-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.related-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.related-link:hover {
    color: var(--accent-color);
}

/* =============================================================================
   RESPONSIVE DESIGN
============================================================================= */

/* Tablet Styles */
@media (max-width: 1024px) {
    .service-hero-title {
        font-size: 3rem;
    }

    .overview-content {
        gap: 3rem;
    }

    .contact-content {
        gap: 3rem;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .service-hero {
        min-height: 60vh;
    }

    .service-hero-content {
        padding: 100px 0 40px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1.1rem;
    }

    .service-hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .talk-to-us-hero-btn {
        width: 250px;
        padding: 1rem 2rem;
    }

    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* New overview layout mobile styles */
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 0 1rem;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .service-detail-image .image-placeholder {
        height: 250px;
    }

    .service-detail-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .service-detail-content p {
        font-size: 1rem;
        text-align: center;
    }

    .talk-to-us-btn {
        display: block;
        margin: 0 auto;
        width: 200px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .service-details,
    .service-overview,
    .service-process,
    .service-gallery,
    .contact-form-section,
    .related-services {
        padding: 60px 0;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .service-hero-title {
        font-size: 2rem;
    }

    .detail-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .emergency-contact {
        padding: 1.5rem;
    }

    .related-card {
        padding: 2rem 1.5rem;
    }

    .hero-image-placeholder .placeholder-icon {
        font-size: 6rem;
    }
}

/* Large Desktop Optimization */
@media (min-width: 1400px) {
    .service-hero-title {
        font-size: 4rem;
    }

    .service-hero-subtitle {
        font-size: 1.4rem;
    }

    .details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

