/* More Service Page Styles */

/* Banner section */
.banner-banner {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    margin-top: 60px;
}

.banner-banner .banner-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-banner .banner-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.banner-banner .banner-content p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumb navigation */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb i {
    font-size: 12px;
    color: #666;
}

/* Container padding */
.about-container {
    padding: 40px;
    background: #fff;
    margin-bottom: 60px;
}

/* Service intro */
.service-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-intro h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.service-intro h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ddbd84;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.intro-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Services grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #fafafa;
    padding: 35px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 28px;
    color: #ddbd84;
}

.service-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    font-size: 13px;
    color: #555;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0!important;
       
}

.service-features::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ddbd84;
    font-size: 12px;
}

/* Service CTA */
.service-cta {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: #fff;
}

.service-cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-cta p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 14px 40px;
    background: #ddbd84;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.cta-button:hover {
    background: #ffca28;
    color: #333;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-banner {
        padding: 80px 0;
        min-height: 250px;
    }

    .banner-banner .banner-content h1 {
        font-size: 36px;
    }

    .banner-banner .banner-content p {
        font-size: 16px;
    }

    .about-container {
        padding: 20px;
    }

    .service-intro h2 {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .service-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-features {
        justify-content: center;
    }

    .service-cta {
        padding: 30px 20px;
    }

    .service-cta h2 {
        font-size: 22px;
    }
}