.svc-explore-section {
    padding: 5rem 0;
    background: #e9faea;
    position: relative;
    overflow: hidden;
}

.svc-explore-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(23,212,64,.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Header ── */
.svc-explore-header {
    text-align: center;
    margin-bottom: 3rem;
}

.svc-explore-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(23,212,64,.9);
    color: #061b1b;
    border-radius: 50px;
    padding: 5px 18px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.svc-explore-h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: #061b1b;
    line-height: 1.15;
    margin: 0 0 10px;
}

.svc-explore-h2 span { color: rgba(23,212,64,.9); }

.svc-explore-sub {
    font-size: .95rem;
    color: #666;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Carousel wrapper ── */
.svc-explore-carousel-outer {
    position: relative;
}

.svc-explore-track-wrap {
    overflow: hidden;
    border-radius: 16px;
}

.svc-explore-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Individual service card ── */
.svc-explore-card {
    flex-shrink: 0;
    width: 280px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.svc-explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    border-color: rgba(23,212,64,.3);
    text-decoration: none;
}

.svc-explore-card-icon-area {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.svc-explore-card-icon-area::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.15));
}

.svc-explore-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-explore-card-cat {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(23,212,64,.9);
    margin-bottom: 5px;
}

.svc-explore-card-title {
    font-size: .95rem;
    font-weight: 800;
    color: #061b1b;
    margin: 0 0 6px;
    line-height: 1.25;
}

.svc-explore-card-desc {
    font-size: .78rem;
    color: #777;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}

.svc-explore-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(23,212,64,.9);
    color: #061b1b;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s, transform .15s;
    align-self: flex-start;
}

.svc-explore-card-btn:hover {
    background: rgba(23,212,64,1);
    color: #061b1b;
    transform: translateX(2px);
    text-decoration: none;
}

/* ── Nav arrows ── */
.svc-explore-prev,
.svc-explore-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    color: #333;
    font-size: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.svc-explore-prev { left: -20px; }
.svc-explore-next { right: -20px; }

.svc-explore-prev:hover,
.svc-explore-next:hover {
    background: rgba(23,212,64,.9);
    border-color: transparent;
    color: #061b1b;
    box-shadow: 0 4px 16px rgba(23,212,64,.3);
}

.svc-explore-prev:disabled,
.svc-explore-next:disabled {
    opacity: .3;
    cursor: default;
    pointer-events: none;
}

/* ── Dots ── */
.svc-explore-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 1.5rem;
}

.svc-explore-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.svc-explore-dot.active {
    background: rgba(23,212,64,.9);
    transform: scale(1.3);
}

/* ── Bottom CTA ── */
.svc-explore-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.svc-explore-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ve-gold);
    color: #000;
    border-radius: 12px;
    padding: 13px 32px;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s, transform .15s, box-shadow .2s;
}

.svc-explore-cta-btn:hover {
    background: #003f3c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6,27,27,.25);
    text-decoration: none;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .svc-explore-prev { left: -10px; }
    .svc-explore-next { right: -10px; }
}

@media (max-width: 767px) {
    .svc-explore-section { padding: 3.5rem 0; }
    .svc-explore-card { width: 240px; }
    .svc-explore-prev,
    .svc-explore-next { display: none; }
}
