/*
Theme Name: Premier Frost
Description: Custom theme for Premier Frost Heating and Air Conditioning
Version: 1.0.0
Author: Developer
*/

/* === VARIABLES === */
:root {
  --color-primary:      #1B3A6B;
  --color-primary-dark: #122855;
  --color-accent:       #00AEEF;
  --color-accent-dark:  #0090C5;
  --color-text:         #1A1A1A;
  --color-text-muted:   #6B7280;
  --color-bg:           #FFFFFF;
  --color-bg-alt:       #F4F7FA;
  --color-footer-bg:    #111827;
  --color-white:        #FFFFFF;
  --color-border:       #E5E7EB;

  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    6px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.13);

  --nav-height:    80px;
  --nav-height-sm: 60px;
  --container:     1200px;
  --container-pad: 24px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; }
h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

p { max-width: 68ch; }

/* === UTILITIES === */
.pf-container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.pf-section {
  padding: 80px 0;
}

.pf-section--alt {
  background: var(--color-bg-alt);
}

.pf-section__header {
  margin-bottom: 48px;
}

.pf-section__header h2 {
  margin-bottom: 12px;
}

.pf-section__header p {
  color: var(--color-text-muted);
  font-size: 17px;
}

/* === BUTTONS === */
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
  min-height: 50px;
  text-decoration: none;
}

.pf-btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.pf-btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-1px);
}

.pf-btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

.pf-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
}

.pf-btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.pf-btn--dark:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.pf-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* === NAVBAR === */
.pf-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--color-primary);
  transition: height 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.pf-navbar--scrolled {
  height: var(--nav-height-sm);
  background: rgba(27, 58, 107, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}

.pf-navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.pf-navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.pf-navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
}

.pf-navbar__logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-navbar__logo img {
  height: 44px;
  width: auto;
  transition: height 0.3s ease;
}

.pf-navbar--scrolled .pf-navbar__logo img {
  height: 34px;
}

.pf-navbar__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.pf-navbar__nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.pf-navbar__nav a:hover,
.pf-navbar__nav a.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
}

.pf-navbar__right {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.pf-navbar__phone {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.pf-navbar__phone:hover { color: var(--color-accent); }

.pf-navbar__phone svg { width: 15px; height: 15px; }

.pf-navbar__cta {
  font-size: 13px;
  padding: 10px 18px;
  min-height: 38px;
}

.pf-navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
}

.pf-navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.pf-navbar__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pf-navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.pf-navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.pf-mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-primary-dark);
  z-index: 999;
  padding: 20px var(--container-pad) 28px;
  transform: translateY(-110%);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.pf-mobile-menu.is-open {
  transform: translateY(0);
}

.pf-navbar--scrolled ~ .pf-mobile-menu {
  top: var(--nav-height-sm);
}

.pf-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 20px;
}

.pf-mobile-menu__nav a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}

.pf-mobile-menu__nav a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--color-white);
}

.pf-mobile-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf-mobile-menu__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.pf-mobile-menu__call:hover { background: rgba(255,255,255,0.18); }

.pf-mobile-menu__call svg { width: 18px; height: 18px; }

.pf-mobile-menu__quote {
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.pf-mobile-menu__quote:hover { background: var(--color-accent-dark); }

/* === HERO === */
.pf-hero {
  background: var(--color-primary);
  background-image:
    radial-gradient(circle at 70% 50%, rgba(0,174,239,0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(0,0,0,0.15) 0%, transparent 50%);
  padding: calc(var(--nav-height) + 28px) 0 52px;
  overflow: hidden;
}

.pf-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.pf-hero__content {
  max-width: 600px;
}

.pf-hero__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0,174,239,0.12);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.pf-hero__h1 {
  color: var(--color-white);
  margin-bottom: 18px;
  max-width: 580px;
}

.pf-hero__sub {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.pf-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.pf-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.pf-hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}

.pf-hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.pf-hero__visual {
  display: none;
}

.pf-hero__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.06);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.pf-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === TRUST BAR === */
.pf-trust-bar {
  background: var(--color-primary-dark);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pf-trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}

.pf-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
}

.pf-trust-bar__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* === SERVICES === */
.pf-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pf-service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.pf-service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.pf-service-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(0,174,239,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--color-accent);
}

.pf-service-card__icon svg { width: 20px; height: 20px; }

.pf-service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.pf-service-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  max-width: none;
}

.pf-service-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.pf-service-card:hover .pf-service-card__link { gap: 8px; }

