.modern-service-page {
    padding: 80px 0;
    background-color: #ffffff;
}

/* --- SIDEBAR STYLING --- */
.service-widget {
    background-color: #f7f7f7;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-2);
    margin-bottom: 20px;
    font-family: var(--font-01);
}

/* 1. Search Form */
.sidebar-search-form {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}
.sidebar-search-form input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    outline: none;
    font-size: 14px;
}
.sidebar-search-form button {
    background-color: var(--color-1);
    color: #ffffff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: 0.3s;
}
.sidebar-search-form button:hover {
    background-color:  var(--color-2);
}

/* 2. Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    margin-bottom: 10px;
}
.category-list li:last-child {
    margin-bottom: 0;
}
.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: var(--font-02);
}
.category-list a i {
    font-size: 12px;
    color: #ccc;
    transition: 0.3s;
}
.category-list a:hover, .category-list a.active {
    color: var(--color-1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.category-list a:hover i, .category-list a.active i {
    color: var(--color-1);
}

/* 3. Popular Tags */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tags-wrapper a {
    background-color: #ffffff;
    color: #555;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}
.tags-wrapper a:hover {
    background-color: var(--color-1);
    color: #ffffff;
}

/* 4. Contact Form */
.sidebar-contact-form input, .sidebar-contact-form textarea {
    width: 100%;
    border: none;
    background-color: #ffffff;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
    outline: none;
}
.btn-orange {
    background-color: var(--color-1);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    cursor: pointer;
}
.btn-orange:hover {
    background-color: var(--vt-orange-hover);
    transform: translateY(-2px);
}

/* 5. Consultation Widget */
.consultation-widget {
    border-radius: 16px;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
}
.consultation-img {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.consultation-content {
    padding: 30px;
}
.consultation-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
    font-family: var(--font-01);
}
.consultation-content p {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: var(--font-02);
}
.emergency-call {
    display: flex;
    align-items: center;
    gap: 15px;
}
.icon-circle {
    width: 45px;
    height: 45px;
    background-color: var(--color-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.call-text span {
    display: block;
    font-size: 16px;
    color: #aaaaaa;
    font-family: var(--font-01);
}
.call-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-02);
}

/* --- MAIN CONTENT STYLING --- */
.main-image-box img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.service-main-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-2);
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: var(--font-01);
}

.service-cms-content {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.service-cms-content p {
    margin-bottom: 20px;
    font-size: 18px;
}

.service-cms-content h3, .service-cms-content h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-2);
    margin: 35px 0 15px 0;
    font-family: var(--font-01);
}

/* Formatting for checklists generated from WYSIWYG */
.service-cms-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}

.service-cms-content ul li {
    width: 50%; /* Creates the 2-column checklist look from the image */
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-weight: 600;
    color: var(--color-2);
    font-size: 16px;
}

/* Custom Orange Checkmark for Lists */
.service-cms-content ul li::before {
    content: '\f058'; /* FontAwesome regular circle-check */
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-1);
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .service-cms-content ul li {
        width: 100%; /* Single column list on mobile */
    }
    .service-main-title {
        font-size: 26px;
    }
}