/* Service Pages Stylesheet */

.service-page {
    padding: 12rem 7% 10rem;
    max-width: 1300px;
    margin: 0 auto;
    color: var(--text-color);
}

.service-hero {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 8rem;
}

.service-hero-content {
    flex: 1;
}

.service-hero-img {
    flex: 1;
    height: 450px;
    object-fit: cover;
    border-radius: 3rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.service-hero-img:hover {
    transform: translateY(-1rem);
}

.service-hero h1 {
    font-size: 5rem;
    color: var(--main-color);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.9rem;
    line-height: 1.8;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 0.5rem;
    background: var(--main-color);
    border-radius: 1rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-bottom: 8rem;
}

.offer-card {
    background: var(--bg-color);
    padding: 3.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 0.5rem 2rem var(--shadow-color);
    border-top: 0.6rem solid var(--main-color);
    transition: 0.4s ease;
}

.offer-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 1.5rem 3.5rem var(--shadow-color);
}

.offer-card i {
    font-size: 4rem;
    color: var(--main-color);
    margin-bottom: 2rem;
    display: block;
}

.offer-card h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.offer-card p {
    font-size: 1.6rem;
    line-height: 1.6;
}

.process-section {
    background: rgba(99, 102, 241, 0.05);
    padding: 8rem 7%;
    border-radius: 4rem;
    margin-bottom: 8rem;
}

.process-content {
    font-size: 1.8rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.back-btn-container {
    text-align: center;
}

.back-btn {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--main-color);
    border-radius: 5rem;
    color: #fdfdfd;
    font-size: 1.8rem;
    font-weight: 600;
    transition: 0.5s ease;
    border: 0.2rem solid var(--main-color);
    box-shadow: 0 0.5rem 1.5rem rgba(99, 102, 241, 0.4);
}

.back-btn:hover {
    background: transparent;
    color: var(--main-color);
    box-shadow: 0 0.8rem 2.5rem rgba(99, 102, 241, 0.2);
}

@media (max-width: 991px) {
    .service-hero {
        flex-direction: column;
        text-align: center;
    }

    .service-hero-img {
        width: 100%;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 3.5rem;
    }
}