/**
 * PPC Landing Page Styles
 * Matches the existing site aesthetic: area-normal sans, the-seasons serif,
 * dark plum primary (#21141a), warm taupe secondary, sharp corners, subtle shadows.
 */

/* ─── Trust Bar ─── */
.trust-bar .trust-bar-img {
	height: 18px;
}

@media (min-width: 768px) {
	.trust-bar .trust-bar-img {
		height: 20px;
	}
}

.trust-bar-stars {
	color: #c9a84c;
	font-size: 0.875rem;
	letter-spacing: 0.05em;
	margin-right: 0.4rem;
}

/* ─── Hero USPs ─── */
.hero-usps {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.25rem 0.6rem;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.75rem;
}

.hero-usps__sep {
	color: rgba(255, 255, 255, 0.25);
}

/* ─── Breadcrumbs ─── */
.ppc-breadcrumb {
  padding: 0.6rem 0;
  background: #f9f8f7;
  border-bottom: 1px solid #e8e5e0;
}

.ppc-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  font-size: 0.8rem;
  color: #8a8279;
}

.ppc-breadcrumb-list li {
  display: flex;
  align-items: center;
}

.ppc-breadcrumb-list li:not(:last-child)::after {
  content: "\203A";
  margin: 0 0.5rem;
  color: #c0bbaf;
  font-size: 1rem;
  line-height: 1;
}

.ppc-breadcrumb-list a {
  color: #8a8279;
  text-decoration: none;
}

.ppc-breadcrumb-list a:hover {
  color: #21141a;
  text-decoration: underline;
}

.ppc-breadcrumb-list li:last-child {
  color: #21141a;
  font-weight: 500;
}

/* ─── Hero ─── */
.ppc-hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 992px) {
  .ppc-hero {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: 560px;
  }
}

.ppc-hero-overlay {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.ppc-hero > .container-xl {
  position: relative;
  z-index: 2;
}

.ppc-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.75rem;
}

.ppc-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-size: 0.95rem;
}

.ppc-hero .hero-ctas .btn {
  min-width: auto;
  min-height: auto;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}

.ppc-urgency-badge {
  display: inline-block;
  font-family: "area-normal", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* Emergency / phone-only hero — taller, more prominent */
.ppc-hero--emergency {
  min-height: 560px;
}

@media (min-width: 992px) {
  .ppc-hero--emergency {
    min-height: 640px;
  }
}

.ppc-hero--emergency .ppc-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.ppc-hero--emergency .ppc-phone-hero {
  font-family: "area-normal", sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
}

/* ─── Section Typography ─── */
.ppc-landing h2 {
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--bs-primary, #21141a);
  letter-spacing: -0.02em;
}

.ppc-landing .ppc-problem-section p,
.ppc-landing .ppc-solution-section p {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ─── Problem Section ─── */
.ppc-problem-section {
  background-color: #f5f8f5;
}

.ppc-problem-card {
  background: white;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  border-left: 3px solid #c0bbaf;
  height: 100%;
}

.ppc-problem-card h3 {
  font-family: "area-normal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bs-primary, #21141a);
  margin-bottom: 0.4rem;
}

.ppc-problem-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--bs-secondary, #a9a391);
}

/* ─── Solution Steps ─── */
.ppc-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ppc-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--bs-primary, #21141a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "area-normal", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.ppc-step-content h3 {
  font-family: "area-normal", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bs-primary, #21141a);
  margin-bottom: 0.25rem;
}

.ppc-step-content p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 0;
  color: var(--bs-body-color, #21141a);
  opacity: 0.8;
}

/* ─── Mid-Page CTA ─── */
.ppc-mid-cta {
  background: var(--bs-primary, #21141a);
  padding: 2.5rem 0;
}

.ppc-mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 780px;
  margin: 0 auto;
}

.ppc-mid-cta-text {
  flex: 1;
  min-width: 0;
}

.ppc-mid-cta-heading {
  font-family: "the-seasons", serif;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  color: white;
  margin-bottom: 0;
  line-height: 1.3;
}

.ppc-mid-cta-sub {
  font-family: "area-normal", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  margin-top: 0.35rem;
}

.ppc-mid-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ppc-mid-cta-actions .btn {
  min-width: auto;
  min-height: auto;
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0;
}

