/* ========================================
   SERVICES PAGE - COMPLETE STYLES
   ======================================== */

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1920&h=600&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.services-hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.services-hero-tagline {
    font-size: clamp(1rem, 4vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 3px;
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background-color: #F4EFE6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Service Row */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Reverse layout for image on the RIGHT side */
.service-row.reverse {
    direction: rtl;
}

.service-row.reverse .service-text {
    direction: ltr;
}

/* Service Image */
.service-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.service-row:hover .service-image img {
    transform: scale(1.05);
}

/* Service Text Content */
.service-text {
    padding: 40px;
    direction: ltr;
}

.service-number {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #C44D3A;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.service-name {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2E4A2E;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.service-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #C44D3A;
    border-radius: 3px;
}

.service-description-full {
    color: #6F7C6F;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Features List */
.service-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3A473A;
}

.service-features-list li i {
    color: #C44D3A;
    font-size: 0.9rem;
}

/* Inquiry Button */
.service-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #C44D3A;
    border: 2px solid #C44D3A;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-inquiry-btn:hover {
    background: #C44D3A;
    color: white;
    gap: 15px;
}

.btn-site-visit-large {
    background: #C44D3A;
    color: white;
    border: none;
}

.btn-site-visit-large:hover {
    background: #A83826;
    color: white;
    gap: 15px;
}

/* Site Visit Row Highlight */
.site-visit-row {
    background: linear-gradient(135deg, #fff 0%, #FFF5F0 100%);
    border: 1px solid rgba(196, 77, 58, 0.2);
}

.site-visit-text .service-name::after {
    background: #C44D3A;
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-row {
        gap: 30px;
    }
    
    .service-text {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        background-attachment: scroll;
        min-height: 300px;
    }
    
    .service-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 60px;
    }
    
    /* On mobile, reverse layout becomes normal */
    .service-row.reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-text {
        padding: 25px;
    }
    
    .service-name {
        font-size: 1.5rem;
    }
    
    .service-name::after {
        width: 40px;
    }
    
    .service-features-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-details {
        padding: 50px 0;
    }
    
    .service-row {
        margin-bottom: 40px;
        border-radius: 20px;
    }
    
    .service-text {
        padding: 20px;
    }
    
    .service-inquiry-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}