/* ============================================================
   YOURTURN PEST SOLUTIONS LLC — SHARED SITE CSS
   Paste this ONCE into your WordPress theme's Additional CSS
   (Appearance → Customize → Additional CSS) or a global stylesheet.
   All selectors are namespaced with "ytp-" and scoped under
   .ytp-site to avoid conflicting with your WordPress theme.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root{
  --ytp-navy:        #0A1B22;   /* deep navy / near-black - primary dark */
  --ytp-navy-2:      #102B33;   /* secondary dark surface, gradients/cards on dark bg */
  --ytp-teal:        #1E8A80;   /* primary teal/green, pulled from logo badge */
  --ytp-teal-light:  #2FA89C;   /* hover / accent teal */
  --ytp-teal-dark:   #145F58;
  --ytp-white:       #FFFFFF;
  --ytp-off-white:   #F6F8F7;   /* light neutral section background */
  --ytp-ink:         #16262A;   /* body text on light background */
  --ytp-ink-soft:    #33454A;
  --ytp-gray:        #55696D;   /* secondary / muted text */
  --ytp-gold:        #B8924A;   /* subtle trust-badge accent, used sparingly */
  --ytp-border:      #E1E8E7;
  --ytp-border-dark: rgba(255,255,255,0.14);
  --ytp-danger:      #B23A3A;

  --ytp-font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --ytp-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ytp-radius: 10px;
  --ytp-radius-sm: 6px;
  --ytp-shadow: 0 6px 24px rgba(10,27,34,0.10);
  --ytp-shadow-lg: 0 16px 48px rgba(10,27,34,0.18);
  --ytp-container: 1180px;
  --ytp-whatsapp-green: #25D366; /* recognizable WhatsApp brand green, used only for WhatsApp CTAs */
  --ytp-sticky-bar-height: 76px;
}

