/* ==========================================================================
   PPC Landing Page — Charleston Locksmith Pro
   Complete mobile-first CRO-optimized stylesheet
   CRITICAL: This loads AFTER main.css — use high specificity to override
   Grid: col-sm=768px, col-md=1280px — use col-sm for tablet/desktop layouts
   ========================================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  --ppc-dark: #1a1a2e;
  --ppc-dark-mid: #252540;
  --ppc-charcoal: #313131;
  --ppc-accent: #fd5f54;
  --ppc-accent-dark: #e84e44;
  --ppc-green: #28a745;
  --ppc-green-dark: #218838;
  --ppc-gold: #f5a623;
  --ppc-white: #ffffff;
  --ppc-off-white: #f7f8fa;
  --ppc-light-gray: #f0f1f3;
  --ppc-border: #e2e4e8;
  --ppc-text: #2d2d2d;
  --ppc-text-mid: #555555;
  --ppc-text-light: #777777;
  --ppc-radius: 8px;
  --ppc-radius-lg: 12px;
  --ppc-shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --ppc-shadow: 0 4px 16px rgba(0,0,0,0.1);
  --ppc-shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --ppc-shadow-form: 0 12px 40px rgba(0,0,0,0.18);
}

/* ---------- SMOOTH SCROLL ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* ---------- PPC PAGE WRAPPER ---------- */
/* Override main.css body defaults for PPC sections */
.ppc-hero,
.ppc-section,
.ppc-sticky-cta,
.ppc-trust-row {
  font-family: 'Axiforma-Regular', -apple-system, 'Segoe UI', sans-serif;
  color: var(--ppc-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Override main.css "section { overflow: hidden }" which clips elements */
section.ppc-hero,
section.ppc-section {
  overflow: visible !important;
}

/* ---- MOBILE HEADER FIXES ---- */
/* Reduce credit card image in header by 50% */
.ppc-header .menu img[alt="We Accept Credit Cards"] {
  width: 135px !important;
  max-width: 135px !important;
}

/* Enlarge phone number in header */
.ppc-header .phone {
  font-size: 1.6rem !important;
}

.ppc-header .phone b span {
  font-size: inherit;
}

/* Fix logo distortion on mobile */
@media (max-width: 767px) {
  .ppc-header .logo {
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .ppc-header .menu img[alt="We Accept Credit Cards"] {
    width: 100px !important;
    max-width: 100px !important;
  }
  .ppc-header .phone {
    font-size: 1.3rem !important;
  }
  .ppc-header .icon-review {
    height: 28px;
    width: auto;
  }
}

/* ==========================================================================
   1. HERO SECTION
   ========================================================================== */
section.ppc-hero {
  background-color: var(--ppc-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 9rem 0 3rem;
  position: relative;
  color: var(--ppc-white);
}

/* Dark overlay for text readability over hero background image */
section.ppc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,32,44,0.92) 0%, rgba(26,32,44,0.85) 100%);
  z-index: 0;
  pointer-events: none;
}

.ppc-hero .container {
  position: relative;
  z-index: 1;
}

/* Hero H1 */
.ppc-hero h1.ppc-hero-h1,
h1.ppc-hero-h1 {
  font-family: 'Axiforma-Light', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ppc-white);
  margin: 0 0 0.75rem;
}

/* Subheadline */
.ppc-hero p.ppc-hero-subheadline,
p.ppc-hero-subheadline {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 1.25rem;
  line-height: 1.55;
}

/* Service Checklist */
ul.ppc-hero-services {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

ul.ppc-hero-services li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}

ul.ppc-hero-services li i.fa-check-circle {
  color: var(--ppc-green);
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA Button Group */
.ppc-hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

/* ---------- UNIVERSAL BUTTONS ---------- */
a.ppc-btn,
button.ppc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--ppc-radius);
  font-family: 'Axiforma-Regular', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
}

a.ppc-btn-call,
.ppc-btn.ppc-btn-call {
  background: var(--ppc-green);
  color: var(--ppc-white);
}

