/*
Theme Name: PrimeHealthSC
Author: Shilpa
Description: A clean, custom WordPress theme built from scratch.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:primehealthsc
Tags: blog, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, responsive-layout, two-columns
*/

/* ==============================
   RESET & BASE STYLES
================================= */
 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
      font-size: 18px;
      line-height: 1.8;
      color: #374151;
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3 {
      font-family: 'Merriweather', Georgia, serif;
      color: #1a1a2e;
      line-height: 1.3;
    }

    a { text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    strong { color: #111827; }

    .wrapper { max-width: 640px; margin: 0 auto; padding: 0 16px; }

    .header {
      border-bottom: 1px solid #f3f4f6;
      padding: 12px 16px;
    }
    .header-inner {
      max-width: 640px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .header-brand {
      font-family: 'Merriweather', Georgia, serif;
      font-weight: 700;
      font-size: 20px;
      color: #1a1a2e;
    }
    .header-label {
      font-size: 11px;
      color: #9ca3af;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }
    .header-phone {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: #1a1a2e;
    }
    .header-phone .phone-text { display: none; }
    @media (min-width: 480px) {
      .header-phone .phone-text { display: inline; }
    }

    .main { padding: 24px 16px; max-width: 640px; margin: 0 auto; }

    .headline {
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 16px;
    }
    @media (min-width: 640px) {
      .headline { font-size: 32px; }
    }

    .urgency-banner {
      background: #fef2f2;
      border-left: 4px solid #dc2626;
      border-radius: 6px;
      padding: 12px;
      margin-bottom: 24px;
      font-weight: 600;
      font-size: 14px;
      color: #7f1d1d;
    }
    @media (min-width: 640px) {
      .urgency-banner { font-size: 16px; }
    }

    .content-img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 24px;
    }

    .para { margin-bottom: 16px; }
    .para-lg { margin-bottom: 24px; }

    .cta-btn {
      display: block;
      width: 100%;
      text-align: center;
      font-weight: 700;
      color: #fff;
      font-size: 18px;
      padding: 16px 24px;
      border-radius: 8px;
      background: #22a34a;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: cta-pulse 2s ease-in-out infinite;
    }
    .cta-btn:hover { transform: scale(1.02); }
    .cta-btn:active { transform: scale(0.98); }
    @media (min-width: 640px) {
      .cta-btn { font-size: 20px; }
    }
    @keyframes cta-pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(34, 163, 74, 0.5); }
      50% { box-shadow: 0 0 0 10px rgba(34, 163, 74, 0); }
    }

    .cta-sub {
      text-align: center;
      font-size: 14px;
      color: #9ca3af;
      margin-top: 8px;
    }

    .cta-block { margin-bottom: 32px; }

    .section-heading {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 16px;
    }
    @media (min-width: 640px) {
      .section-heading { font-size: 24px; }
    }

    .quote {
      border-left: 4px solid #5b6abf;
      padding-left: 16px;
      padding-top: 8px;
      padding-bottom: 8px;
      margin-bottom: 24px;
      font-style: italic;
      font-size: 16px;
      color: #4b5563;
    }
    @media (min-width: 640px) {
      .quote { font-size: 18px; }
    }
    .quote-author {
      font-style: normal;
      font-weight: 600;
      font-size: 14px;
      color: #6b7280;
      display: block;
      margin-top: 4px;
    }

    .screening-card {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 16px;
      border-radius: 8px;
      background: #f8f9fa;
      margin-bottom: 12px;
    }
    .screening-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .screening-title {
      font-weight: 700;
      color: #111827;
      margin-bottom: 4px;
      font-size: 16px;
    }
    .screening-desc {
      color: #6b7280;
      font-size: 14px;
      line-height: 1.6;
    }

    .reviews-box {
      background: #f8f9fa;
      border-radius: 8px;
      padding: 20px;
      margin-bottom: 32px;
      text-align: center;
    }
    .stars { display: flex; justify-content: center; gap: 2px; margin-bottom: 8px; }
    .star { color: #f59e0b; font-size: 20px; }
    .rating-number { font-size: 24px; font-weight: 700; color: #1a1a2e; margin-bottom: 4px; }
    .rating-count { font-size: 14px; color: #6b7280; margin-bottom: 16px; }

    .review-card {
      background: #fff;
      border-radius: 6px;
      padding: 16px;
      margin-bottom: 12px;
      text-align: left;
    }
    .review-stars { display: flex; gap: 2px; margin-bottom: 8px; }
    .review-star { color: #f59e0b; font-size: 16px; }
    .review-text { color: #374151; font-size: 14px; font-style: italic; margin-bottom: 8px; line-height: 1.6; }
    .review-author { color: #6b7280; font-size: 12px; font-weight: 600; }

    .step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #22a34a;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .step-title { font-weight: 700; color: #111827; margin-bottom: 4px; }
    .step-desc { color: #6b7280; font-size: 14px; line-height: 1.6; }

    .final-cta {
      background: #1a1a2e;
      border-radius: 8px;
      padding: 24px;
      margin-bottom: 32px;
      text-align: center;
    }
    .final-cta h2 { color: #fff; font-size: 20px; margin-bottom: 12px; }
    @media (min-width: 640px) {
      .final-cta h2 { font-size: 24px; }
    }
    .final-cta .final-sub { color: #9ca3af; font-size: 16px; margin-bottom: 20px; }
    .final-cta .final-phone { color: #9ca3af; font-size: 14px; margin-top: 12px; }
    .final-cta .final-phone a { color: #fff; font-weight: 600; text-decoration: underline; }

    .footer {
      border-top: 1px solid #f3f4f6;
      padding: 24px 16px;
      text-align: center;
    }
    .footer-inner { max-width: 640px; margin: 0 auto; }
    .footer p { font-size: 12px; color: #9ca3af; margin-bottom: 8px; }
    .footer-links { display: flex; justify-content: center; gap: 12px; margin-bottom: 8px; }
    .footer-links a { font-size: 12px; color: #9ca3af; }
    .footer-links a:hover { color: #6b7280; }
    .footer-links span { color: #d1d5db; }
    .footer-disclaimer { font-size: 10px; color: #d1d5db; line-height: 1.6; margin-top: 12px; }

    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: #fff;
      border-top: 1px solid #e5e7eb;
      padding: 12px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .sticky-bar.visible { transform: translateY(0); }
    .sticky-inner {
      max-width: 640px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .sticky-cta {
      flex: 1;
      display: block;
      text-align: center;
      font-weight: 700;
      color: #fff;
      font-size: 14px;
      padding: 12px 16px;
      border-radius: 8px;
      background: #22a34a;
    }
    .sticky-phone {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 48px;
      height: 48px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
    }
    .sticky-phone svg { width: 20px; height: 20px; color: #1a1a2e; }