/* Services Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../IMG/pexels-michelangelo-buonarroti-4176036.jpg') center/cover no-repeat;
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.hero .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'El Messiri', sans-serif;
}

.hero .breadcrumb {
    background: transparent;
    justify-content: center;
    padding: 0;
}

.hero .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
    content: "\f104";
    font-family: "Font Awesome 5 pro";
    font-weight: 900;
}

.hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.hero .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.hero .breadcrumb-item.active {
    color: white;
}


/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-body {
    padding: 20px;
}

.service-title {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.service-footer .btn-primary{
    color: var(--primary-dark);
}

.service-guarantee {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.service-guarantee i {
    color: var(--primary-dark);
    margin-left: 5px;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-item {
    text-align: center;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-lightest);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.process-item h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.process-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

.highlight-phone {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    margin-right: 3px;
    direction: ltr;
    display: inline-block;
    transition: all 0.3s;
}

.highlight-phone:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-card {
    padding: 60px 0;
    color: white;
    border-radius: 0;
}

.cta-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .services-hero {
        padding: 100px 0 60px;
    }

    .services-hero .hero-title {
        font-size: 2rem;
    }

    .service-img {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .services-hero {
        padding: 80px 0 40px;
    }

    .process-item {
        margin-bottom: 40px;
    }
}

@media (max-width: 575.98px) {
    .service-footer {
        flex-direction: column;
        gap: 10px;
    }

    .service-guarantee {
        margin-top: 10px;
    }
}