a.ppc-btn-call:hover,
.ppc-btn.ppc-btn-call:hover {
  background: var(--ppc-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.35);
  color: var(--ppc-white);
}

a.ppc-btn-form,
.ppc-btn.ppc-btn-form {
  background: var(--ppc-accent);
  color: var(--ppc-white);
}

a.ppc-btn-form:hover,
.ppc-btn.ppc-btn-form:hover {
  background: var(--ppc-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(253,95,84,0.35);
  color: var(--ppc-white);
}

/* Submit button — extra prominent */
button.ppc-btn-submit,
.ppc-btn.ppc-btn-submit {
  background: var(--ppc-green);
  color: var(--ppc-white);
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  border: none;
  margin-top: 0.5rem;
}

button.ppc-btn-submit:hover,
.ppc-btn.ppc-btn-submit:hover {
  background: var(--ppc-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(40,167,69,0.4);
}

button.ppc-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ---------- HERO BADGES ---------- */
.ppc-hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.ppc-hero-badges img {
  height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,0.95);
  padding: 4px 8px;
}

img.ppc-hero-google-badge { height: 44px; max-width: 150px; }
img.ppc-hero-bbb-badge { height: 52px; max-width: 130px; }
img.ppc-hero-aloa-badge { height: 52px; max-width: 70px; }

/* ---------- HERO TRUST ROW ---------- */
.ppc-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ppc-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.ppc-trust-item i.ppc-trust-icon {
  font-size: 0.75rem;
  color: var(--ppc-accent);
}

/* Hero address */
.ppc-hero-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ppc-hero-address i { color: var(--ppc-accent); }

/* ---------- HERO FORM WRAPPER ---------- */
.ppc-hero-form-wrapper {
  margin-top: 1.5rem;
}

/* Phone block under form */
.ppc-hero-phone-block {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--ppc-radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.ppc-hero-phone-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.25rem;
}

a.ppc-hero-phone-number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ppc-green);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

a.ppc-hero-phone-number:hover {
  color: #34d058;
}

/* Review snippet under form */
.ppc-hero-review-snippet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.ppc-stars i.fa-star {
  color: var(--ppc-gold);
  font-size: 0.85rem;
}

.ppc-review-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}

/* ---------- FORM CONTAINER ---------- */
.ppc-form-container {
  background: var(--ppc-white);
  border-radius: var(--ppc-radius-lg);
  box-shadow: var(--ppc-shadow-form);
  border-top: 4px solid var(--ppc-accent);
  overflow: hidden;
}

.ppc-form-header {
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--ppc-border);
}

h3.ppc-form-title,
.ppc-form-title {
  font-family: 'Axiforma-Light', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ppc-charcoal);
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ppc-form-title i { color: var(--ppc-green); }

.ppc-form-subtitle {
  font-size: 0.85rem;
  color: var(--ppc-text-mid);
  margin: 0;
}

a.ppc-form-phone {
  color: var(--ppc-accent);
  font-weight: 700;
  text-decoration: none;
}

a.ppc-form-phone:hover { text-decoration: underline; }

/* Form fields */
#ppc-lead-form-el {
  padding: 1.25rem;
}

.ppc-form-group {
  margin-bottom: 0.85rem;
}

.ppc-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ppc-text);
  margin-bottom: 0.3rem;
}

.ppc-form-input,
.ppc-form-select,
.ppc-form-textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: 'Axiforma-Regular', sans-serif;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--ppc-text);
  background: var(--ppc-white);
  border: 1.5px solid var(--ppc-border);
  border-radius: var(--ppc-radius);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.ppc-form-input:focus,
.ppc-form-select:focus,
.ppc-form-textarea:focus {
  outline: none;
  border-color: var(--ppc-accent);
  box-shadow: 0 0 0 3px rgba(253,95,84,0.12);
}

.ppc-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.ppc-form-textarea {
  resize: vertical;
  min-height: 70px;
}