/* === PROCESS / HOW IT WORKS === */
.pf-process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.pf-step {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  position: relative;
}

.pf-step__number {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: block;
}

.pf-step h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.pf-step p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* === REVIEWS === */
.pf-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.pf-review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.pf-review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.pf-review-card__stars svg {
  width: 17px;
  height: 17px;
  color: #F59E0B;
}

.pf-review-card__text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
  max-width: none;
}

.pf-review-card__author {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
}

.pf-review-card__platform {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.pf-reviews__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

/* === WHY CHOOSE US === */
.pf-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pf-why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pf-why-item__icon {
  width: 48px;
  height: 48px;
  background: rgba(27,58,107,0.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.pf-why-item__icon svg { width: 22px; height: 22px; }

.pf-why-item h3 {
  font-size: 17px;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.pf-why-item p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

/* === FINANCING BANNER === */
.pf-financing {
  background: var(--color-primary);
  background-image: radial-gradient(circle at 80% 50%, rgba(0,174,239,0.15) 0%, transparent 60%);
  padding: 60px 0;
}

.pf-financing__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.pf-financing__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.pf-financing h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.pf-financing p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  max-width: 520px;
}

.pf-financing__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* === SERVICE AREAS === */
.pf-areas__intro {
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-size: 16px;
}

.pf-areas__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 36px;
  height: 300px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

.pf-areas__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pf-areas__cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}

.pf-areas__city {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  text-decoration: none;
}

.pf-areas__city:hover { color: var(--color-accent); }

.pf-areas__city::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.pf-areas__city--primary { font-weight: 700; }

/* === QUOTE FORM SECTION === */
.pf-quote {
  background: var(--color-bg-alt);
  padding: 80px 0;
}

.pf-quote__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.pf-quote__intro h2 {
  margin-bottom: 14px;
}

.pf-quote__intro p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

.pf-quote__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-quote__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--color-text);
}

.pf-quote__feature svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.pf-quote__form-wrap {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

/* WPForms overrides */
.pf-quote__form-wrap .wpforms-container { margin: 0; }

.pf-quote__form-wrap .wpforms-field-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 6px;
}

.pf-quote__form-wrap input[type="text"],
.pf-quote__form-wrap input[type="email"],
.pf-quote__form-wrap input[type="tel"],
.pf-quote__form-wrap select,
.pf-quote__form-wrap textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.pf-quote__form-wrap input:focus,
.pf-quote__form-wrap select:focus,
.pf-quote__form-wrap textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}

.pf-quote__form-wrap .wpforms-submit-container { margin-top: 8px; }

.pf-quote__form-wrap .wpforms-submit,
.pf-quote__form-wrap button[type="submit"] {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius);
  padding: 15px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  min-height: 52px;
}

.pf-quote__form-wrap .wpforms-submit:hover,
.pf-quote__form-wrap button[type="submit"]:hover {
  background: var(--color-accent-dark);
  transform: translateY(-1px);
}

/* === FINAL CTA SECTION === */
.pf-cta-section {
  background: var(--color-bg-alt);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.pf-cta-section h2 { margin-bottom: 14px; }

.pf-cta-section p {
  color: var(--color-text-muted);
  font-size: 17px;
  margin: 0 auto 32px;
}

.pf-cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* === FOOTER === */
.pf-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.7);
}

.pf-footer__main {
  padding: 64px 0 48px;
}

.pf-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.pf-footer__brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.pf-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.pf-footer__contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }

.pf-footer__contact a,
.pf-footer__contact address {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-style: normal;
  transition: color 0.2s;
  text-decoration: none;
}

.pf-footer__contact a:hover { color: var(--color-accent); }
.pf-footer__contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }

.pf-footer__hours {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.pf-footer__col-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.pf-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pf-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  text-decoration: none;
}

.pf-footer__links a:hover { color: var(--color-white); }

.pf-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}

.pf-footer__bar-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.pf-footer__bar-links {
  display: flex;
  gap: 20px;
}

.pf-footer__bar-links a {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s;
}

.pf-footer__bar-links a:hover { color: rgba(255,255,255,0.65); }

