:root {
    --primary: #1e293b;
    --secondary: #F2662A;
    --light: #f8fafc;
    --dark: #0f172a;
    --gray: #64748b;
}

body {
    color: #334155;
    line-height: 1.7;
    padding-top: 80px;
}

.page-title {
    background: linear-gradient(135deg,
            rgba(242, 102, 42, 0.75),
            rgba(28, 35, 45, 0.75)),
        url("../assets/banner_9.jpg") center/cover no-repeat;
    color: white;
    text-align: center;
    height: 500px;
    margin: 0 auto 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    
}


.page-title h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-title li a {
    color: white;
    text-decoration: none;
}

.page-title li.active {
    color: var(--secondary);
}

.breadcrumb {
    --bs-breadcrumb-divider-color: #ffffff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff !important;
}

/* Service Content */
.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.service-image img {
    width: 100%;
    transition: transform 0.5s;
}

.service-image:hover img {
    transform: scale(1.03);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.service-list {
    list-style: none;
    counter-reset: item;
    position: relative;
    padding-left: 0;
}

.service-list li {
    counter-increment: item;
    position: relative;
    margin-bottom: 30px;
    padding-left: 32px;
    line-height: 1.8;
}

.service-list li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-list .lead strong{
    font-weight: 500;
    color: var(--secondary);
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    color: #333;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.contact-card h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.btn-primary {
    background: var(--secondary);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-primary:hover {
    background: #e55d00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

@media (max-width: 768px) {
    .page-title {
        padding: 60px 0;
    }

    .page-title h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}