/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(211, 65, 63, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero .hero-content {
    text-align: center;
    color: white;
    padding: 100px 20px 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.services-hero .hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-hero .hero-subtitle {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 35px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.stat-box p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(211, 65, 63, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    margin-bottom: 25px;
    display: inline-block;
}

.service-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-btn:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* Service Detail Sections */
.service-detail {
    padding: 100px 0;
    background: white;
}

.service-detail.alt-bg {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-wrapper.reverse {
    direction: rtl;
}

.service-detail-wrapper.reverse > * {
    direction: ltr;
}

.service-detail-content {
    padding: 20px 0;
}

.detail-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(211, 65, 63, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.detail-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 35px;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(211, 65, 63, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(211, 65, 63, 0.08);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.detail-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-detail-image {
    position: relative;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-detail-image:hover img {
    transform: scale(1.08) rotate(-2deg);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(211, 65, 63, 0.4);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-hero .hero-title {
        font-size: 52px;
    }

    .service-detail-wrapper {
        gap: 40px;
    }

    .service-detail-content h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 60vh;
    }

    .services-hero .hero-content {
        padding: 80px 20px 40px;
    }

    .services-hero .hero-title {
        font-size: 38px;
    }

    .services-hero .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-box {
        padding: 20px 25px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .services-overview {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .service-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-wrapper.reverse {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 32px;
    }

    .detail-intro {
        font-size: 16px;
    }

    .service-detail-image {
        min-height: 300px;
        padding: 30px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-hero .hero-title {
        font-size: 28px;
    }

    .services-hero .hero-subtitle {
        font-size: 14px;
    }

    .stat-box {
        padding: 15px 20px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .service-detail-content h2 {
        font-size: 26px;
    }

    .feature-item {
        padding: 12px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .detail-cta {
        flex-direction: column;
    }

    .detail-cta .btn {
        width: 100%;
    }

    .service-detail-image {
        min-height: 250px;
        padding: 20px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

