/* ==========================================
   SIDEBAR LIST STYLES (Services)
   ========================================== */
.ebc-sidebar-container h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
    border-left: 3px solid #333;
}

.ebc-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ebc-item-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    text-decoration: none;
    color: #1a202c;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.ebc-item-link:hover {
    background-color: #f7f7f7;
    color: #ac9773; /* Brand Color Hover */
    padding-left: 25px;
}

.ebc-item-link.active {
    background-color: #ac9773; /* Brand Color Active */
    color: #fff !important;
}

.ebc-item-link.active:hover {
    background-color: #968362; /* Slightly darker brand color */
    padding-left: 20px;
}

.ebc-item-arrow {
    font-size: 1.2rem;
    line-height: 1;
}

/* ==========================================
   CTA WIDGET STYLES
   ========================================== */
.ebc-cta-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.ebc-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #000;
    z-index: 1;
    transition: opacity 0.3s;
}

.ebc-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
    color: #fff;
    width: 100%;
}

.ebc-cta-title {
    color: #fff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2 !important;
}

.ebc-cta-button {
    display: inline-block;
    background-color: #ac9773; /* Brand Color */
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.ebc-cta-button:hover {
    background-color: #968362; /* Darker Brand Color */
    transform: translateY(-2px);
    color: #fff !important;
}