@import url('style.css');

.aftersales-hero {
    background: linear-gradient(rgba(31, 34, 53, 0.9), rgba(31, 34, 53, 0.9)), url('../images/banners/Hitachi.jpg') no-repeat center center;
    background-size: cover;
    padding: 15rem 2rem 8rem;
    text-align: center;
    margin-top: 5rem;
}

.aftersales-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.aftersales-hero h1 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.aftersales-hero p {
    font-size: 1.8rem;
    color: #ddd;
    line-height: 1.8;
}

.customer-support {
    background: #f9f9f9;
    padding: 4rem 2rem;
}

.customer-support .heading {
    margin-top: 0;
}

.support-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    flex: 1 1 30rem;
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 280px;
}

.support-card .support-icon {
    margin-bottom: 1.5rem;
}

.support-card .support-icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.support-card h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.support-card .short-number {
    font-size: 4rem;
    font-weight: bold;
    color: var(--navy);
}

.support-card .contact-note {
    font-size: 1.4rem;
    color: #888;
    margin-bottom: 1rem;
}

.support-card .contact-link {
    display: block;
    font-size: 1.8rem;
    color: #333;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

.support-card .contact-link:hover {
    color: var(--navy);
}

.support-card .days {
    font-size: 1.6rem;
    color: #333;
    font-weight: bold;
}

.support-card .hours {
    font-size: 2rem;
    color: var(--navy);
    margin-top: 0.5rem;
}

.service-centers {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-centers .heading {
    margin-top: 0;
}

.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.center-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--navy);
}

.center-card h3 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.center-card p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .aftersales-hero h1 {
        font-size: 3rem;
    }
    
    .aftersales-hero p {
        font-size: 1.5rem;
    }
    
    .support-grid {
        padding: 0 1rem;
    }
    
    .support-card {
        flex: 1 1 100%;
    }
}
