/* ====== Service Details Page ====== */
.service-details-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 15px;
}

.service-list a {
    display: block;
    padding: 12px 15px;
    background: var(--bg-light-gray);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.service-list a:hover,
.service-list a.active {
    background: var(--secondary-color);
    color: #fff;
    border-left: 3px solid var(--primary-color);
}

.help-widget {
    background: linear-gradient(rgba(10, 28, 58, 0.9), rgba(10, 28, 58, 0.9)), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&auto=format&fit=crop&w=400&q=80') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

/* ====== Contact Page ====== */
.contact-info-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(255, 182, 6, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card i {
    font-size: 30px;
    color: var(--primary-color);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 400px;
}