/* Form messages */
.ppc-form-message {
  display: none;
  padding: 0.75rem 1.25rem;
  margin: 0 1.25rem;
  border-radius: var(--ppc-radius);
  font-size: 0.88rem;
  text-align: center;
}

.ppc-form-message.ppc-form-success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.ppc-form-message.ppc-form-error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.ppc-form-disclaimer {
  font-size: 0.78rem;
  color: var(--ppc-text-light);
  text-align: center;
  margin: 0.75rem 0 0;
}

/* ==========================================================================
   2. CONTENT SECTIONS (shared)
   ========================================================================== */
section.ppc-section {
  padding: 3rem 0;
}

/* Alternating backgrounds */
section.ppc-problem-section { background: var(--ppc-off-white); }
section.ppc-services-section { background: var(--ppc-white); }
section.ppc-trust-section { background: var(--ppc-off-white); }
section.ppc-process-section { background: var(--ppc-white); }
section.ppc-pricing-section { background: var(--ppc-off-white); }
section.ppc-reviews-section { background: var(--ppc-white); }
section.ppc-faq-section { background: var(--ppc-off-white); }
section.ppc-area-section { background: var(--ppc-white); }
section.ppc-final-cta-section {
  background: linear-gradient(135deg, var(--ppc-dark) 0%, var(--ppc-charcoal) 100%);
  color: var(--ppc-white);
}

/* Section headings */
h2.ppc-section-heading,
.ppc-section-heading {
  font-family: 'Axiforma-Light', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ppc-charcoal);
  text-align: center;
  margin: 0 0 2rem;
  position: relative;
  padding-bottom: 0.75rem;
}

/* Decorative underline */
h2.ppc-section-heading::after,
.ppc-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--ppc-accent);
  border-radius: 2px;
}

/* In dark sections */
section.ppc-final-cta-section h2.ppc-section-heading,
section.ppc-final-cta-section .ppc-section-heading {
  color: var(--ppc-white);
}

/* Section CTA band */
.ppc-section-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ppc-border);
}

/* ==========================================================================
   3. PROBLEM SECTION
   ========================================================================== */
.ppc-problem-list {
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.ppc-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ppc-problem-item:last-child { border-bottom: none; }

.ppc-problem-icon {
  flex-shrink: 0;
  color: var(--ppc-green);
  font-size: 1rem;
  margin-top: 0.15rem;
}

.ppc-problem-text {
  font-size: 0.95rem;
  color: var(--ppc-text);
  line-height: 1.5;
}

/* Problem gallery images */
.ppc-problem-gallery {
  margin-top: 1.5rem;
}

.ppc-problem-gallery img.ppc-problem-img,
img.ppc-problem-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--ppc-radius);
  border: 1px solid var(--ppc-border);
  display: block;
}

/* Image figure + caption styling */
.ppc-img-figure {
  margin: 0 0 1rem;
  padding: 0;
}

.ppc-img-figure img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--ppc-radius) var(--ppc-radius) 0 0;
  border: 1px solid var(--ppc-border);
  border-bottom: none;
  display: block;
}

