/* Redesigned Sidebar Styles */
.sidebar-book-btn {
    background-color: #720262;
    /* Theme Purple/Maroon */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(114, 2, 98, 0.2);
}

.sidebar-book-btn:hover {
    background-color: #5a024e;
    transform: translateY(-2px);
}

.sidebar-book-btn i {
    font-size: 20px;
}

.sidebar-services-box {
    background-color: #F4F7F9;
    /* Light blue-ish gray */
    padding: 20px 15px;
    border-radius: 10px;
}

.sidebar-services-box h3 {
    color: var(--primary-color);
    /* Dark Blue */
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 5px;
}

.service-links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-link-card {
    background: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.service-link-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
    color: var(--primary-color);
}

.service-link-card i {
    font-size: 14px;
    color: #666;
}

.service-link-card:hover i {
    color: var(--primary-color);
}

.read-more-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: #fdfdfd;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.read-more-services:hover {
    background: #f5f5f5;
    border-color: #ccc;
}