/* =============================================
   Shared Service Page Styles
   service-pages.css — Unified with homepage visual
   language: warm yellow header, light backgrounds,
   navy accents. Serves all 6 service landing pages.
   ============================================= */

/* Header — matches homepage's warm yellow bar */
.sp-header {
  background: linear-gradient(180deg, var(--yellow-light, #fff9db) 0%, var(--yellow) 100%);
  border-bottom: 3px solid var(--navy);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}
.sp-header-back {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sp-header-back:hover { opacity: 0.75; }
.sp-header-wa {
  background: #25d366;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sp-header-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* Hero — light background with navy text, matching homepage warmth */
.sp-hero {
  background: linear-gradient(180deg, var(--bg, #f8f9fa) 0%, #fff 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}
.sp-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(244, 210, 31, 0.12);
  border-radius: 50%;
}
.sp-badge {
  background: var(--navy);
  color: var(--yellow);
  border: none;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 16px;
}
.sp-hero h1 {
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}
.sp-hero .lead {
  color: var(--muted, #64748b);
  font-size: 1.05rem;
}
.sp-hero-accent { color: var(--yellow); background: var(--navy); padding: 2px 10px; border-radius: 6px; }

/* CTA Buttons */
.sp-btn-wa {
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sp-btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}
.sp-btn-call {
  background: var(--navy);
  color: var(--yellow);
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sp-btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 42, 91, 0.3);
  color: var(--yellow);
}

/* Feature list in hero — light card style */
.sp-features {
  background: var(--surface, #fff);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--border, rgba(11, 42, 91, 0.08));
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(11, 42, 91, 0.06));
}
.sp-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text, #1a1a2e);
}
.sp-features-list li { margin-bottom: 8px; }
.sp-features-list li:last-child { margin-bottom: 0; }
.sp-features-icon {
  color: var(--navy);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 12px;
}
.sp-check { color: var(--navy); margin-right: 8px; }

/* Pricing section */
.sp-pricing {
  background: var(--bg, #f8f9fa);
  padding: 64px 0;
}
.sp-pricing-card {
  background: var(--surface, #fff);
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(11, 42, 91, 0.06));
  border: 1px solid var(--border, rgba(11, 42, 91, 0.08));
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sp-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md, 0 8px 32px rgba(11, 42, 91, 0.12));
}
.sp-pricing-card .price-tag {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}
.sp-pricing-card .price-unit {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}
.sp-pricing-card .price-label {
  font-size: 0.95rem;
  color: var(--text, #1a1a2e);
  margin-top: 8px;
}
.sp-pricing-icon {
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.sp-pricing-highlight {
  border-top: 3px solid var(--yellow);
}

/* Steps section */
.sp-steps { padding: 64px 0; background: #fff; }
.sp-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #f5c518);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(244, 210, 31, 0.3);
}
.sp-step-title {
  color: var(--navy);
  font-weight: 700;
}

/* FAQ */
.sp-faq { background: var(--bg, #f8f9fa); padding: 64px 0; }
.sp-faq-item {
  background: var(--surface, #fff);
  border-radius: var(--radius-sm, 14px);
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(11, 42, 91, 0.06));
  border-left: 4px solid var(--yellow);
}
.sp-faq-item h5 {
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}
.sp-faq-item p {
  color: var(--muted, #64748b);
  margin: 0;
  font-size: 0.95rem;
}

/* Contact bar — kept navy as it matches homepage footer/contact section */
.sp-contact {
  background: var(--navy);
  color: #fff;
  padding: 40px 0;
}
.sp-contact .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(244, 210, 31, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-right: 12px;
  font-size: 1rem;
  flex-shrink: 0;
}
.sp-contact-label { font-weight: 700; margin-bottom: 4px; }
.sp-contact-text { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; }
.sp-contact-link { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; text-decoration: none; }
.sp-contact-link:hover { text-decoration: underline; color: var(--yellow); }
.sp-contact-sub { color: rgba(255, 255, 255, 0.55); font-size: 0.82rem; }
.sp-contact a { color: var(--yellow); text-decoration: none; }
.sp-contact a:hover { text-decoration: underline; }

/* Footer */
.sp-footer {
  background: #060f1e;
  color: rgba(255, 255, 255, 0.55);
  padding: 20px 0;
  font-size: 0.88rem;
  text-align: center;
}
.sp-footer a { color: var(--yellow); text-decoration: none; }

/* Section labels */
.sp-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.sp-section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
}

/* === How to Order — Service-specific WhatsApp CTA === */
.sp-how-to-order {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  padding: 48px 0;
  border-top: 1px solid rgba(37, 211, 102, 0.15);
  border-bottom: 1px solid rgba(37, 211, 102, 0.15);
}
.sp-hto-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.sp-hto-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.sp-hto-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: var(--muted, #64748b);
}
.sp-hto-step {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text, #1a1a2e);
}
.sp-hto-arrow { color: #25d366; font-size: 0.8rem; }
.sp-hto-cta {
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: 14px 32px;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sp-hto-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* === Page-specific extras === */

/* Binding page: included badge */
.sp-incl-badge {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 12px;
  margin-top: 10px;
}

/* Lamination page: finish badge */
.sp-finish-badge {
  display: inline-block;
  background: rgba(11, 42, 91, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--radius-pill, 999px);
  margin-top: 6px;
}

/* Passport photos page: pricing hero card — light card style */
.sp-pricing-hero-card {
  background: var(--surface, #fff);
  color: var(--text, #1a1a2e);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: var(--shadow-md, 0 8px 32px rgba(11, 42, 91, 0.12));
  border: 2px solid var(--border, rgba(11, 42, 91, 0.08));
}
.sp-pricing-hero-card .big-price {
  font-size: 4rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.sp-pricing-hero-card .sp-hero-card-label {
  font-size: 1rem;
  color: var(--muted, #64748b);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.sp-pricing-hero-card .sp-hero-card-sub {
  font-size: 1.15rem;
  color: var(--text, #1a1a2e);
  margin-top: 8px;
  font-weight: 600;
}
.sp-pricing-hero-card .sp-hero-card-specs {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}
.sp-pricing-hero-card .sp-hero-card-cta {
  display: block;
  margin-top: 24px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: 12px 0;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sp-pricing-hero-card .sp-hero-card-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* Passport photos page: uses grid */
.sp-uses-section { padding: 64px 0; background: #fff; }
.sp-uses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 32px;
}
.sp-use-item {
  background: var(--surface, #fff);
  border-radius: var(--radius-sm, 14px);
  padding: 18px 12px;
  text-align: center;
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(11, 42, 91, 0.06));
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border, rgba(11, 42, 91, 0.07));
}
.sp-use-item i {
  display: block;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

/* Thesis page: trust strip — now light style */
.sp-trust-strip {
  background: linear-gradient(90deg, var(--yellow-light, #fff9db), var(--yellow));
  padding: 28px 0;
}
.sp-trust-item { text-align: center; color: var(--navy); }
.sp-trust-item .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.sp-trust-item .lbl {
  font-size: 0.82rem;
  color: var(--muted, #64748b);
  margin-top: 4px;
}

/* Passport-photos page: hero specifics — light theme */
.sp-photo-label {
  font-size: 1rem;
  color: var(--muted, #64748b);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.sp-photo-sublabel {
  font-size: 1.15rem;
  color: var(--text, #1a1a2e);
  margin-top: 8px;
  font-weight: 600;
}
.sp-photo-divider {
  border-color: var(--border, rgba(11, 42, 91, 0.1));
  margin: 20px 0;
}
.sp-photo-specs {
  font-size: 0.9rem;
  color: var(--muted, #64748b);
}

/* Steps section alt background */
.sp-steps-alt {
  background: var(--bg, #f8f9fa);
}

/* Order CTA banner — shared across all service pages and local-SEO area
   pages (see _partials/sp-order-cta.html), pointing to the self-serve
   Print Kiosk app as an alternative to WhatsApp ordering. */
.sp-order-cta {
  background: var(--bg, #f8f9fa);
  padding: 40px 0;
}

.sp-order-cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, rgba(11, 42, 91, 0.08));
  border-radius: var(--radius, 18px);
  box-shadow: var(--shadow-sm, 0 2px 12px rgba(11, 42, 91, 0.06));
  padding: 28px 32px;
}

.sp-order-cta-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: rgba(11, 42, 91, 0.08);
  color: var(--navy);
}

.sp-order-cta-copy {
  flex: 1;
  min-width: 0;
}

.sp-order-cta-badge {
  display: inline-block;
  margin-bottom: 6px;
  padding: 2px 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
}

.sp-order-cta-copy h3 {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text, #1a1a2e);
  margin-bottom: 6px;
}

.sp-order-cta-copy p {
  font-size: 0.92rem;
  color: var(--muted, #64748b);
  line-height: 1.55;
  margin: 0;
}

.sp-btn-app {
  flex-shrink: 0;
  background: var(--navy);
  color: var(--yellow);
  border-radius: 999px;
  font-weight: 700;
  padding: 13px 28px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sp-btn-app:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11, 42, 91, 0.3);
  color: var(--yellow);
}

@media (max-width: 767.98px) {
  .sp-order-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 26px 22px;
  }
  .sp-btn-app {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .sp-hero { padding: 48px 0 36px; }
  .sp-pricing, .sp-steps, .sp-faq { padding: 40px 0; }
  .sp-hto-steps { flex-direction: column; gap: 4px; }
  .sp-hto-arrow { transform: rotate(90deg); }
}