@media (max-width: 767.98px) {
  .ppc-mid-cta {
    padding: 2rem 0;
  }

  .ppc-mid-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .ppc-mid-cta-actions {
    justify-content: center;
  }
}

/* ─── Stats Strip ─── */
.ppc-stats-bar {
  background: #f5f8f5;
  padding: 1.25rem 0;
}

.ppc-stats-track {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.ppc-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0 1.25rem;
  white-space: nowrap;
}

.ppc-stat + .ppc-stat {
  border-left: 1px solid #c0bbaf;
}

.ppc-stat-number {
  font-family: "the-seasons", serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  color: var(--bs-primary, #21141a);
}

.ppc-stat-label {
  font-family: "area-normal", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a9a391;
}

/* ─── Testimonials ─── */
.ppc-testimonials-section {
  background-color: #f5f8f5;
}

.ppc-testimonial-carousel {
  position: relative;
  padding: 2rem 0;
}

.ppc-testimonial-slide {
  display: none;
}

.ppc-testimonial-slide.is-active {
  display: block;
  animation: ppcTestimonialFade 0.4s ease;
}

@keyframes ppcTestimonialFade {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.ppc-testimonial-quote-mark {
  color: #c0bbaf;
  opacity: 0.3;
  margin-bottom: 1.5rem;
}

.ppc-testimonial-quote-mark svg {
  width: 48px;
  height: 48px;
}

@media (min-width: 768px) {
  .ppc-testimonial-quote-mark svg {
    width: 56px;
    height: 56px;
  }
}

.ppc-testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.ppc-testimonial-stars svg {
  width: 14px;
  height: 14px;
  color: #d4a853;
}

@media (min-width: 768px) {
  .ppc-testimonial-stars svg {
    width: 16px;
    height: 16px;
  }
}

.ppc-testimonial-quote p {
  font-family: "the-seasons", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.7;
  color: var(--bs-primary, #21141a);
  margin-bottom: 0;
}

.ppc-testimonial-author {
  margin-top: 1.5rem;
}

.ppc-testimonial-author strong {
  font-family: "area-normal", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bs-primary, #21141a);
  display: block;
}

.ppc-testimonial-location {
  display: block;
  font-family: "area-normal", sans-serif;
  font-size: 0.72rem;
  color: #a9a391;
  margin-top: 0.15rem;
}

.ppc-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.ppc-testimonial-dot {
  width: 8px;
  height: 8px;
  border: none;
  padding: 0;
  background: #c0bbaf;
  opacity: 0.35;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ppc-testimonial-dot.is-active {
  opacity: 1;
  transform: scale(1.25);
  background: var(--bs-primary, #21141a);
}

/* ─── Hub Links ─── */
.ppc-hub-section {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid #e8e5e0;
}

.ppc-hub-title {
  font-family: "area-normal", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a8279;
  margin-bottom: 0.75rem;
}

.ppc-hub-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ppc-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  background: #f5f3f0;
  text-decoration: none;
  color: var(--bs-primary, #21141a);
  border: 1px solid #e8e5e0;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.ppc-hub-link:hover {
  background: #ebe8e4;
  border-color: #c0bbaf;
  color: var(--bs-primary, #21141a);
}

.ppc-hub-link-title {
  font-family: "area-normal", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}

.ppc-hub-link .hub-arrow {
  flex-shrink: 0;
  opacity: 0.3;
  color: #8a8279;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.ppc-hub-link:hover .hub-arrow {
  opacity: 0.7;
  transform: translateX(2px);
}

/* ─── FAQ Section ─── */
.ppc-faq-section {
  background-color: #f5f8f5;
}

.ppc-faq-section .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
}

.ppc-faq-section .accordion-item:last-child {
  border-bottom: none;
}

.ppc-faq-section .accordion-button {
  font-family: "area-normal", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--bs-primary, #21141a);
}

.ppc-faq-section .accordion-button::after {
  width: 1rem;
  height: 1rem;
  background-size: 1rem;
}

.ppc-faq-section .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--bs-primary, #21141a);
  box-shadow: none;
}

.ppc-faq-section .accordion-button:focus {
  box-shadow: none;
}

.ppc-faq-section .accordion-body {
  font-size: 0.9rem;
  line-height: 1.8;
  padding: 0 0 1.25rem;
  color: var(--bs-body-color, #21141a);
}

/* ─── CTA Form Section ─── */
.ppc-cta-form-section {
  background-color: #21141a;
}

.ppc-cta-form-section .cta-form-heading {
  font-family: "area-normal", sans-serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: white;
}

.ppc-cta-form-section .cta-form-subheading {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.ppc-cta-form-section .cta-form-card {
  background-color: white;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .ppc-cta-form-section .cta-form-card {
    padding: 2rem;
  }
}

.ppc-cta-form-section .form-label {
  font-weight: 600;
  color: var(--bs-primary, #21141a);
  margin-bottom: 0.35rem;
}

.ppc-cta-form-section .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  background: var(--bs-light, #f5f8f5);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ppc-cta-form-section .form-control:focus {
  border-color: var(--bs-primary, #21141a);
  background: white;
  box-shadow: 0 0 0 3px rgba(33, 20, 26, 0.08);
}

.ppc-cta-form-section .btn-primary {
  min-width: auto;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 0;
}

.ppc-cta-form-section .form-trust-signals span {
  font-weight: 500;
}

/* ─── Emergency CTA Section ─── */
.ppc-emergency-cta h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.ppc-emergency-cta .btn-primary {
  min-width: auto;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
}

/* ─── Enquiry Modal ─── */
.ppc-landing ~ .enquiry-modal .modal-content {
  border: none;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.ppc-landing ~ .enquiry-modal .modal-header {
  padding: 1.5rem 1.5rem 0;
}

.ppc-landing ~ .enquiry-modal .modal-header .modal-title {
  font-family: "area-normal", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--bs-primary, #21141a);
}

.ppc-landing ~ .enquiry-modal .modal-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.ppc-landing ~ .enquiry-modal .form-label {
  font-weight: 600;
  color: var(--bs-primary, #21141a);
  margin-bottom: 0.35rem;
}

.ppc-landing ~ .enquiry-modal .form-control {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
  background: var(--bs-light, #f5f8f5);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.ppc-landing ~ .enquiry-modal .form-control:focus {
  border-color: var(--bs-primary, #21141a);
  background: white;
  box-shadow: 0 0 0 3px rgba(33, 20, 26, 0.08);
}

.ppc-landing ~ .enquiry-modal .btn-primary {
  min-width: auto;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 0;
}

.ppc-landing ~ .enquiry-modal .form-trust-signals span {
  font-weight: 500;
}

/* ─── Sticky CTA Bar ─── */
.ppc-sticky-cta-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background-color: var(--bs-primary, #21141a);
  padding: 0.625rem 0;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.ppc-sticky-cta-bar.is-visible {
  transform: translateY(0);
}

.ppc-sticky-cta-bar a:not(.btn) {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.ppc-sticky-cta-bar a:not(.btn):hover {
  opacity: 0.85;
}

.ppc-sticky-cta-bar .btn {
  min-width: auto;
  min-height: auto;
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* ─── Bottom CTA Bar ─── */
.ppc-bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1039;
  background-color: var(--bs-primary, #21141a);
  padding: 0.625rem 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.ppc-bottom-cta-bar.is-visible {
  transform: translateY(0);
}

.ppc-bottom-cta-bar .bottom-cta-text {
  color: white;
  font-family: "area-normal", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.3;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .ppc-bottom-cta-bar .bottom-cta-text {
    font-size: 1rem;
  }
}

.ppc-bottom-cta-bar .btn {
  min-width: auto;
  min-height: auto;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .ppc-bottom-cta-bar .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
  }
}

/* ─── Responsive ─── */
@media (max-width: 767.98px) {
  .ppc-stats-track {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .ppc-stat {
    justify-content: center;
    padding: 0.5rem 0.75rem;
  }

  .ppc-stat + .ppc-stat {
    border-left: none;
  }

  .ppc-stat:nth-child(even) {
    border-left: 1px solid #c0bbaf;
  }
}

@media (max-width: 575.98px) {
  .ppc-step {
    gap: 1rem;
  }

  .ppc-step-number {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}
/*# sourceMappingURL=ppc-landing.css.map */