/* ============================================================
   Blue Ville Ventures Ltd — SERVICES PAGE
   All colors driven by design tokens (css/base.css :root).
   (.svc-card lives in css/base.css — shared with the homepage.)
   ============================================================ */

/* ── PAGE HERO (Services) ── */
.page-hero {
    background-image: url('../images/banners/services-banner.webp');
}

.process-step {
    text-align: center;
    padding: 20px 10px;
}

.process-icon {
    width: 72px;
    height: 72px;
    background: var(--tone-bg, var(--color-icon-plate));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon i {
    font-size: 28px;
    color: var(--tone, var(--color-icon));
}

.process-num {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-gold-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.process-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    background: var(--surface-card);
    height: 100%;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

.price-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-lg);
}

.price-card.featured {
    border-color: var(--color-gold);
    background: var(--gradient-band);
}

/* The featured card sits on a dark band, so its copy has to flip light —
   previously the amounts stayed near-black on navy. */
.price-card.featured .price-name,
.price-card.featured .price-amt,
.price-card.featured .price-feature {
    color: var(--text-on-dark);
}

.price-card.featured .price-feature {
    border-bottom-color: var(--white-tint-200);
}

.price-card.featured .price-feature i {
    color: var(--color-gold-light);
}

.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-gold);
    color: var(--color-primary-deep);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.price-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold-text);
    margin-bottom: 16px;
}

.price-amt {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-strong);
}

.price-feature {
    font-size: 14px;
    color: var(--text-second);
    padding: 7px 0;
    border-bottom: 1px solid var(--border-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-feature:last-of-type {
    border-bottom: none;
}

.price-feature i {
    color: var(--color-icon);
    font-size: 15px;
}

.accordion-button {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-strong) !important;
    background: var(--surface-card) !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--color-gold-deep) !important;
}

.accordion-item {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
}