/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    height: 300px;
    background-image: url('../../images/services1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.services-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.1;
}

.services-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Services Section */
.detailed-services {
    padding: 60px 0;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    background: #fafbfc;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-header-detail h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-features-detailed {
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #374151;
}

.features-list .checkmark {
    color: #22c55e;
    font-weight: bold;
    font-size: 1rem;
}

.service-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 1rem;
}

.service-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Installation Process Timeline */
.installation-process {
    padding: 60px 0;
    background: #f8fafc;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.process-step-timeline {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
}

.step-number-timeline {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 32px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    z-index: 1;
}

.step-content-timeline h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content-timeline p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-services {
    padding: 60px 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.why-item {
    text-align: center;
    padding: 32px 24px;
    background: #fafbfc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.why-item h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        height: 250px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .detailed-services {
        padding: 40px 0;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
        padding: 24px;
    }

    .service-detail.reverse {
        direction: ltr;
    }

    .service-image img {
        height: 240px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step-timeline {
        flex-direction: column;
        text-align: center;
        margin-bottom: 32px;
    }

    .step-number-timeline {
        margin: 0 auto 16px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .installation-process,
    .why-choose-services {
        padding: 40px 0;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .service-detail {
        gap: 32px;
        padding: 32px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }
}