.ppc-img-caption {
  display: block;
  background: var(--ppc-charcoal);
  color: var(--ppc-white);
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0 0 var(--ppc-radius) var(--ppc-radius);
  text-align: center;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   4. SERVICES GRID
   ========================================================================== */
.ppc-service-card {
  background: var(--ppc-white);
  border: 1px solid var(--ppc-border);
  border-left: 4px solid var(--ppc-accent);
  border-radius: var(--ppc-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.ppc-service-card:hover {
  box-shadow: var(--ppc-shadow);
  transform: translateY(-2px);
}

h3.ppc-service-title,
.ppc-service-title {
  font-family: 'Axiforma-Regular', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ppc-charcoal);
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ppc-service-title i { color: var(--ppc-accent); font-size: 0.9rem; }

.ppc-service-desc {
  font-size: 0.88rem;
  color: var(--ppc-text-mid);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   5. TRUST CARDS — "Why Charleston Trusts Us"
   ========================================================================== */
.ppc-trust-card {
  background: var(--ppc-white);
  border: 1px solid var(--ppc-border);
  border-radius: var(--ppc-radius);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.25s;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ppc-trust-card:hover {
  box-shadow: var(--ppc-shadow);
}

.ppc-trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(253,95,84,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.ppc-trust-card-icon i {
  font-size: 1.25rem;
  color: var(--ppc-accent);
}

h3.ppc-trust-card-title,
.ppc-trust-card-title {
  font-family: 'Axiforma-Regular', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ppc-charcoal);
  margin: 0 0 0.3rem;
  line-height: 1.35;
}

.ppc-trust-card-desc {
  font-size: 0.82rem;
  color: var(--ppc-text-mid);
  margin: 0;
  line-height: 1.45;
}

/* Trust gallery images */
.ppc-trust-gallery {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ppc-border);
}

.ppc-trust-gallery img.ppc-trust-img,
img.ppc-trust-img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--ppc-radius) var(--ppc-radius) 0 0;
  border: 1px solid var(--ppc-border);
  border-bottom: none;
  display: block;
}

.ppc-trust-gallery .ppc-img-figure {
  margin-bottom: 1rem;
}

/* ==========================================================================
   6. PROCESS STEPS
   ========================================================================== */
.ppc-process-steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ppc-process-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  position: relative;
}

.ppc-process-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ppc-accent) 0%, var(--ppc-accent-dark) 100%);
  color: var(--ppc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* Connector line between steps */
.ppc-process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 56px;
  width: 2px;
  height: calc(100% - 12px);
  background: var(--ppc-border);
  z-index: 1;
}

.ppc-process-content {
  flex: 1;
  padding-top: 0.25rem;
}

h3.ppc-process-title,
.ppc-process-title {
  font-family: 'Axiforma-Regular', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ppc-charcoal);
  margin: 0 0 0.25rem;
}

.ppc-process-desc {
  font-size: 0.9rem;
  color: var(--ppc-text-mid);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   7. PRICING SECTION
   ========================================================================== */
.ppc-pricing-note {
  max-width: 800px;
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--ppc-white);
  border-left: 4px solid var(--ppc-accent);
  border-radius: var(--ppc-radius);
  font-size: 0.92rem;
  color: var(--ppc-text);
  line-height: 1.55;
  box-shadow: var(--ppc-shadow-sm);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.ppc-pricing-note i {
  color: var(--ppc-accent);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.ppc-pricing-point {
  background: var(--ppc-white);
  border: 1px solid var(--ppc-border);
  border-radius: var(--ppc-radius);
  padding: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
  transition: box-shadow 0.25s;
}

.ppc-pricing-point:hover {
  box-shadow: var(--ppc-shadow);
}

.ppc-pricing-point i {
  font-size: 1.5rem;
  color: var(--ppc-green);
  margin-bottom: 0.5rem;
  display: block;
}

.ppc-pricing-point h3 {
  font-family: 'Axiforma-Regular', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  color: var(--ppc-charcoal);
  margin: 0 0 0.35rem;
}

.ppc-pricing-point p {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ppc-text-mid);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   8. REVIEWS SECTION
   ========================================================================== */
.ppc-reviews-overall {
  text-align: center;
  margin-bottom: 1.25rem;
}

.ppc-reviews-stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-bottom: 0.35rem;
}

.ppc-reviews-stars i.fa-star {
  color: var(--ppc-gold);
  font-size: 1.25rem;
}

.ppc-reviews-rating {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ppc-charcoal);
}

.ppc-reviews-count {
  display: block;
  font-size: 0.88rem;
  color: var(--ppc-text-mid);
}

