/* Repairing Services Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #e6fbff 0%, #f0f8ff 100%) !important;
}


h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
h1::after {
    content: "";
    display: block;
    height: 5px;
    width: 100%;
    margin: 0 auto;
    border-radius: 3px;
    background: linear-gradient(90deg, #2563eb 0%, #f59e0b 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}
/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #e6fbff 0%, #f0f8ff 100%);
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
     padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    text-align: center;
    margin-bottom: 48px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 380px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Repairing Services Section */
.repairing-services {
    padding: 80px 0;
    background: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.repair-services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.repair-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.repair-service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.repair-service-item.reverse {
    direction: rtl;
}

.repair-service-item.reverse .service-content {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.repair-service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .repair-service-item {
        gap: 30px;
        padding: 30px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .services-hero {
        padding: 40px 0;
        min-height: auto;
         padding-top: 100px;
    }
    
    .hero-content {
        margin-bottom: 32px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-cards {
        gap: 24px;
    }
    
    .repairing-services {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .repair-services-list {
        gap: 40px;
    }
    
    .repair-service-item {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
        text-align: center;
    }
    
    .repair-service-item.reverse {
        direction: ltr;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .hero-container,
    .container {
        padding: 0 16px;
    }
    
    .services-hero {
         padding: 32px 0;
        padding-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        max-width: none;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    .repairing-services {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .repair-services-list {
        gap: 32px;
    }
    
    .repair-service-item {
        padding: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
}

/* Animation and interaction enhancements */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .repair-service-item {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .card-image img,
    .service-image img {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Focus states for accessibility */
.service-card:focus-within {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}

.repair-service-item:focus-within {
    outline: 2px solid #007acc;
    outline-offset: 2px;
}