/* ── Services Page Styles ────────────────────────────────────────────────────
   Loaded only on page-services.php via is_page_template() conditional.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Shared inner-page utilities ───────────────────────────────────────────── */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ── Page Hero ─────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, var(--navy-mid) 100%);
    padding: 72px 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero-glow {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .pill-label { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.25); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 24px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ══ SERVICES INTRO ══════════════════════════════════════════════════════ */
.services-page-section {
    padding: 80px 0 100px;
    background: var(--white);
}
.svc-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.svc-intro-sub {
    max-width: 420px;
    text-align: right;
}

/* ══ SERVICE CARDS GRID ══════════════════════════════════════════════════ */
.svc-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.svc-card {
    display: flex;
    flex-direction: column;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}
.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212,175,55,0.4);
}

.svc-img {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
    overflow: hidden;
}
.svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.svc-card:hover .svc-img img { transform: scale(1.04); }

.svc-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255,255,255,0.25);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 0.04em;
}
.svc-img-placeholder svg { opacity: 0.4; }

.svc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px;
}

.svc-body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
    line-height: 1.2;
    transition: color 0.2s;
}
.svc-card:hover .svc-name { color: var(--navy); }
.svc-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0 0 24px;
    flex: 1;
}
.svc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-top: auto;
}
.svc-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
}
.svc-arrow {
    font-size: 20px;
    color: var(--gold);
    transition: transform 0.3s var(--ease);
    display: inline-block;
}
.svc-card:hover .svc-arrow { transform: translateX(6px); }

/* ══ BOTTOM CTA BAND ════════════════════════════════════════════════════ */
.svc-cta-band {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--border);
}
.svc-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.svc-cta-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 10px;
    line-height: 1.2;
}
.svc-cta-sub {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-body);
    margin: 0;
    max-width: 520px;
}
.svc-cta-btns {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}
.svc-btn-gold {
    padding: 15px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.svc-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.3);
}
.svc-btn-outline {
    padding: 14px 28px;
    background: transparent;
    color: var(--navy);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    border: 1px solid var(--navy);
    transition: background 0.2s, color 0.2s;
}
.svc-btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}
.svc-btn-whatsapp {
    padding: 14px 28px;
    background: #25D366;
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.svc-btn-whatsapp:hover { background: #1ebe5c; }

/* ══ RESPONSIVE ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
    .svc-page-grid { grid-template-columns: 1fr; }
    .svc-intro { flex-direction: column; align-items: flex-start; }
    .svc-intro-sub { text-align: left; max-width: 100%; }
}
@media (max-width: 768px) {
    .services-page-section, .svc-cta-band { padding: 60px 0; }
    .svc-img { height: 180px; }
    .svc-cta-inner { flex-direction: column; align-items: flex-start; }
    .svc-cta-btns { width: 100%; flex-direction: column; }
    .svc-btn-gold, .svc-btn-outline, .svc-btn-whatsapp { width: 100%; justify-content: center; text-align: center; }
    .page-hero { padding: 48px 0 48px; }
}