/* Review platform badges */
.ppc-reviews-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.ppc-reviews-badges img.ppc-reviews-badge,
img.ppc-reviews-badge {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Review cards */
.ppc-review-card {
  background: var(--ppc-white);
  border: 1px solid var(--ppc-border);
  border-radius: var(--ppc-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ppc-review-card:hover {
  box-shadow: var(--ppc-shadow);
}

.ppc-review-stars {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.75rem;
}

.ppc-review-stars i.fa-star {
  color: var(--ppc-gold);
  font-size: 0.9rem;
}

blockquote.ppc-review-text,
.ppc-review-text {
  font-size: 0.9rem;
  font-style: normal;
  color: var(--ppc-text);
  line-height: 1.55;
  margin: 0 0 0.75rem;
  padding: 0;
  border: none;
  flex: 1;
  position: relative;
}

.ppc-review-quote-icon {
  color: rgba(253,95,84,0.15);
  font-size: 1.5rem;
  position: absolute;
  top: -0.25rem;
  left: -0.1rem;
}

.ppc-review-author {
  font-size: 0.85rem;
  border-top: 1px solid var(--ppc-border);
  padding-top: 0.5rem;
}

.ppc-review-author strong {
  color: var(--ppc-charcoal);
}

.ppc-review-source {
  font-size: 0.8rem;
  color: var(--ppc-text-light);
  text-transform: capitalize;
}

/* ==========================================================================
   9. FAQ ACCORDION
   ========================================================================== */
.ppc-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.ppc-faq-item {
  background: var(--ppc-white);
  border: 1px solid var(--ppc-border);
  border-radius: var(--ppc-radius);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

/* Hidden checkbox */
.ppc-faq-toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Question label */
label.ppc-faq-question,
.ppc-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ppc-charcoal);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1.4;
  margin: 0;
  user-select: none;
}

label.ppc-faq-question:hover {
  background: var(--ppc-off-white);
  color: var(--ppc-accent);
}

.ppc-faq-icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--ppc-accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

/* Answer panel — hidden by default */
.ppc-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.ppc-faq-answer p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  font-size: 0.9rem;
  color: var(--ppc-text-mid);
  line-height: 1.6;
  border-top: 1px solid var(--ppc-border);
  padding-top: 0.75rem;
}

/* When toggle is checked — expand */
.ppc-faq-toggle:checked ~ .ppc-faq-answer {
  max-height: 600px;
}

.ppc-faq-toggle:checked ~ label.ppc-faq-question {
  background: var(--ppc-off-white);
  color: var(--ppc-accent);
}

.ppc-faq-toggle:checked ~ label .ppc-faq-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   10. SERVICE AREA GRID
   ========================================================================== */
a.ppc-area-link,
.ppc-area-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: var(--ppc-off-white);
  border: 1px solid var(--ppc-border);
  border-radius: var(--ppc-radius);
  color: var(--ppc-text);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

a.ppc-area-link:hover,
.ppc-area-link:hover {
  background: var(--ppc-accent);
  border-color: var(--ppc-accent);
  color: var(--ppc-white);
}

.ppc-area-link i {
  font-size: 0.75rem;
  color: var(--ppc-accent);
  transition: color 0.2s;
}

.ppc-area-link:hover i { color: var(--ppc-white); }

/* ==========================================================================
   11. FINAL CTA
   ========================================================================== */
section.ppc-final-cta-section,
section.ppc-final-cta {
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--ppc-dark) 0%, var(--ppc-charcoal) 100%) !important;
  color: var(--ppc-white) !important;
}

.ppc-final-cta-section p,
.ppc-final-cta p,
.ppc-final-cta-subtext {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

h2.ppc-final-cta-heading,
.ppc-final-cta-heading {
  font-family: 'Axiforma-Light', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ppc-white) !important;
  margin: 0 0 0.5rem;
}

.ppc-final-cta-phone {
  margin: 1rem 0;
}

a.ppc-final-cta-phone-link,
.ppc-final-cta-phone-link {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ppc-green) !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

a.ppc-final-cta-phone-link:hover {
  color: #34d058 !important;
}

.ppc-final-cta-info {
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem;
}

.ppc-final-cta-address,
.ppc-final-cta-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.8);
}

