/* ===== SERVICES PAGES STYLES ===== */

/* Service Hero */
.service-hero {
    position: relative;
    min-height: 490px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-hero-content {
    max-width: 700px;
    padding: 60px 0;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.service-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.service-breadcrumb a:hover {
    color: var(--white);
}

.service-breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.service-breadcrumb .current {
    color: var(--white);
    font-weight: 500;
}

.service-hero-title {
    font-family: var(--font-titr);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 550px;
}

/* Service Content */
.service-content-section {
    padding: 80px 0;
    background: var(--white);
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-main-content h2 {
    font-family: var(--font-titr);
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-main-content>p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-main-content h3 {
    font-family: var(--font-titr);
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.service-detail-item {
    background: var(--light-color);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-right: 4px solid var(--primary-color);
}

.service-detail-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-detail-item p {
    color: var(--gray-dark);
    line-height: 1.7;
}

.service-sub-list {
    list-style: none;
    padding: 0;
    margin-top: 12px;
}

.service-sub-list li {
    padding: 6px 0;
    padding-right: 24px;
    position: relative;
    color: var(--gray-dark);
}

.service-sub-list li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Service Highlights */
.service-highlights {
    background: var(--primary-extra-light);
    border-radius: var(--radius-lg);
    padding: 30px 35px;
    margin-top: 40px;
}

.service-highlights h3 {
    font-family: var(--font-titr);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.service-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-dark);
    line-height: 1.5;
}

.service-highlights li svg {
    stroke: var(--primary-color);
    stroke-width: 2.5;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-light);
}

.sidebar-card h4 {
    font-family: var(--font-titr);
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.sidebar-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-services li {
    margin-bottom: 8px;
}

.sidebar-services li a {
    display: block;
    padding: 10px 14px;
    color: var(--gray-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-weight: 500;
}

.sidebar-services li a:hover {
    background: var(--primary-extra-light);
    color: var(--primary-color);
    padding-right: 20px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
    margin-bottom: 12px;
}

.sidebar-cta .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.sidebar-cta .btn-primary:hover {
    background: var(--gray-light);
    color: var(--primary-dark);
}

.sidebar-phone {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.sidebar-phone:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Call to Action Section */
.service-cta-section {
    padding: 60px 0;
    background: var(--light-color);
}

.service-cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    text-align: center;
    color: var(--white);
}

.service-cta-box .cta-content h2 {
    font-family: var(--font-titr);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-cta-box .cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: var(--gray-light);
    color: var(--primary-dark);
}

.cta-buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-hero-subtitle {
        font-size: 1rem;
    }

    .service-cta-box {
        padding: 40px 30px;
    }

    .service-cta-box .cta-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 350px;
    }

    .service-hero-content {
        padding: 40px 0;
    }

    .service-hero-title {
        font-size: 2rem;
    }

    .service-hero-subtitle {
        font-size: 0.95rem;
    }

    .service-content-section {
        padding: 50px 0;
    }

    .service-main-content h2 {
        font-size: 1.6rem;
    }

    .service-main-content h3 {
        font-size: 1.2rem;
    }

    .service-detail-item {
        padding: 18px 20px;
    }

    .service-highlights {
        padding: 20px 22px;
    }

    .service-cta-box {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
    }

    .service-cta-box .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .sidebar-card {
        padding: 20px 16px;
    }
}

@media (max-width: 480px) {
    .service-hero {
        min-height: 280px;
    }

    .service-hero-title {
        font-size: 1.5rem;
    }

    .service-breadcrumb {
        font-size: 0.7rem;
    }

    .service-content-section {
        padding: 30px 0;
    }

    .service-main-content h2 {
        font-size: 1.3rem;
    }

    .service-main-content h3 {
        font-size: 1rem;
    }

    .service-detail-item {
        padding: 14px 16px;
    }

    .service-detail-item h4 {
        font-size: 0.95rem;
    }

    .service-detail-item p {
        font-size: 0.85rem;
    }

    .service-sub-list li {
        font-size: 0.85rem;
    }

    .service-highlights {
        padding: 16px 18px;
    }

    .service-highlights li {
        font-size: 0.85rem;
    }

    .service-cta-box {
        padding: 24px 16px;
    }

    .service-cta-box .cta-content h2 {
        font-size: 1.1rem;
    }

    .service-cta-box .cta-content p {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}