/* ---------- Reset scoped to site wrapper ---------- */
.ytp-site{
  font-family: var(--ytp-font-body);
  color: var(--ytp-ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
.ytp-site *,
.ytp-site *::before,
.ytp-site *::after{ box-sizing: border-box; }
.ytp-site img{ max-width: 100%; height: auto; display: block; }
.ytp-site a{ color: inherit; text-decoration: none; }
.ytp-site ul, .ytp-site ol{ margin: 0; padding: 0; list-style: none; }
.ytp-site h1, .ytp-site h2, .ytp-site h3, .ytp-site h4{
  font-family: var(--ytp-font-display);
  font-weight: 700;
  line-height: 1.08;
  margin: 0 0 0.5em;
  color: var(--ytp-navy);
  letter-spacing: 0.2px;
}
.ytp-site h1{ font-size: clamp(2.1rem, 5vw, 3.4rem); }
.ytp-site h2{ font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.ytp-site h3{ font-size: clamp(1.25rem, 2.2vw, 1.5rem); }
.ytp-site p{ margin: 0 0 1em; }

/* Visible keyboard focus everywhere */
.ytp-site a:focus-visible,
.ytp-site button:focus-visible,
.ytp-site input:focus-visible,
.ytp-site select:focus-visible,
.ytp-site textarea:focus-visible,
.ytp-site summary:focus-visible{
  outline: 3px solid var(--ytp-teal-light);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .ytp-site, .ytp-site *{ scroll-behavior: auto !important; animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Layout helpers ---------- */
.ytp-container{ max-width: var(--ytp-container); margin: 0 auto; padding: 0 20px; }
.ytp-section{ padding: 72px 0; }
.ytp-section--tight{ padding: 48px 0; }
.ytp-section--dark{ background: var(--ytp-navy); color: rgba(255,255,255,0.92); }
.ytp-section--dark h1, .ytp-section--dark h2, .ytp-section--dark h3{ color: var(--ytp-white); }
.ytp-section--light{ background: var(--ytp-off-white); }
.ytp-section--white{ background: var(--ytp-white); }
.ytp-grid{ display: grid; gap: 28px; }
.ytp-grid--2{ grid-template-columns: repeat(2, 1fr); }
.ytp-grid--3{ grid-template-columns: repeat(3, 1fr); }
.ytp-grid--4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px){
  .ytp-grid--3, .ytp-grid--4{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .ytp-grid--2, .ytp-grid--3, .ytp-grid--4{ grid-template-columns: 1fr; }
  .ytp-section{ padding: 48px 0; }
}

/* Skip link */
.ytp-skip-link{
  position: absolute; left: -9999px; top: auto;
  background: var(--ytp-teal); color: var(--ytp-white);
  padding: 12px 18px; z-index: 10000; border-radius: 0 0 var(--ytp-radius-sm) 0;
  font-weight: 600;
}
.ytp-skip-link:focus{ left: 0; top: 0; }

/* Eyebrow label */
.ytp-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ytp-font-display);
  font-size: 0.95rem; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--ytp-teal); font-weight: 600; margin-bottom: 14px;
}
.ytp-eyebrow::before{
  content: ""; width: 22px; height: 2px; background: var(--ytp-teal);
  display: inline-block;
}
.ytp-section--dark .ytp-eyebrow{ color: var(--ytp-teal-light); }

/* ---------- Header / navigation ---------- */
.ytp-header{
  background: var(--ytp-white);
  border-bottom: 1px solid var(--ytp-border);
  position: sticky; top: 0; z-index: 500;
}
.ytp-header__bar{
  max-width: var(--ytp-container); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px;
}
.ytp-header__brand{ display: flex; align-items: center; gap: 12px; }
.ytp-header__logo{ height: 52px; width: 52px; object-fit: contain; }
.ytp-header__brand-text{ display: flex; flex-direction: column; line-height: 1.15; }
.ytp-header__brand-name{
  font-family: var(--ytp-font-display); font-weight: 700; font-size: 1.28rem;
  color: var(--ytp-navy); letter-spacing: 0.3px;
}
.ytp-header__brand-tag{ font-size: 0.72rem; color: var(--ytp-gray); letter-spacing: 0.4px; }

.ytp-nav{ display: flex; align-items: center; gap: 6px; }
.ytp-nav__list{ display: flex; align-items: center; gap: 2px; }
.ytp-nav__link{
  padding: 10px 14px; font-weight: 600; font-size: 0.98rem; color: var(--ytp-ink);
  border-radius: var(--ytp-radius-sm); position: relative;
}
.ytp-nav__link:hover, .ytp-nav__link:focus-visible{ color: var(--ytp-teal); background: var(--ytp-off-white); }
.ytp-nav__item--has-dropdown{ position: relative; }
.ytp-nav__dropdown{
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--ytp-white); border: 1px solid var(--ytp-border);
  border-radius: var(--ytp-radius); box-shadow: var(--ytp-shadow-lg);
  min-width: 260px; padding: 8px; margin-top: 6px;
}
.ytp-nav__item--has-dropdown:hover .ytp-nav__dropdown,
.ytp-nav__item--has-dropdown:focus-within .ytp-nav__dropdown{ display: block; }
.ytp-nav__dropdown a{
  display: block; padding: 10px 12px; border-radius: var(--ytp-radius-sm); font-weight: 500; font-size: 0.95rem;
}
.ytp-nav__dropdown a:hover, .ytp-nav__dropdown a:focus-visible{ background: var(--ytp-off-white); color: var(--ytp-teal); }

.ytp-header__cta{ display: flex; align-items: center; gap: 10px; }

.ytp-menu-toggle{
  display: none; background: none; border: 2px solid var(--ytp-navy); border-radius: var(--ytp-radius-sm);
  width: 46px; height: 46px; align-items: center; justify-content: center; cursor: pointer;
}
.ytp-menu-toggle__bar, .ytp-menu-toggle__bar::before, .ytp-menu-toggle__bar::after{
  content: ""; display: block; width: 22px; height: 2px; background: var(--ytp-navy); position: relative; transition: transform .2s ease, opacity .2s ease;
}
.ytp-menu-toggle__bar::before{ position: absolute; top: -7px; }
.ytp-menu-toggle__bar::after{ position: absolute; top: 7px; }
.ytp-menu-toggle[aria-expanded="true"] .ytp-menu-toggle__bar{ background: transparent; }
.ytp-menu-toggle[aria-expanded="true"] .ytp-menu-toggle__bar::before{ transform: translateY(7px) rotate(45deg); }
.ytp-menu-toggle[aria-expanded="true"] .ytp-menu-toggle__bar::after{ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px){
  .ytp-nav{ display: none; position: fixed; inset: 78px 0 0 0; background: var(--ytp-white); overflow-y: auto; padding: 10px 20px 40px; z-index: 600; }
  .ytp-nav.ytp-nav--open{ display: block; }
  .ytp-nav__list{ flex-direction: column; align-items: stretch; gap: 2px; }
  .ytp-nav__link{ padding: 16px 10px; font-size: 1.05rem; border-bottom: 1px solid var(--ytp-border); border-radius: 0; }
  .ytp-nav__dropdown{ position: static; display: block; box-shadow: none; border: none; margin: 0 0 0 12px; padding: 0; }
  .ytp-nav__item--has-dropdown .ytp-nav__dropdown{ display: none; }
  .ytp-nav__item--has-dropdown.ytp-nav__item--open .ytp-nav__dropdown{ display: block; }
  .ytp-header__cta .ytp-btn--ghost{ display: none; }
  .ytp-menu-toggle{ display: inline-flex; }
}

/* ---------- Buttons ---------- */
.ytp-btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--ytp-font-body); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: var(--ytp-radius-sm); border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  min-height: 48px; line-height: 1.1;
}
.ytp-btn:hover{ transform: translateY(-1px); }
.ytp-btn--primary{ background: var(--ytp-teal); color: var(--ytp-white); box-shadow: var(--ytp-shadow); }
.ytp-btn--primary:hover, .ytp-btn--primary:focus-visible{ background: var(--ytp-teal-dark); color: var(--ytp-white); }
.ytp-btn--secondary{ background: var(--ytp-navy); color: var(--ytp-white); }
.ytp-btn--secondary:hover, .ytp-btn--secondary:focus-visible{ background: #06141A; color: var(--ytp-white); }
.ytp-btn--ghost{ background: transparent; border-color: var(--ytp-navy); color: var(--ytp-navy); }
.ytp-btn--ghost:hover, .ytp-btn--ghost:focus-visible{ background: var(--ytp-navy); color: var(--ytp-white); }
.ytp-btn--on-dark{ border-color: var(--ytp-white); color: var(--ytp-white); }
.ytp-btn--on-dark:hover, .ytp-btn--on-dark:focus-visible{ background: var(--ytp-white); color: var(--ytp-navy); }
.ytp-btn--whatsapp{ background: var(--ytp-whatsapp-green); color: var(--ytp-white); box-shadow: var(--ytp-shadow); }
.ytp-btn--whatsapp:hover, .ytp-btn--whatsapp:focus-visible{ background: #1DA851; color: var(--ytp-white); }
.ytp-btn--block{ width: 100%; }
.ytp-btn__icon{ width: 18px; height: 18px; flex: none; }

/* ---------- Hero ---------- */
.ytp-hero{
  background: linear-gradient(155deg, var(--ytp-navy) 0%, var(--ytp-navy-2) 62%, #0C2028 100%);
  color: var(--ytp-white); position: relative; overflow: hidden;
}
/* Bug fix: headings have their own explicit `color: var(--ytp-navy)` rule
   in the base .ytp-site h1/h2/h3 block. An inherited color (like the
   white set above) never overrides an element's own explicit color
   rule, no matter how low that rule's specificity is — so without this
   override, the H1 rendered dark navy on a dark navy background and
   was effectively invisible. This mirrors the same override already
   applied to .ytp-page-header and .ytp-section--dark below. */
.ytp-hero h1, .ytp-hero h2, .ytp-hero h3{ color: var(--ytp-white); }
.ytp-hero .ytp-eyebrow{ color: var(--ytp-teal-light); }
.ytp-hero__inner{
  max-width: var(--ytp-container); margin: 0 auto; padding: 64px 20px 72px;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center;
}
.ytp-hero__lede{ font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 46ch; margin-bottom: 28px; }
.ytp-hero__ctas{ display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.ytp-hero__facts{ display: flex; flex-wrap: wrap; gap: 10px 22px; padding-top: 22px; border-top: 1px solid var(--ytp-border-dark); }
.ytp-hero__fact{ display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.ytp-hero__fact-dot{ width: 7px; height: 7px; border-radius: 50%; background: var(--ytp-teal-light); flex: none; }
.ytp-hero__media{ position: relative; }
.ytp-hero__media img{
  border-radius: var(--ytp-radius); box-shadow: var(--ytp-shadow-lg);
  aspect-ratio: 4/5; object-fit: cover; width: 100%;
  border: 1px solid var(--ytp-border-dark);
}
@media (max-width: 900px){
  .ytp-hero__inner{ grid-template-columns: 1fr; padding-top: 40px; }
  .ytp-hero__media{ order: -1; }
  .ytp-hero__media img{ aspect-ratio: 16/10; }
}

/* ---------- Interior page header band (non-Home pages) ---------- */
.ytp-page-header{
  background: linear-gradient(155deg, var(--ytp-navy) 0%, var(--ytp-navy-2) 100%);
  color: var(--ytp-white); padding: 40px 0 52px;
}
.ytp-page-header .ytp-breadcrumbs{ color: rgba(255,255,255,0.6); padding-top: 0; }
.ytp-page-header .ytp-breadcrumbs a{ color: rgba(255,255,255,0.75); }
.ytp-page-header .ytp-breadcrumbs a:hover{ color: var(--ytp-white); }
.ytp-page-header .ytp-breadcrumbs [aria-current="page"]{ color: var(--ytp-white); }
.ytp-page-header h1{ color: var(--ytp-white); margin-bottom: 12px; }
.ytp-page-header__lede{ max-width: 62ch; color: rgba(255,255,255,0.82); font-size: 1.08rem; margin-bottom: 0; }
.ytp-page-header__ctas{ display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- Trust strip ---------- */
.ytp-trust-strip{ background: var(--ytp-off-white); border-bottom: 1px solid var(--ytp-border); }
.ytp-trust-strip__row{
  max-width: var(--ytp-container); margin: 0 auto; padding: 18px 20px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center; align-items: center;
}
.ytp-trust-badge{ display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.94rem; color: var(--ytp-navy); }
.ytp-trust-badge__icon{ width: 20px; height: 20px; color: var(--ytp-teal); flex: none; }
.ytp-trust-badge--gold .ytp-trust-badge__icon{ color: var(--ytp-gold); }

/* ---------- Cards ---------- */
.ytp-card{
  background: var(--ytp-white); border: 1px solid var(--ytp-border); border-radius: var(--ytp-radius);
  padding: 28px; box-shadow: var(--ytp-shadow); display: flex; flex-direction: column; height: 100%;
}
.ytp-card__icon{ width: 44px; height: 44px; color: var(--ytp-teal); margin-bottom: 16px; }
.ytp-card__title{ font-family: var(--ytp-font-display); font-size: 1.3rem; font-weight: 700; color: var(--ytp-navy); margin-bottom: 8px; }
.ytp-card__desc{ color: var(--ytp-gray); flex: 1; margin-bottom: 16px; }
.ytp-card__link{ font-weight: 700; color: var(--ytp-teal); display: inline-flex; align-items: center; gap: 6px; }
.ytp-card__link:hover, .ytp-card__link:focus-visible{ color: var(--ytp-teal-dark); text-decoration: underline; }

.ytp-service-card{ position: relative; overflow: hidden; }
.ytp-service-card__photo{ aspect-ratio: 4/3; overflow: hidden; border-radius: var(--ytp-radius-sm); margin-bottom: 16px; }
.ytp-service-card__photo img{ width: 100%; height: 100%; object-fit: cover; }

/* ---------- Field-photo signature treatment ---------- */
.ytp-field-photo{
  position: relative; border-radius: var(--ytp-radius-sm); overflow: hidden;
  border: 1px solid var(--ytp-border); background: var(--ytp-white);
}
.ytp-field-photo img{ width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.ytp-field-photo__tag{
  position: absolute; top: 12px; left: 12px;
  background: rgba(10,27,34,0.82); color: var(--ytp-teal-light);
  font-family: var(--ytp-font-display); font-size: 0.72rem; letter-spacing: 1.4px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 4px; border-left: 2px solid var(--ytp-teal-light);
}
.ytp-field-photo__caption{ padding: 12px 14px; font-size: 0.92rem; color: var(--ytp-gray); border-top: 1px solid var(--ytp-border); }

.ytp-photo-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px){ .ytp-photo-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .ytp-photo-grid{ grid-template-columns: 1fr; } }

/* ---------- CTA block ---------- */
.ytp-cta-block{
  background: linear-gradient(135deg, var(--ytp-teal-dark), var(--ytp-teal));
  border-radius: var(--ytp-radius); padding: 44px; color: var(--ytp-white);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.ytp-cta-block h2, .ytp-cta-block h3{ color: var(--ytp-white); margin-bottom: 6px; }
.ytp-cta-block p{ color: rgba(255,255,255,0.9); margin: 0; }
.ytp-cta-block__actions{ display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Process steps ---------- */
.ytp-steps{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: ytp-step; }
@media (max-width: 900px){ .ytp-steps{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .ytp-steps{ grid-template-columns: 1fr; } }
.ytp-step{ position: relative; padding-top: 8px; }
.ytp-step__num{
  counter-increment: ytp-step; font-family: var(--ytp-font-display); font-weight: 700;
  font-size: 2.2rem; color: var(--ytp-teal); line-height: 1; margin-bottom: 10px;
}
.ytp-step__num::before{ content: counter(ytp-step, decimal-leading-zero); }
.ytp-step__title{ font-weight: 700; color: var(--ytp-navy); margin-bottom: 6px; }
.ytp-step__desc{ color: var(--ytp-gray); font-size: 0.96rem; }

/* ---------- FAQ accordion ---------- */
.ytp-faq{ border-top: 1px solid var(--ytp-border); }
.ytp-faq__item{ border-bottom: 1px solid var(--ytp-border); }
.ytp-faq__item summary{
  cursor: pointer; list-style: none; padding: 20px 4px; display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; color: var(--ytp-navy); font-size: 1.05rem; gap: 16px;
}
.ytp-faq__item summary::-webkit-details-marker{ display: none; }
.ytp-faq__item summary::after{
  content: "+"; font-size: 1.6rem; color: var(--ytp-teal); flex: none; font-weight: 400; line-height: 1;
}
.ytp-faq__item[open] summary::after{ content: "\2212"; }
.ytp-faq__answer{ padding: 0 4px 20px; color: var(--ytp-gray); }

/* ---------- Breadcrumbs ---------- */
.ytp-breadcrumbs{ padding: 16px 0; font-size: 0.88rem; color: var(--ytp-gray); }
.ytp-breadcrumbs a{ color: var(--ytp-gray); font-weight: 600; }
.ytp-breadcrumbs a:hover, .ytp-breadcrumbs a:focus-visible{ color: var(--ytp-teal); text-decoration: underline; }
.ytp-breadcrumbs__sep{ margin: 0 8px; color: var(--ytp-border); }
.ytp-breadcrumbs [aria-current="page"]{ color: var(--ytp-ink); }

/* ---------- Forms ---------- */
.ytp-form{ display: grid; gap: 18px; }
.ytp-form__row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px){ .ytp-form__row{ grid-template-columns: 1fr; } }
.ytp-field{ display: flex; flex-direction: column; gap: 6px; }
.ytp-field label{ font-weight: 700; font-size: 0.92rem; color: var(--ytp-navy); }
.ytp-field .ytp-required{ color: var(--ytp-danger); }
.ytp-field input,
.ytp-field select,
.ytp-field textarea{
  font-family: var(--ytp-font-body); font-size: 1rem; padding: 13px 14px;
  border: 1.5px solid var(--ytp-border); border-radius: var(--ytp-radius-sm); background: var(--ytp-white); color: var(--ytp-ink);
  width: 100%;
}
.ytp-field input:focus, .ytp-field select:focus, .ytp-field textarea:focus{ border-color: var(--ytp-teal); }
.ytp-field--radio-group{ flex-direction: row; gap: 20px; align-items: center; flex-wrap: wrap; }
.ytp-field--radio-group .ytp-radio-option{ display: flex; align-items: center; gap: 8px; font-weight: 600; }
.ytp-form__status{ font-weight: 600; padding: 12px 14px; border-radius: var(--ytp-radius-sm); display: none; }
.ytp-form__status--visible{ display: block; }
.ytp-form__status--success{ background: #E7F4F1; color: var(--ytp-teal-dark); }
.ytp-form__status--error{ background: #FBEAEA; color: var(--ytp-danger); }
.ytp-form__disclaimer{ font-size: 0.85rem; color: var(--ytp-gray); }

/* ---------- Footer ---------- */
.ytp-footer{ background: var(--ytp-navy); color: rgba(255,255,255,0.78); padding: 56px 0 26px; }
.ytp-footer__grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 900px){ .ytp-footer__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .ytp-footer__grid{ grid-template-columns: 1fr; } }
.ytp-footer__brand{ display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ytp-footer__logo{ height: 42px; width: 42px; object-fit: contain; }
.ytp-footer__brand-name{ font-family: var(--ytp-font-display); font-weight: 700; font-size: 1.15rem; color: var(--ytp-white); }
.ytp-footer h4{ color: var(--ytp-white); font-size: 1rem; margin-bottom: 14px; font-family: var(--ytp-font-display); letter-spacing: 0.4px; }
.ytp-footer__list{ display: grid; gap: 10px; }
.ytp-footer__list a:hover, .ytp-footer__list a:focus-visible{ color: var(--ytp-teal-light); text-decoration: underline; }
.ytp-footer__bottom{
  border-top: 1px solid var(--ytp-border-dark); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.55);
}
.ytp-footer__bottom a:hover, .ytp-footer__bottom a:focus-visible{ color: var(--ytp-white); }

/* ---------- Mobile sticky CTA bar: Call + WhatsApp ---------- */
.ytp-sticky-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; box-shadow: 0 -6px 18px rgba(0,0,0,0.18);
}
.ytp-sticky-bar__segment{
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px calc(14px + env(safe-area-inset-bottom));
  color: var(--ytp-white); font-weight: 700; font-size: 0.96rem; min-height: 48px;
}
.ytp-sticky-bar__segment--call{ background: var(--ytp-navy); }
.ytp-sticky-bar__segment--whatsapp{ background: var(--ytp-whatsapp-green); }
.ytp-sticky-bar__icon{ width: 19px; height: 19px; flex: none; }
@media (max-width: 780px){
  .ytp-sticky-bar{ display: flex; }
  .ytp-site{ padding-bottom: var(--ytp-sticky-bar-height); } /* keep content clear of the bar */
}
@media (max-width: 400px){
  /* Smaller labels ("Call Pest Control" / "WhatsApp Request") are more
     likely to wrap to two lines on the narrowest phones — shrink text
     and icon slightly so a single line fits and the bar's real height
     stays close to --ytp-sticky-bar-height. 400px covers the common
     375-390px iPhone widths as well as smaller Android phones. */
  .ytp-sticky-bar__segment{ font-size: 0.82rem; gap: 5px; padding-left: 4px; padding-right: 4px; }
  .ytp-sticky-bar__icon{ width: 15px; height: 15px; }
}

/* ---------- Floating WhatsApp button (all pages, all breakpoints) ---------- */
.ytp-whatsapp-float{
  position: fixed; right: 20px; bottom: 24px; z-index: 940;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--ytp-whatsapp-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(10,27,34,0.28);
  transition: transform .15s ease;
}
.ytp-whatsapp-float:hover, .ytp-whatsapp-float:focus-visible{ transform: scale(1.06); }
.ytp-whatsapp-float svg{ width: 30px; height: 30px; }
@media (max-width: 780px){
  /* Sits clear above the two-segment sticky bar so the two never overlap. */
  .ytp-whatsapp-float{
    bottom: calc(var(--ytp-sticky-bar-height) + env(safe-area-inset-bottom) + 18px);
    right: 16px; width: 52px; height: 52px;
  }
}

/* ---------- Misc utility ---------- */
.ytp-text-center{ text-align: center; }
.ytp-max-60{ max-width: 62ch; }
.ytp-mx-auto{ margin-left: auto; margin-right: auto; }
.ytp-mb-0{ margin-bottom: 0 !important; }
.ytp-section-head{ max-width: 720px; margin: 0 0 44px; }
.ytp-section-head--center{ margin-left: auto; margin-right: auto; text-align: center; }
.ytp-note{ font-size: 0.85rem; color: var(--ytp-gray); background: var(--ytp-off-white); border: 1px solid var(--ytp-border); border-radius: var(--ytp-radius-sm); padding: 12px 16px; }
