/* ============================================================
   Services Page — services.css
   ============================================================ */

/* ---- Page Header ---- */
.page-header {
    padding: 160px 0 90px;
    text-align: center;
}

.page-header-heading {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
}
.page-header-heading em { font-style: italic; color: var(--gold); }

.page-header-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,.45);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: .5px;
}

/* ---- Services Section ---- */
.services-full-section { padding: 80px 0 60px; }

.svc-category {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.svc-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Category heading + decorative line */
.svc-category-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 36px;
}

.svc-category-title {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--dark);
    white-space: nowrap;
    margin: 0;
}

.svc-category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(201,168,122,.6), transparent);
}

/* ---- Simple price list ---- */
.svc-price-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-price-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
    font-size: 13px;
}
.svc-price-item:last-child { border-bottom: none; }

.svc-price-name { color: var(--text); }
.svc-price-dots { flex: 1; border-bottom: 1px dotted rgba(0,0,0,.15); margin: 0 8px; min-width: 20px; }
.svc-price-cost  { color: var(--gold-dk); font-weight: 600; white-space: nowrap; }

/* ---- Package cards (items with descriptions) ---- */
.svc-package-card {
    background: var(--white);
    padding: 24px;
    height: 100%;
    border-left: 2px solid var(--gold);
}

.svc-package-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.svc-package-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

.svc-package-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dk);
    white-space: nowrap;
}

.svc-package-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.7;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .page-header { padding: 130px 0 70px; }
    .svc-category-header { flex-direction: column; align-items: flex-start; gap: 8px; }
    .svc-category-line { width: 60px; flex: none; }
}
