/* ==========================================================================
   Service-page content components
   Used by: ajman-spa.php, massage-ajman.php, deeptissue-massage.php,
   swedish-massage.php.

   Nothing here redefines the site's header, footer, navigation, hero
   banner, fonts or colors — those all still come from css/style.css,
   css/r-style.css and css/responsive-style.css. This file only styles
   the *new* content blocks (trust cards, step timelines, price tables,
   NAP box, quick-link pills, etc.) and reuses the site's own existing
   tokens throughout:
     - headings: Oswald, sans-serif (already the site default)
     - body copy: Barlow, sans-serif (already the site default)
     - page background: #0a0a0a / alt panel #101010 (already used sitewide)
     - heading/body colors: #fff / #e9e9e9 (already used sitewide)
     - accent: #c7d400 (the site's existing lime-yellow brand accent,
       already used in css/style.css for buttons, the scrollbar thumb
       and input focus states)
   ========================================================================== */

/* Section vertical rhythm reuses the site's own .section-padding utility
   (css/style.css: padding:60px 0) — .sp-alt only adds the alternating panel
   background on top of it. */
.sp-alt { background: #101010; }

.sp-crumb {
    font-size: 13px;
    color: #b5b5b5;
    padding: 16px 0 0;
}

.sp-crumb a { color: #b5b5b5; }
.sp-crumb a:hover { color: #c7d400; }
.sp-crumb span { color: #fff; font-weight: 600; }

.sp-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 0 6px;
}

.sp-pill {
    display: inline-block;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 30px;
    color: #fff;
    font-family: Barlow, sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.sp-pill:hover { border-color: #c7d400; color: #c7d400; background: rgba(199, 212, 0, .08); }

.sp-eyebrow {
    font-family: Barlow, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c7d400;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.sp-eyebrow::before { content: ""; width: 26px; height: 2px; background: #c7d400; }

.sp-head { max-width: 700px; margin-bottom: 40px; }
.sp-head p { color: #cfcfcf; margin-top: 10px; }

.sp-trust-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 22px 0 6px; }

.sp-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: Barlow, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 8px 14px;
    border-radius: 30px;
}

.sp-trust-chip svg { width: 15px; height: 15px; flex: none; color: #c7d400; }

/* ---------- generic card (benefits / services / steps) ---------- */

.sp-card {
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(199, 212, 0, .22);
    border-radius: 10px;
    padding: 26px 24px;
    margin-bottom: 24px;
    transition: border-color .2s ease, transform .2s ease;
}

.sp-card:hover { border-color: rgba(199, 212, 0, .55); transform: translateY(-3px); }

.sp-card .sp-num {
    font-family: Oswald, sans-serif;
    color: #c7d400;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sp-card h3, .sp-card h4 {
    font-size: 19px !important;
    margin-bottom: 8px;
}

.sp-card p { color: #cfcfcf; font-size: 14.5px; margin-bottom: 0; }

.sp-card a.sp-card-link {
    display: inline-block;
    margin-top: 10px;
    color: #c7d400;
    font-family: Barlow, sans-serif;
    font-size: 13.5px;
    font-weight: 700;
}

.sp-card a.sp-card-link:hover { text-decoration: underline; }

.sp-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 18px;
}

/* ---------- trust ledger / certification card ---------- */

.sp-cert-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(199, 212, 0, .22);
    border-radius: 10px;
    max-width: 560px;
    margin: 0 auto 34px;
    overflow: hidden;
}

.sp-cert-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 0;
}

.sp-cert-tag {
    font-family: Barlow, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c7d400;
    border: 1px solid rgba(199, 212, 0, .4);
    padding: 4px 12px;
    border-radius: 14px;
}

.sp-cert-seal { width: 36px; height: 36px; color: #c7d400; flex: none; }

.sp-cert-body { padding: 18px 24px 26px; }
.sp-cert-body h3 { font-size: 20px !important; margin-bottom: 10px; }

.sp-cert-fields { margin: 14px 0; border-top: 1px solid rgba(255, 255, 255, .12); }
.sp-cert-fields div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: 13.5px;
}
.sp-cert-fields span:first-child { color: #b5b5b5; }
.sp-cert-fields span:last-child { font-family: Barlow, sans-serif; color: #fff; font-weight: 700; }
.sp-cert-body p { color: #cfcfcf; font-size: 14px; margin-bottom: 0; }

.sp-license-stamp {
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #c7d400;
    background: rgba(199, 212, 0, .08);
    border-radius: 10px;
    padding: 22px 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.sp-license-stamp .sp-ls-item small {
    display: block;
    font-family: Barlow, sans-serif;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #b5b5b5;
    margin-bottom: 4px;
}

.sp-license-stamp .sp-ls-item strong { font-family: Barlow, sans-serif; font-size: 15px; color: #fff; }

/* ---------- steps / timeline ---------- */

.sp-steps-rail { position: relative; }
.sp-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.sp-step:last-child { border-bottom: none; }

.sp-step-num {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #101010;
    border: 1px solid #c7d400;
    color: #c7d400;
    font-family: Oswald, sans-serif;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-step h3, .sp-step h4 { font-size: 18px !important; margin-bottom: 6px; }
.sp-step p { color: #cfcfcf; font-size: 14.5px; margin-bottom: 0; }
.sp-step .sp-time { font-family: Barlow, sans-serif; font-size: 12px; color: #c7d400; margin-left: 10px; }

/* ---------- who-box / callout ---------- */

.sp-callout {
    background: linear-gradient(145deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, .02) 100%);
    border: 1px solid rgba(199, 212, 0, .22);
    border-radius: 10px;
    padding: 26px 28px;
    max-width: 800px;
    margin-top: 10px;
}
.sp-callout p { color: #e9e9e9; margin-bottom: 0; font-size: 15px; }
.sp-callout strong { color: #fff; }

/* ---------- price table ---------- */

.sp-price-table-wrap { overflow-x: auto; }

.sp-price-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    overflow: hidden;
}

.sp-price-table th, .sp-price-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14.5px;
    color: #e9e9e9;
    white-space: nowrap;
}

.sp-price-table th {
    font-family: Barlow, sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c7d400;
    background: #101010;
}

.sp-price-table td:last-child { font-family: Barlow, sans-serif; font-weight: 700; color: #c7d400; }
.sp-price-table tr:last-child td { border-bottom: none; }

.sp-price-list { background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .12); border-radius: 8px; }
.sp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    flex-wrap: wrap;
}
.sp-price-row:last-child { border-bottom: none; }
.sp-price-row .sp-price-name { color: #fff; font-weight: 600; font-size: 15px; }
.sp-price-row-right { display: flex; align-items: center; gap: 16px; }
.sp-price-row .sp-price-amount { font-family: Barlow, sans-serif; color: #c7d400; font-weight: 700; font-size: 14px; white-space: nowrap; }

.sp-btn-book {
    font-family: Barlow, sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #0a0a0a;
    background: #c7d400;
    padding: 8px 18px;
    border-radius: 30px;
    white-space: nowrap;
    transition: opacity .2s ease;
}
.sp-btn-book:hover { opacity: .85; color: #0a0a0a; }

.sp-price-note { color: #b5b5b5; font-size: 13.5px; margin-top: 16px; margin-bottom: 0; }

/* ---------- NAP / location ---------- */

.sp-nap {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 28px;
}
.sp-nap dl { display: grid; grid-template-columns: 100px 1fr; gap: 12px 16px; font-size: 14.5px; margin: 0; }
.sp-nap dt { color: #b5b5b5; font-family: Barlow, sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.sp-nap dd { margin: 0; color: #e9e9e9; }
.sp-nap dd strong { color: #fff; }
.sp-nap dd a { color: #c7d400; }

.sp-map-slot {
    border: 1px solid rgba(255, 255, 255, .12);
    background: #101010;
    border-radius: 10px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5b5b5;
    font-family: Barlow, sans-serif;
    font-size: 13px;
    text-align: center;
    padding: 20px;
}

/* ---------- press / referenced-by row ---------- */

.sp-press-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.sp-press-slot {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    padding: 14px 22px;
    background: rgba(255, 255, 255, .03);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    transition: border-color .2s ease, opacity .2s ease;
    opacity: .85;
}
.sp-press-slot:hover { opacity: 1; border-color: rgba(199, 212, 0, .5); }
.sp-press-slot img { max-height: 30px; max-width: 130px; width: auto; object-fit: contain; }

/* ---------- reviews summary ---------- */

.sp-rating-block {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    padding: 26px 30px;
    margin-bottom: 30px;
}
.sp-rating-num { font-family: Oswald, sans-serif; font-size: 40px; color: #fff; }
.sp-rating-stars { color: #c7d400; font-size: 18px; letter-spacing: 2px; }
.sp-rating-count { color: #cfcfcf; font-size: 14.5px; }
.sp-rating-count strong { color: #fff; }
.sp-rating-cta { margin-left: auto; }

/* ---------- CTA band ---------- */

.sp-cta-band {
    background: linear-gradient(120deg, #c7d400 0%, #a3ad00 100%);
    text-align: center;
    padding: 60px 0;
}
.sp-cta-band h2 { color: #0a0a0a !important; }
.sp-cta-band p { color: #1a1a00; max-width: 560px; margin: 14px auto 26px; }
.sp-cta-band .sp-btn-dark {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 30px;
    background: #0a0a0a;
    color: #fff;
    font-family: Barlow, sans-serif;
    font-weight: 600;
    font-size: 15px;
}
.sp-cta-band .sp-btn-outline-dark {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 30px;
    border: 1.5px solid #0a0a0a;
    color: #0a0a0a;
    font-family: Barlow, sans-serif;
    font-weight: 600;
    font-size: 15px;
}

/* ---------- static, always-expanded FAQ ----------
   Used on pages where every question/answer must stay visible at all
   times (no accordion). Same visual language as the site's existing
   .faq/.faq-heading/.faq-text accordion (css/r-style.css), just without
   the checkbox/label collapse mechanism. */

.sp-faq-static {
    background: #000;
    border: 1px solid #8a8a8a;
    border-radius: 4px;
    overflow: hidden;
}

.sp-faq-static-item {
    padding: 18px 20px;
    border-bottom: 1px solid #8a8a8a;
}

.sp-faq-static-item:last-child { border-bottom: none; }

.sp-faq-static-item .faq-heading {
    display: block;
    font-family: Oswald, sans-serif;
    font-weight: 400;
    font-size: 19px;
    color: #fff;
    text-indent: 0;
}

.sp-faq-static-item .faq-text {
    display: block;
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 0;
    color: #cfcfcf;
}

/* ---------- FAQ open-height override ----------
   The site's core .faq accordion (css/r-style.css) checks a fixed 125px
   open height, which is too short for the longer answers on these pages.
   Scoped to .faq-auto so no sitewide file needs to change. */
.faq.faq-auto input[type="checkbox"]:checked + label {
    height: auto;
    min-height: 125px;
    padding-bottom: 18px;
}
.faq.faq-auto label { height: auto; min-height: 56px; }
.faq.faq-auto .faq-arrow { top: 24px; }

/* ---------- real Google review cards (massage-ajman.php) ---------- */

.sp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.sp-review-card {
    border-radius: 10px;
    padding: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .12);
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

.sp-review-header { display: flex; align-items: center; margin-bottom: 10px; gap: 8px; }

.sp-review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Barlow, sans-serif;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    background: #c7d400;
}

.sp-review-name { font-family: Barlow, sans-serif; font-weight: 700; color: #fff; font-size: 14px; }
.sp-review-verified { color: #4CAF50; font-weight: 700; margin-left: 4px; font-size: 12px; }
.sp-review-meta { font-size: 12px; color: #999; margin-bottom: 6px; }
.sp-review-stars { color: #c7d400; font-size: 14px; margin-bottom: 8px; }
.sp-review-comment { font-size: 14px; color: #e9e9e9; line-height: 1.5; margin: 0 0 12px; flex-grow: 1; }
.sp-review-footer { font-weight: 700; color: #999; font-size: 11px; margin-top: auto; border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 8px; }

/* ---------- responsive ---------- */

@media (max-width: 767px) {
    .sp-cert-head, .sp-cert-body { padding-left: 18px; padding-right: 18px; }
    .sp-license-stamp { justify-content: flex-start; }
    .sp-rating-cta { margin-left: 0; }
    .sp-nap dl { grid-template-columns: 84px 1fr; }
}

@media (max-width: 480px) {
    .sp-price-row { flex-direction: column; align-items: flex-start; }
    .sp-price-row-right { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
    .sp-card, .sp-pill, .sp-press-slot, .sp-btn-book { transition: none !important; }
}