/* === RESPONSIVE === */
@media (min-width: 480px) {
  .pf-hero__stats { gap: 40px; }
  .pf-areas__cities { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  :root { --container-pad: 32px; }

  .pf-navbar__hamburger { display: none; }
  .pf-navbar__nav { display: flex; }
  .pf-navbar__right { display: flex; }

  .pf-hero__inner { grid-template-columns: 55% 1fr; }
  .pf-hero__visual { display: block; }
  .pf-hero__content { max-width: none; }

  .pf-trust-bar__inner { flex-wrap: nowrap; justify-content: space-between; }

  .pf-services__grid { grid-template-columns: repeat(3, 1fr); }

  .pf-process__steps { grid-template-columns: repeat(2, 1fr); }

  .pf-reviews__grid { grid-template-columns: repeat(2, 1fr); }

  .pf-why__grid { grid-template-columns: repeat(2, 1fr); }

  .pf-financing__inner { flex-direction: row; justify-content: space-between; align-items: center; }
  .pf-financing__text { max-width: 520px; }
  .pf-financing__ctas { margin-top: 0; }

  .pf-quote__inner { grid-template-columns: 1fr 1fr; }

  .pf-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .pf-footer__bar-inner { flex-direction: row; justify-content: space-between; }

  .pf-areas__map { height: 380px; }
}

@media (min-width: 1024px) {
  :root { --container-pad: 40px; }

  .pf-hero { padding: calc(var(--nav-height) + 36px) 0 64px; }

  .pf-services__grid { grid-template-columns: repeat(4, 1fr); }

  .pf-process__steps { grid-template-columns: repeat(4, 1fr); }

  .pf-reviews__grid { grid-template-columns: repeat(3, 1fr); }

  .pf-why__grid { grid-template-columns: repeat(3, 1fr); }

  .pf-areas__cities { grid-template-columns: repeat(4, 1fr); }

  .pf-quote__inner { grid-template-columns: 45% 1fr; gap: 64px; }
}

@media (min-width: 1280px) {
  :root { --container-pad: 48px; }
}

/* Gutenberg alignment helpers */
.wp-block-group.alignfull { width: 100%; max-width: none; }
.entry-content .alignfull { margin-left: 0; margin-right: 0; }

/* Remove default WP margins in block editor output */
.entry-content > * + * { margin-top: 0; }
.wp-block-group { margin: 0; }

/* =========================================================
   UPDATES — ROUND 2
   ========================================================= */

/* === HERO FORM CARD === */
.pf-hero__form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 20px 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.28);
}

.pf-hero__form-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
  line-height: 1.2;
}

.pf-hero__form-card > p {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  max-width: none;
  line-height: 1.45;
}

.pf-hero__form-card .wpforms-container { margin: 0; }
.pf-hero__form-card .wpforms-field { margin-bottom: 7px !important; padding: 0 !important; }
.pf-hero__form-card .wpforms-field-label,
.pf-hero__form-card label.wpforms-field-label {
  font-family: var(--font-heading) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--color-text) !important;
  margin-bottom: 3px !important;
  display: block !important;
}

.pf-hero__form-card input[type="text"],
.pf-hero__form-card input[type="email"],
.pf-hero__form-card input[type="tel"],
.pf-hero__form-card select {
  width: 100% !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--color-text) !important;
  background: #fff !important;
  border: 1.5px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  padding: 7px 11px !important;
  transition: border-color 0.2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
}

.pf-hero__form-card textarea {
  width: 100% !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  color: var(--color-text) !important;
  background: #fff !important;
  border: 1.5px solid var(--color-border) !important;
  border-radius: var(--radius) !important;
  padding: 7px 11px !important;
  height: 62px !important;
  min-height: unset !important;
  max-height: unset !important;
  overflow-y: auto !important;
  resize: none !important;
  box-shadow: none !important;
}

.pf-hero__form-card input:focus,
.pf-hero__form-card select:focus,
.pf-hero__form-card textarea:focus {
  outline: none !important;
  border-color: var(--color-accent) !important;
}

.pf-hero__form-card .wpforms-submit-container { margin-top: 8px !important; }

.pf-hero__form-card .wpforms-submit,
.pf-hero__form-card button[type="submit"],
.pf-hero__form-card input[type="submit"] {
  display: block !important;
  width: 100% !important;
  font-family: var(--font-heading) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: var(--color-accent) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 11px 16px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  min-height: 42px !important;
  text-align: center !important;
}

.pf-hero__form-card .wpforms-submit:hover,
.pf-hero__form-card button[type="submit"]:hover,
.pf-hero__form-card input[type="submit"]:hover {
  background: var(--color-accent-dark) !important;
}

/* === TESTIMONIAL STACKED CARDS === */
.pf-tstack-section { overflow: hidden; }

.pf-tstack-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .pf-tstack-outer {
    flex-direction: row;
    justify-content: center;
    gap: 64px;
    align-items: center;
  }
}

.pf-tstack-meta {
  max-width: 360px;
}

