.sp-section-card {
    background: var(--white);
    border: 1px solid var(--portal-border, #e8e5e0);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.sp-section-header {
    background: var(--secondary-color);
    border-bottom: 3px solid var(--primary-color);
    padding: 0.88rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.32rem 1.5rem 0.32rem 0.9rem;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

.sp-header-icon {
    color: var(--primary-extra-light);
    font-size: 1.1rem;
    opacity: 0.7;
}

.sp-section-body {
    padding: 1.75rem 2rem;
}

.sp-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.sp-content {
    flex: 1;
    min-width: 0;
}

.sp-para {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--neutral-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sp-para:last-child {
    margin-bottom: 0;
}

.sp-para a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.sp-para a:hover {
    color: var(--primary-light);
}

.sp-hours-title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--black);
    display: block;
    margin-bottom: 0.5rem;
}

.sp-hours-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.28rem 0;
    border-bottom: 1px solid #f0eeeb;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: var(--neutral-dark);
}

.sp-hours-row:last-child {
    border-bottom: none;
}

.sp-hours-city {
    font-weight: 600;
    color: var(--black);
    min-width: 130px;
}

.sp-livechat-widget {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.sp-livechat-card {
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: block;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    background: var(--secondary-color);
}

.sp-livechat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-red);
}

.sp-livechat-img-wrap {
    position: relative;
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.sp-livechat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.sp-livechat-card:hover .sp-livechat-img-wrap img {
    transform: scale(1.06);
}

.sp-livechat-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 1.6s infinite;
    flex-shrink: 0;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
    }
}

.sp-live-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(0, 0, 0, 0.72);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.55);
}

.sp-livechat-label {
    background: var(--primary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0.55rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.sp-livechat-caption {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    color: var(--neutral-mid);
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 575.98px) {
    .sp-section-body {
        padding: 1.1rem;
    }

    .sp-livechat-card {
        width: 100%;
    }

    .sp-livechat-widget {
        width: 100%;
    }
}