.ppc-final-cta-address i,
.ppc-final-cta-hours i {
  color: var(--ppc-accent);
  flex-shrink: 0;
}

.ppc-final-cta-address span,
.ppc-final-cta-hours span {
  color: rgba(255,255,255,0.85);
}

.ppc-final-cta-badge {
  margin: 1rem 0 1.5rem;
}

img.ppc-final-cta-google-badge {
  height: 40px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  background: rgba(255,255,255,0.95);
  padding: 4px 8px;
  border-radius: 6px;
}

.ppc-final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Large button variant for final CTA */
.ppc-btn.ppc-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ==========================================================================
   11.5 GOOGLE MAP EMBED
   ========================================================================== */
section.ppc-map-section {
  background: var(--ppc-off-white);
  padding: 3rem 0 0;
}

.ppc-map-address {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ppc-text-mid);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.ppc-map-address i {
  color: var(--ppc-accent);
}

.ppc-map-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.ppc-map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

/* ==========================================================================
   12. STICKY CTA (mobile only)
   ========================================================================== */
.ppc-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .ppc-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--ppc-white);
    border-top: 1px solid var(--ppc-border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.12);
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;
  }

  a.ppc-sticky-btn,
  .ppc-sticky-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 0.5rem;
    border: none;
    border-radius: var(--ppc-radius);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
  }

  .ppc-sticky-btn-call,
  a.ppc-sticky-btn-call {
    background: var(--ppc-green);
    color: var(--ppc-white);
  }

  .ppc-sticky-btn-form,
  a.ppc-sticky-btn-form {
    background: var(--ppc-accent);
    color: var(--ppc-white);
  }

  /* Body padding to avoid content hiding behind sticky bar */
  body { padding-bottom: 70px; }
}

/* ==========================================================================
   13. RESPONSIVE — Desktop adjustments
   ========================================================================== */

/* Tablet+ (768px — matches col-sm breakpoint) */
@media (min-width: 768px) {
  h1.ppc-hero-h1,
  .ppc-hero h1.ppc-hero-h1 {
    font-size: 2.25rem;
  }

  h2.ppc-section-heading,
  .ppc-section-heading {
    font-size: 1.75rem;
  }

  section.ppc-section {
    padding: 3.5rem 0;
  }

  /* Hero two-column layout */
  .ppc-hero .row {
    align-items: flex-start;
  }

  .ppc-hero-form-wrapper {
    margin-top: 0;
  }

  /* Trust gallery images taller on desktop */
  .ppc-trust-gallery img.ppc-trust-img,
  img.ppc-trust-img {
    height: 200px;
  }

  /* Problem gallery images */
  .ppc-problem-gallery img.ppc-problem-img,
  img.ppc-problem-img {
    height: 260px;
  }
}

/* Large desktop (1280px — matches col-md breakpoint) */
@media (min-width: 1280px) {
  h1.ppc-hero-h1,
  .ppc-hero h1.ppc-hero-h1 {
    font-size: 2.5rem;
  }

  section.ppc-hero {
    padding: 9rem 0 4rem;
  }

  section.ppc-section {
    padding: 4rem 0;
  }
}

/* ==========================================================================
   14. PRINT STYLES
   ========================================================================== */