.pf-tstack-meta h2 { margin-bottom: 14px; }

.pf-tstack-meta p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.pf-tstack-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pf-tstack-rating__stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
}

.pf-tstack-rating__stars svg { width: 18px; height: 18px; }

.pf-tstack-rating__label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.pf-tstack-hint {
  font-size: 13px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
}

.pf-tstack-hint svg { width: 14px; height: 14px; }

.pf-tstack-wrap {
  position: relative;
  width: 300px;
  height: 340px;
  flex-shrink: 0;
}

.pf-tcard {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  background: var(--color-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  padding: 28px 24px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.pf-tcard[data-pos="front"] {
  transform: rotate(-4deg) translate(0, 0);
  z-index: 3;
  cursor: grab;
}

.pf-tcard[data-pos="front"]:active { cursor: grabbing; }

.pf-tcard[data-pos="middle"] {
  transform: rotate(2deg) translate(18px, 16px);
  z-index: 2;
}

.pf-tcard[data-pos="back"] {
  transform: rotate(-1deg) translate(36px, 28px);
  z-index: 1;
}

.pf-tcard__stars {
  display: flex;
  gap: 3px;
  color: #F59E0B;
  margin-bottom: 14px;
}

.pf-tcard__stars svg { width: 16px; height: 16px; }

.pf-tcard__text {
  font-size: 15px;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 18px;
  max-width: none;
}

.pf-tcard__author {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.pf-tcard__location {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* === WHY CHOOSE US — SPLIT LAYOUT WITH PHOTO === */
.pf-why__split {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .pf-why__split {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
  }
  .pf-why__left {
    flex: 1 1 0;
    min-width: 0;
  }
  .pf-why__photo {
    flex: 0 0 38%;
    width: 38%;
    max-width: 38%;
  }
}

.pf-why__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 480px) {
  .pf-why__items { grid-template-columns: repeat(2, 1fr); }
}

.pf-why__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  width: 100%;
}

.pf-why__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.pf-why__photo-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
}

/* === MID-PAGE QUOTE FORM — COMPACT FIELD SIZING === */
.pf-quote__form-wrap .wpforms-field { margin-bottom: 14px; }
.pf-quote__form-wrap .wpforms-field-label { font-size: 13px !important; }
.pf-quote__form-wrap textarea {
  height: 90px !important;
  min-height: unset !important;
  max-height: unset !important;
  overflow-y: auto !important;
  resize: none !important;
}

/* === QUOTE FORM HIGHLIGHT ANIMATION === */
@keyframes pf-highlight-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.55); }
  50%  { box-shadow: 0 0 0 12px rgba(0, 174, 239, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 174, 239, 0); }
}
.pf-quote__form-wrap.is-highlighted {
  border-radius: var(--radius-lg);
  animation: pf-highlight-pulse 0.8s ease-out 2;
}

/* === FAQ SECTION === */
.pf-faq {
  background: var(--color-bg-alt);
}

.pf-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pf-faq__item {
  border-bottom: 1px solid var(--color-border);
}

.pf-faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.pf-faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--color-text);
  user-select: none;
}

.pf-faq__item summary::-webkit-details-marker { display: none; }

.pf-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.2s;
}

.pf-faq__item[open] .pf-faq__icon {
  transform: rotate(45deg);
  background: var(--color-accent);
}

.pf-faq__body {
  padding: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
}

.pf-faq__cta {
  text-align: center;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .pf-faq__item summary { font-size: 18px; }
}

/* =========================================================
   SERVICE PAGE ADDITIONS
   ========================================================= */

/* === SERVICE PAGE HERO — FORM WRAP (always visible, unlike .pf-hero__visual) === */
.pf-hero__form-wrap {
  display: block;
}

.pf-hero__sub2 {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
  margin-top: -16px;
}

/* === BRANDS STRIP === */
.pf-brands {
  background: var(--color-bg);
  padding: 56px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.pf-brands__heading {
  margin-bottom: 8px;
}

.pf-brands__sub {
  color: var(--color-text-muted);
  font-size: 16px;
  margin: 0 auto 32px;
}

.pf-brands__strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.pf-brands__name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  transition: color 0.2s, border-color 0.2s;
}

.pf-brands__name:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.pf-brands__note {
  font-size: 14px;
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-style: italic;
}

/* === SECONDARY KEYWORD SECTIONS === */
.pf-secondary-section {
  /* inherits .pf-section padding */
}

.pf-secondary-section__inner {
  max-width: 780px;
}

.pf-secondary-section h2 {
  margin-bottom: 18px;
}

