/* Services Page Styles */

/* Banner Section */
.services-banner {
    position: relative;
    height: 300px;
    background-image: url('images2/A1.avif');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.services-content {
    position: relative;
    z-index: 1;
}

.services-content h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: block;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.services-content .title-line {
    display: block;
    position: relative;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out;
}

.services-content .title-line.featured {
    background: linear-gradient(135deg, #b30ce6, #ff6b9d, #00f2fe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out, gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.services-content p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeIn 2s ease-out 0.5s both;
    max-width: 800px;
    margin: 0 auto;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Detailed Services Section */
.services-detail {
    padding: 5rem 10%;
}

.services-detail .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 3rem;
}

.service-image {
    flex: 1 1 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-info {
    flex: 1 1 50rem;
}

.service-info h2 {
    font-size: 3rem;
    color: #334;
    margin-bottom: 1.5rem;
}

.service-info p {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #777;
    margin-bottom: 2rem;
}

.service-info h3 {
    font-size: 2rem;
    color: #b30ce6;
    margin: 2rem 0 1rem;
}

.service-info ul {
    list-style: none;
    margin-left: 1rem;
}

.service-info ul li {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #777;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.service-info ul li i {
    color: #b30ce6;
    margin-right: 1rem;
    font-size: 1.8rem;
}

.price-range {
    background: #f5f5f5;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.price-range p {
    font-size: 1.6rem;
    color: #334;
    margin: 0;
}

.service-divider {
    height: 1px;
    background: #ddd;
    margin: 4rem 0;
}

/* Repair Process Section */
.repair-process {
    background: #f5f5f5;
    padding: 5rem 10%;
    text-align: center;
}

.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    flex: 1 1 18rem;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-icon {
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon i {
    font-size: 3rem;
    color: #b30ce6;
}

.process-number {
    position: absolute;
    top: -1rem;
    right: -1rem;
    width: 3rem;
    height: 3rem;
    background: #b30ce6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: bold;
}

.process-item h3 {
    font-size: 2.2rem;
    color: #334;
    margin-bottom: 1.5rem;
}

.process-item p {
    font-size: 1.5rem;
    color: #777;
    line-height: 1.6;
}

/* CTA Section */
.services-cta {
    padding: 6rem 10%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images2/A4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.services-cta p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

.services-cta .btn {
    font-size: 1.8rem;
    padding: 1.5rem 4rem;
    background: #b30ce6;
    color: #fff;
    border: 2px solid #fff;
}

.services-cta .btn:hover {
    background: #fff;
    color: #b30ce6;
    border-color: #fff;
}

/* Responsive Design */
@media (max-width: 991px) {
    .services-banner {
        height: 250px;
    }
    
    .services-content h1 {
        font-size: 3.5rem;
    }
    
    .services-detail, .repair-process, .services-cta {
        padding: 3rem 5%;
    }
}

@media (max-width: 768px) {
    .services-banner {
        height: 200px;
    }
    
    .services-content h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .services-content p {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 2rem;
    }
    
    .service-item {
        gap: 2rem;
    }
    
    .service-info h2 {
        font-size: 2.5rem;
    }
    
    .process-item {
        flex: 1 1 40%;
    }
}

@media (max-width: 450px) {
    .services-banner {
        height: 180px;
    }
    
    .services-content h1 {
        font-size: 2.5rem;
    }
    
    .service-info h2 {
        font-size: 2.2rem;
    }
    
    .service-info h3 {
        font-size: 1.8rem;
    }
    
    .process-item {
        flex: 1 1 100%;
    }
    
    .services-cta h2 {
        font-size: 2.5rem;
    }
}