@media print {
  .ppc-sticky-cta,
  .ppc-hero-cta-group,
  .ppc-section-cta,
  .ppc-hero-badges { display: none !important; }

  section.ppc-hero {
    background: #333 !important;
    color: #000 !important;
    -webkit-print-color-adjust: exact;
  }

  .ppc-faq-answer { max-height: none !important; }

  a.ppc-hero-phone-number::after {
    content: ' (' attr(href) ')';
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   15. ACCESSIBILITY
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   16. ACCESSIBILITY FOCUS STYLES
   ========================================================================== */
a.ppc-btn:focus-visible, button.ppc-btn:focus-visible,
a.ppc-area-link:focus-visible,
label.ppc-faq-question:focus-visible,
a.ppc-other-service-link:focus-visible {
  outline: 2px solid var(--ppc-accent);
  outline-offset: 2px;
}

/* ==========================================================================
   17. CLS PREVENTION FOR GALLERY IMAGES
   ========================================================================== */
.ppc-img-figure img,
img.ppc-problem-img,
img.ppc-trust-img {
  aspect-ratio: 16 / 9;
}

/* ==========================================================================
   18. PROBLEM BULLET ICON (amber warning)
   ========================================================================== */
.ppc-problem-icon {
  color: #e67e22;
}

/* ==========================================================================
   19. OTHER SERVICES SECTION
   ========================================================================== */
a.ppc-other-service-link,
.ppc-other-service-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--ppc-white);
  border: 1px solid var(--ppc-border);
  border-left: 4px solid var(--ppc-accent);
  border-radius: var(--ppc-radius);
  color: var(--ppc-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

a.ppc-other-service-link:hover {
  background: var(--ppc-accent);
  border-color: var(--ppc-accent);
  color: var(--ppc-white);
  transform: translateX(4px);
}

a.ppc-other-service-link i {
  font-size: 0.7rem;
  color: var(--ppc-accent);
  transition: color 0.2s;
}

a.ppc-other-service-link:hover i {
  color: var(--ppc-white);
}

/* ==========================================================================
   20. REVIEW SLIDER / CAROUSEL
   ========================================================================== */
.ppc-reviews-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.ppc-reviews-slider {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.ppc-reviews-slider-card {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.ppc-review-quote-icon {
  color: var(--ppc-accent);
  font-size: 1.1rem;
  margin-right: 0.4rem;
  opacity: 0.6;
}

/* Slider Arrows */
.ppc-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--ppc-border);
  background: var(--ppc-white);
  color: var(--ppc-text);
  font-size: 0.85rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: var(--ppc-shadow-sm);
}

.ppc-slider-arrow:hover {
  background: var(--ppc-accent);
  color: var(--ppc-white);
  border-color: var(--ppc-accent);
}

.ppc-slider-prev { left: 0; }
.ppc-slider-next { right: 0; }

/* Slider Dots */
.ppc-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 1.25rem;
}

.ppc-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--ppc-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.ppc-slider-dot.active {
  background: var(--ppc-accent);
  transform: scale(1.3);
}

.ppc-slider-dot:hover {
  background: var(--ppc-accent-dark);
}

/* Responsive card sizing */
@media (min-width: 768px) {
  .ppc-reviews-slider-card {
    flex: 0 0 50%;
  }
  .ppc-slider-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1280px) {
  .ppc-reviews-slider-card {
    flex: 0 0 33.333%;
  }
  .ppc-reviews-slider-wrapper {
    padding: 0 2.5rem;
  }
}

/* ==========================================================================
   21. TEAM & WORK GALLERY
   ========================================================================== */
.ppc-team-gallery-section {
  background: var(--ppc-light);
}

.ppc-section-subheading {
  text-align: center;
  color: var(--ppc-text-light);
  font-size: 1rem;
  margin-top: -0.75rem;
  margin-bottom: 2rem;
}

.ppc-team-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.ppc-team-gallery-item {
  margin: 0;
  border-radius: var(--ppc-radius);
  overflow: hidden;
  box-shadow: var(--ppc-shadow-sm);
  background: var(--ppc-white);
  transition: box-shadow 0.3s, transform 0.3s;
}

.ppc-team-gallery-item:hover {
  box-shadow: var(--ppc-shadow-md);
  transform: translateY(-3px);
}

.ppc-team-gallery-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.ppc-team-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ppc-team-gallery-item:hover .ppc-team-gallery-img {
  transform: scale(1.05);
}

.ppc-team-gallery-caption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--ppc-text);
  line-height: 1.4;
  background: var(--ppc-white);
  border-top: 2px solid var(--ppc-accent);
}

.ppc-team-gallery-caption i {
  color: var(--ppc-accent);
  margin-right: 0.4rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .ppc-team-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .ppc-team-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