.pf-secondary-section p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 72ch;
}

.pf-secondary-section .pf-btn {
  margin-top: 8px;
}

/* === CASE STUDIES (inside review cards) === */
.pf-case-study {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: none;
}

.pf-case-study__label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 5px;
}

/* === SIGNS SECTION === */
.pf-signs-section {
  /* inherits .pf-section */
}

.pf-signs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

@media (min-width: 480px) {
  .pf-signs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pf-signs__grid { grid-template-columns: repeat(3, 1fr); }
}

.pf-sign-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.pf-sign-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--color-accent);
}

.pf-sign-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 5px;
}

.pf-sign-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.pf-sign-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: none;
  margin: 0;
}

.pf-signs__footer {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 68ch;
  line-height: 1.65;
}

/* === SERVICE PAGE FINAL CTA SECTION === */
.pf-service-cta {
  background: var(--color-primary);
  background-image: radial-gradient(circle at 80% 50%, rgba(0,174,239,0.12) 0%, transparent 60%);
  padding: 80px 0;
}

.pf-service-cta h2 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.pf-service-cta > .pf-container > p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 560px;
}

.pf-service-cta__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

@media (min-width: 768px) {
  .pf-service-cta__inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
}

/* === GOOGLE MAP EMBED === */
.pf-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  border: 1px solid rgba(255,255,255,0.15);
}

.pf-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .pf-map-wrap { height: 360px; }
}

/* === ABOUT CITY SECTION === */
.pf-about-city h2 {
  margin-bottom: 20px;
}

.pf-about-city p {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 72ch;
  margin-bottom: 16px;
}

/* === SECONDARY SPLIT LAYOUT (text + image side by side) === */
.pf-secondary-split {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .pf-secondary-split {
    flex-direction: row;
    gap: 56px;
    align-items: center;
  }
  .pf-secondary-split__text {
    flex: 1 1 0;
    min-width: 0;
  }
  .pf-secondary-split__img {
    flex: 0 0 38%;
    max-width: 38%;
  }
}

.pf-secondary-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  width: 100%;
}

.pf-secondary-split__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* === OUTLINE DARK BUTTON (for light backgrounds) === */
.pf-btn--outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.pf-btn--outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}


/* ============================================
   NAVBAR DROPDOWN — added
   ============================================ */

.pf-nav-item { position: relative; display: inline-flex; align-items: center; }

.pf-nav-item__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: 500;
  color: inherit;
  letter-spacing: inherit;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  line-height: inherit;
  transition: color 0.15s;
}
.pf-nav-item__btn:hover { color: var(--color-accent); }

.pf-nav-item__chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.pf-nav-item.is-open .pf-nav-item__chevron,
.pf-nav-item__btn[aria-expanded="true"] .pf-nav-item__chevron { transform: rotate(180deg); }

.pf-nav-item__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 6px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 500;
  pointer-events: none;
}
.pf-nav-item:hover .pf-nav-item__dropdown,
.pf-nav-item.is-open .pf-nav-item__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.pf-nav-item__dropdown a {
  display: block;
  padding: 9px 20px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
  line-height: 1.4;
}
.pf-nav-item__dropdown a:hover {
  background: var(--color-bg);
  color: var(--color-accent);
}

/* Wide 2-column dropdown for service areas */
.pf-nav-item__dropdown--wide {
  min-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8px;
  gap: 0;
  left: auto;
  right: 0;
}
.pf-nav-item__dropdown--wide a { border-radius: 6px; }

/* Service areas dropdown aligns right so it doesn't go off screen */
#nav-areas .pf-nav-item__dropdown { left: auto; right: 0; }

/* ============================================
   MOBILE MENU ACCORDION — added
   ============================================ */

.pf-mobile-menu__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  font-family: inherit;
  font-weight: 500;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.01em;
}
.pf-mobile-menu__trigger:hover { color: #fff; }
.pf-mobile-menu__trigger .pf-nav-item__chevron { color: rgba(255,255,255,0.6); }

.pf-mobile-menu__dropdown {
  display: none;
  padding: 4px 0 8px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.pf-mobile-menu__dropdown.is-open { display: block; }
.pf-mobile-menu__dropdown a {
  display: block;
  padding: 9px 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pf-mobile-menu__dropdown a:last-child { border-bottom: none; }
.pf-mobile-menu__dropdown a:hover { color: #fff; }

/* Hide dropdown chevron on mobile trigger when open */
.pf-mobile-menu__trigger.is-open .pf-nav-item__chevron { transform: rotate(180deg); }
