/* ==========================================================================
   HIGH-PERFORMANCE MODERN SERVICES PAGE STYLING
   ========================================================================== */

.services-page-wrapper {
    background-color: #F8FAFC;
}

/* Wide Container with Minimal Side Whitespace */
.compact-container {
    max-width: 1280px;
    padding: 0 1rem;
    margin: 0 auto;
}

/* --------------------------------------------------
   HERO BANNER (With Image & Overlay Gradient)
-------------------------------------------------- */
.services-intro-hero {
    position: relative;
    padding: 60px 0 50px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 76, 42, 0.92) 0%, rgba(17, 24, 39, 0.88) 100%),
                url('../images/hero-banner.jpg') center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.services-intro-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-intro-hero .micro-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #F2A900;
    border: 1px solid rgba(242, 169, 0, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.services-intro-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.services-intro-hero p {
    font-size: 1.1rem;
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* --------------------------------------------------
   DETAILED SERVICES SECTION (60px Vertical Spacing)
-------------------------------------------------- */
.services-detailed-section {
    padding: 60px 0;
}

.services-stack-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Detailed Service Card */
.detailed-service-card {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.detailed-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 76, 42, 0.08);
    border-color: rgba(15, 76, 42, 0.2);
}

.detailed-service-card.card-reverse {
    flex-direction: row-reverse;
}

/* Media Sub-Pane */
.service-media-pane {
    width: 42%;
    flex-shrink: 0;
    overflow: hidden;
    height: 310px;
    position: relative;
}

.service-media-pane img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.detailed-service-card:hover .service-media-pane img {
    transform: scale(1.05);
}

.media-overlay-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 76, 42, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.media-overlay-tag.gold-tag {
    background: rgba(242, 169, 0, 0.9);
    color: #111827;
}

/* Info Sub-Pane */
.service-info-pane {
    padding: 32px 40px;
    flex-grow: 1;
    position: relative;
}

.service-num-badge {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 3.5rem;
    font-weight: 900;
    color: #F1F5F9;
    line-height: 1;
    user-select: none;
    z-index: 1;
}

.service-info-pane h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.small-accent-indicator {
    height: 4px;
    width: 42px;
    background-color: #BA1C23;
    margin-bottom: 16px;
    border-radius: 2px;
}

.small-accent-indicator-gold {
    height: 4px;
    width: 42px;
    background-color: #F2A900;
    margin-bottom: 6px;
    border-radius: 2px;
}

.appliances-tagline {
    font-weight: 700;
    color: #F2A900;
    font-size: 0.875rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature Bullets */
.feature-bullets {
    list-style: none;
    margin-bottom: 22px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.feature-bullets li {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
}

.feature-bullets li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #0F4C2A;
    font-size: 0.9rem;
}

/* Action Button */
.inline-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #0F4C2A;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 2;
}

.inline-service-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.inline-service-btn:hover {
    background-color: #BA1C23;
    transform: translateY(-2px);
    color: #FFFFFF;
}

.inline-service-btn:hover i {
    transform: translateX(4px);
}

.inline-service-btn.accent-btn {
    background-color: #F2A900;
    color: #111827;
}

.inline-service-btn.accent-btn:hover {
    background-color: #0F4C2A;
    color: #FFFFFF;
}

/* --------------------------------------------------
   RESPONSIVE BREAKPOINTS
-------------------------------------------------- */
@media (max-width: 992px) {
    .detailed-service-card, 
    .detailed-service-card.card-reverse {
        flex-direction: column;
    }
    
    .service-media-pane {
        width: 100%;
        height: 240px;
    }
    
    .service-info-pane {
        padding: 24px;
    }
    
    .service-num-badge {
        top: 15px;
        right: 20px;
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .services-intro-hero {
        padding: 60px 0;
    }

    .services-detailed-section {
        padding: 60px 0;
    }

    .services-stack-grid {
        gap: 20px;
    }

    .inline-service-btn {
        width: 100%;
        justify-content: center;
    }
}