/* ================================================================
   IG Plomberie – Public Design System v2
   Modern, premium, full-width redesign
   All rules scoped to body.public-body to protect admin/client areas
   ================================================================ */

/* ── CSS Variables ── */
body.public-body {
  --p-blue:        #0057b7;
  --p-blue-600:    #0066cc;
  --p-blue-700:    #004ea3;
  --p-blue-900:    #002f6c;
  --p-teal:        #06b6d4;
  --p-teal-600:    #0891b2;
  --p-navy:        #0d1f2d;
  --p-navy-2:      #152a3a;
  --p-text:        #1e3a4f;
  --p-muted:       #62798a;
  --p-light:       #f4f8fc;
  --p-light-2:     #e8f2fb;
  --p-white:       #ffffff;
  --p-border:      rgba(0, 40, 80, 0.09);
  --p-shadow:      0 4px 22px rgba(0, 55, 130, 0.10);
  --p-shadow-md:   0 10px 40px rgba(0, 55, 130, 0.14);
  --p-shadow-lg:   0 22px 64px rgba(0, 55, 130, 0.18);
  --p-radius:      14px;
  --p-radius-lg:   22px;
  --p-radius-xl:   32px;
  background: #ffffff;
  font-family: 'Inter', 'Manrope', sans-serif;
  color: var(--p-text);
}

/* ── Typography ── */
body.public-body h1,
body.public-body h2,
body.public-body h3,
body.public-body h4 {
  font-family: 'Poppins', 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

/* ── Container: wider for full-width feel ── */
body.public-body .container {
  width: min(1400px, calc(100% - 48px));
}

/* ================================================================
   HEADER
   ================================================================ */

body.public-body .site-header {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 87, 183, 0.07) !important;
  box-shadow: 0 2px 20px rgba(0, 40, 100, 0.06) !important;
}

body.public-body .header-topline {
  background: linear-gradient(90deg, var(--p-navy), var(--p-navy-2)) !important;
}

body.public-body .brand strong {
  font-family: 'Poppins', sans-serif;
  color: var(--p-navy);
  font-size: 1.08rem;
  font-weight: 700;
}

body.public-body .brand small {
  color: var(--p-muted);
  font-size: 0.78rem;
}

body.public-body .site-nav > a:not(.button) {
  color: #3d5a70;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 9px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

body.public-body .site-nav > a:not(.button):hover,
body.public-body .site-nav > a.active:not(.button) {
  color: var(--p-blue);
  background: rgba(0, 87, 183, 0.07);
  transform: none;
}

/* ── Buttons ── */
body.public-body .button {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 10px !important;
}

body.public-body .button-primary {
  background: linear-gradient(135deg, #2681e8 0%, var(--p-blue) 55%, var(--p-blue-700) 100%) !important;
  box-shadow: 0 4px 18px rgba(0, 87, 183, 0.34) !important;
  color: #fff !important;
  border: none !important;
}

body.public-body .button-primary:hover {
  box-shadow: 0 8px 28px rgba(0, 87, 183, 0.42) !important;
  transform: translateY(-2px);
}

body.public-body .button-secondary {
  background: #ffffff !important;
  color: var(--p-blue) !important;
  border: 1.5px solid rgba(0, 87, 183, 0.28) !important;
  box-shadow: none !important;
}

body.public-body .button-secondary:hover {
  background: rgba(0, 87, 183, 0.05) !important;
  border-color: var(--p-blue) !important;
  transform: translateY(-2px);
}

/* ── Eyebrow pill ── */
body.public-body .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--p-teal-600) !important;
  background: rgba(6, 182, 212, 0.1) !important;
  border: 1px solid rgba(6, 182, 212, 0.22) !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  margin-bottom: 14px;
}

/* ================================================================
   HERO — full-bleed bg image, dark overlay, white copy
   ================================================================ */

body.public-body .pro-hero {
  min-height: 640px;
  padding: 0 !important;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg,
      rgba(8, 18, 32, 0.92) 0%,
      rgba(8, 18, 32, 0.72) 48%,
      rgba(6, 182, 212, 0.12) 100%),
    url('../images/plumbing-hero.png') center / cover no-repeat !important;
  color: #ffffff !important;
}

body.public-body .pro-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 50%, rgba(0, 87, 183, 0.28) 0%, transparent 68%);
  pointer-events: none;
}

body.public-body .pro-hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  max-width: none;
  padding: 110px max(24px, calc((100% - 1400px) / 2 + 24px)) 90px !important;
  grid-template-columns: 1fr auto !important;
  gap: 56px !important;
  align-items: center;
}

body.public-body .pro-hero-copy .eyebrow {
  background: rgba(6, 182, 212, 0.2) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  color: var(--p-teal) !important;
}

body.public-body .pro-hero-copy h1 {
  max-width: 680px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(2.4rem, 4vw, 4.2rem) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  color: #ffffff !important;
  margin: 0 0 18px !important;
}

body.public-body .pro-hero-copy > p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1.06rem !important;
  line-height: 1.72 !important;
  max-width: 570px !important;
  margin-top: 0 !important;
}

body.public-body .pro-hero-actions {
  margin-top: 32px;
  gap: 14px !important;
}

body.public-body .pro-hero-actions .button {
  min-height: 52px !important;
  padding: 0 30px !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
}

body.public-body .pro-hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.38) !important;
  backdrop-filter: blur(8px);
}

body.public-body .pro-hero-actions .button-secondary:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
}

body.public-body .pro-trust-row {
  margin-top: 30px !important;
  gap: 10px !important;
}

body.public-body .pro-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
}

body.public-body .pro-trust-row span::before {
  content: '✓';
  color: var(--p-teal);
  font-weight: 800;
  font-size: 0.75rem;
}

/* Hide the separate image element — bg image is on section itself */
body.public-body .pro-hero-visual {
  display: none !important;
}

/* Hero contact card (now a direct grid child) */
body.public-body .pro-hero-contact {
  position: static !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(16px);
  border-radius: 18px !important;
  padding: 26px 28px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.26) !important;
  color: var(--p-navy) !important;
  border: 1px solid rgba(255, 255, 255, 0.9);
  min-width: 230px;
  display: grid !important;
  gap: 6px !important;
}

body.public-body .pro-hero-contact span {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--p-teal-600) !important;
}

body.public-body .pro-hero-contact strong {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.42rem !important;
  color: var(--p-navy) !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

body.public-body .pro-hero-contact small {
  font-size: 0.8rem !important;
  color: var(--p-muted) !important;
  line-height: 1.5;
}

/* ================================================================
   PROOF BAND / METRICS BAR
   ================================================================ */

body.public-body .pro-proof-band {
  background: var(--p-navy) !important;
  border-bottom: none !important;
}

body.public-body .pro-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
}

body.public-body .pro-proof-grid article {
  padding: 34px 28px !important;
  border-left: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-right: none !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.25s;
}

body.public-body .pro-proof-grid article:hover {
  background: rgba(255, 255, 255, 0.04);
}

body.public-body .pro-proof-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.07) !important;
}

body.public-body .pro-proof-grid strong {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  color: #d8dedf !important;
  line-height: 1;
}

body.public-body .pro-proof-grid span {
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  margin-top: 0;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */

body.public-body .pro-section {
  background: var(--p-light) !important;
  padding: 84px 0 !important;
}

body.public-body .pro-section-head {
  max-width: none !important;
  margin-bottom: 48px !important;
  text-align: center;
}

body.public-body .pro-section-head h2 {
  font-size: clamp(1.85rem, 3vw, 2.9rem) !important;
  color: var(--p-navy) !important;
  margin-bottom: 12px !important;
  line-height: 1.15 !important;
}

body.public-body .pro-section-head p {
  color: var(--p-muted) !important;
  font-size: 1rem !important;
  max-width: 580px;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}

body.public-body .pro-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

/* Base card reset + new design */
body.public-body .pro-service-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden;
  border-radius: var(--p-radius-lg) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: var(--p-shadow) !important;
  background: var(--p-white) !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease !important;
  cursor: default;
  /* neutralise grid-template-columns from original */
  grid-template-columns: none !important;
}

body.public-body .pro-service-card::before {
  display: none !important;
}

body.public-body .pro-service-card:hover {
  transform: translateY(-7px) !important;
  box-shadow: var(--p-shadow-lg) !important;
}

/* Service photo: full-bleed top */
body.public-body .pro-service-photo,
body.public-body .pro-service-card-large .pro-service-photo {
  width: 100% !important;
  height: 200px !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: var(--p-light-2) !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  align-self: stretch !important;
  position: relative !important;
  grid-column: auto !important;
  display: block !important;
}

body.public-body .pro-service-photo img,
body.public-body .pro-service-card-large .pro-service-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.42s ease !important;
  display: block !important;
}

body.public-body .pro-service-card:hover .pro-service-photo img {
  transform: scale(1.07) !important;
}

body.public-body .pro-service-card h3 {
  padding: 20px 22px 6px !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: var(--p-navy) !important;
  margin: 0 !important;
  min-height: auto !important;
}

body.public-body .pro-service-card > p {
  padding: 0 22px 16px !important;
  color: var(--p-muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  flex: 1;
  margin: 0 !important;
}

body.public-body .pro-service-bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 22px !important;
  border-top: 1px solid var(--p-border) !important;
  background: rgba(0, 87, 183, 0.03) !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin-top: auto !important;
  flex-shrink: 0 !important;
}

body.public-body .pro-service-bottom span {
  font-family: 'Poppins', sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  color: var(--p-blue) !important;
}

body.public-body .pro-service-bottom a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  color: var(--p-white) !important;
  background: var(--p-blue) !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s !important;
  white-space: nowrap;
}

body.public-body .pro-service-bottom a:hover {
  background: var(--p-blue-700) !important;
  transform: translateX(3px) !important;
}

body.public-body .pro-service-bottom a::after {
  content: '→';
  font-size: 0.9em;
}

body.public-body .pro-centered-action {
  margin-top: 44px !important;
}

body.public-body .pro-centered-action .button-secondary {
  background: transparent !important;
  color: var(--p-blue) !important;
  border: 2px solid var(--p-blue) !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: 0 36px !important;
  min-height: 50px !important;
}

body.public-body .pro-centered-action .button-secondary:hover {
  background: var(--p-blue) !important;
  color: #fff !important;
}

/* ================================================================
   PROCESS SECTION — dark background, 3 steps
   ================================================================ */

body.public-body .pro-process-section {
  background: var(--p-navy) !important;
  padding: 92px 0 !important;
}

body.public-body .pro-process-layout {
  grid-template-columns: 0.9fr 1.3fr !important;
  gap: 64px !important;
  align-items: center;
}

body.public-body .pro-process-section .pro-section-head {
  text-align: left !important;
  margin-bottom: 0 !important;
  max-width: none !important;
}

body.public-body .pro-process-section .pro-section-head .eyebrow {
  background: rgba(6, 182, 212, 0.2) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  color: var(--p-teal) !important;
}

body.public-body .pro-process-section .pro-section-head h2 {
  color: #fff !important;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem) !important;
  margin-bottom: 14px !important;
}

body.public-body .pro-process-section .pro-section-head p {
  color: rgba(255, 255, 255, 0.66) !important;
  max-width: none !important;
  margin: 0 !important;
}

body.public-body .pro-process-list {
  gap: 16px !important;
}

body.public-body .pro-process-list article {
  display: grid !important;
  grid-template-columns: 60px 1fr !important;
  gap: 22px !important;
  align-items: start;
  padding: 26px 28px !important;
  border-radius: var(--p-radius) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: none !important;
  transition: background 0.25s, border-color 0.25s;
}

body.public-body .pro-process-list article::before {
  display: none !important;
}

body.public-body .pro-process-list article:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(6, 182, 212, 0.32) !important;
}

body.public-body .pro-process-list article > span {
  font-family: 'Poppins', sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--p-teal) !important;
  line-height: 1;
}

body.public-body .pro-process-list h3 {
  font-family: 'Poppins', sans-serif !important;
  color: #fff !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
}

body.public-body .pro-process-list p {
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ================================================================
   SPLIT SECTION — zone + devis
   ================================================================ */

body.public-body .pro-split-section {
  background: var(--p-light) !important;
  padding: 84px 0 !important;
}

body.public-body .pro-split-grid {
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 24px !important;
  align-items: stretch;
}

body.public-body .pro-feature-panel {
  background: var(--p-navy) !important;
  border-radius: var(--p-radius-lg) !important;
  padding: 48px 52px !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--p-shadow-lg) !important;
}

body.public-body .pro-feature-panel::before {
  display: none !important;
}

body.public-body .pro-feature-panel .eyebrow {
  background: rgba(6, 182, 212, 0.18) !important;
  border-color: rgba(6, 182, 212, 0.3) !important;
  color: var(--p-teal) !important;
}

body.public-body .pro-feature-panel h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem) !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

body.public-body .pro-feature-panel p {
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.95rem !important;
  line-height: 1.72 !important;
  margin: 0 !important;
}

body.public-body .pro-feature-panel .pro-chip-list {
  margin-top: 26px;
  gap: 10px !important;
}

body.public-body .pro-feature-panel .pro-chip-list span {
  background: rgba(6, 182, 212, 0.14) !important;
  border: 1px solid rgba(6, 182, 212, 0.26) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  border-radius: 8px !important;
  font-size: 0.83rem !important;
  padding: 8px 14px !important;
  font-weight: 600 !important;
}

body.public-body .pro-quote-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 16px !important;
  background: linear-gradient(145deg, #1a75e0 0%, var(--p-blue) 50%, #003d82 100%) !important;
  border-radius: var(--p-radius-lg) !important;
  padding: 48px 52px !important;
  color: #fff !important;
  border: none !important;
  box-shadow: var(--p-shadow-lg) !important;
}

body.public-body .pro-quote-panel::before {
  display: none !important;
}

body.public-body .pro-quote-panel > span {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.65) !important;
}

body.public-body .pro-quote-panel h2 {
  font-size: clamp(1.4rem, 2vw, 2rem) !important;
  color: #fff !important;
  line-height: 1.2 !important;
  margin: 0 0 8px !important;
}

body.public-body .pro-quote-panel p {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 0.95rem !important;
  line-height: 1.68 !important;
  margin: 0 !important;
}

body.public-body .pro-quote-panel .button-primary {
  align-self: flex-start !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  color: #fff !important;
  box-shadow: none !important;
  margin-top: 8px;
  border-radius: 10px !important;
}

body.public-body .pro-quote-panel .button-primary:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */

body.public-body .pro-testimonials {
  background: var(--p-white) !important;
  padding: 84px 0 !important;
}

body.public-body .pro-testimonials .pro-section-head {
  text-align: center !important;
  margin-bottom: 48px !important;
}

body.public-body .pro-testimonials .pro-section-head h2 {
  color: var(--p-navy) !important;
}

body.public-body .pro-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

body.public-body .pro-testimonial-grid article {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border-radius: var(--p-radius-lg) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: var(--p-shadow) !important;
  background: var(--p-white) !important;
  padding: 32px !important;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

body.public-body .pro-testimonial-grid article::before {
  content: '"';
  position: absolute !important;
  top: 18px;
  right: 22px;
  font-family: 'Poppins', serif;
  font-size: 5.5rem !important;
  font-weight: 800 !important;
  color: rgba(0, 87, 183, 0.07) !important;
  line-height: 1;
  pointer-events: none;
  background: none !important;
}

body.public-body .pro-testimonial-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--p-shadow-md) !important;
}

body.public-body .pro-testimonial-grid p {
  color: var(--p-text) !important;
  font-size: 0.97rem !important;
  line-height: 1.72 !important;
  font-style: italic;
  flex: 1;
  margin: 0 0 22px !important;
  padding: 0 !important;
}

body.public-body .pro-testimonial-grid strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: var(--p-navy);
  font-weight: 700;
  display: block;
  padding-top: 18px;
  border-top: 1px solid var(--p-border);
}

/* ================================================================
   FINAL CTA SECTION — full-bleed gradient
   ================================================================ */

body.public-body .pro-final-cta {
  background: linear-gradient(130deg, var(--p-navy) 0%, #1c3a5c 50%, var(--p-blue-700) 100%) !important;
  padding: 90px 0 !important;
}

body.public-body .pro-final-card {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 48px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}

body.public-body .pro-final-card::before {
  display: none !important;
}

body.public-body .pro-final-card .eyebrow {
  background: rgba(6, 182, 212, 0.2) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  color: var(--p-teal) !important;
}

body.public-body .pro-final-card h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.7rem) !important;
  color: #fff !important;
  line-height: 1.15 !important;
  margin: 10px 0 0 !important;
  max-width: 640px;
}

body.public-body .pro-final-card .cta-actions {
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 12px !important;
  flex-shrink: 0;
  min-width: 210px;
}

body.public-body .pro-final-card .button-primary {
  min-height: 54px !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
  justify-content: center;
}

body.public-body .pro-final-card .button-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 12px !important;
  min-height: 54px !important;
  font-size: 0.98rem !important;
  font-weight: 600 !important;
  justify-content: center;
}

body.public-body .pro-final-card .button-secondary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.55) !important;
}

/* ================================================================
   PAGE HEROES (services, about)
   ================================================================ */

body.public-body .pro-page-hero {
  background: linear-gradient(135deg, var(--p-navy) 0%, #1e3d5c 60%, var(--p-blue-700) 100%) !important;
  padding: 76px 0 58px !important;
  color: #fff !important;
  position: relative;
  overflow: hidden;
}

body.public-body .pro-page-hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 82% 50%, rgba(6, 182, 212, 0.22) 0%, transparent 58%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) !important;
  background-size: auto, 52px 52px, 52px 52px !important;
  pointer-events: none;
}

body.public-body .pro-page-hero-grid {
  position: relative;
  z-index: 1;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
}

body.public-body .pro-page-hero .eyebrow {
  background: rgba(6, 182, 212, 0.2) !important;
  border-color: rgba(6, 182, 212, 0.35) !important;
  color: var(--p-teal) !important;
}

body.public-body .pro-page-hero h1 {
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(1.9rem, 3vw, 3.1rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  color: #fff !important;
  max-width: 660px !important;
  margin: 12px 0 14px !important;
}

body.public-body .pro-page-hero p {
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.98rem !important;
  max-width: 540px;
  line-height: 1.68 !important;
}

body.public-body .pro-page-hero .button-primary {
  background: rgba(255,255,255,0.14) !important;
  border: 1.5px solid rgba(255,255,255,0.38) !important;
  color: #fff !important;
  box-shadow: none !important;
  flex-shrink: 0;
  white-space: nowrap;
}

body.public-body .pro-page-hero .button-primary:hover {
  background: rgba(255,255,255,0.24) !important;
  border-color: rgba(255,255,255,0.6) !important;
}

/* ================================================================
   SERVICES PAGE — catalogue 3 cols
   ================================================================ */

body.public-body .pro-service-intro {
  background: var(--p-white) !important;
  padding: 60px 0 !important;
}

body.public-body .pro-service-intro .pro-split-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
}

body.public-body .pro-service-intro .pro-feature-panel-light {
  background: var(--p-light) !important;
  color: var(--p-text) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: var(--p-shadow) !important;
}

body.public-body .pro-feature-panel-light h2 {
  color: var(--p-navy) !important;
}

body.public-body .pro-feature-panel-light p,
body.public-body .pro-feature-panel-light .eyebrow {
  color: var(--p-muted) !important;
}

body.public-body .pro-feature-panel-light .eyebrow {
  background: rgba(6,182,212,0.09) !important;
  border-color: rgba(6,182,212,0.18) !important;
  color: var(--p-teal-600) !important;
}

body.public-body .pro-feature-panel-light .pro-chip-list span {
  background: rgba(0,87,183,0.07) !important;
  border: 1px solid rgba(0,87,183,0.12) !important;
  color: var(--p-blue) !important;
  border-radius: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  padding: 8px 14px !important;
}

body.public-body .pro-services-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

body.public-body .pro-service-card-large {
  grid-template-columns: 1fr !important;
  flex-direction: column !important;
}

body.public-body .pro-service-card-large .pro-service-photo {
  grid-column: auto !important;
  height: 200px !important;
}

/* Content wrapper inside large service card (services.php) */
body.public-body .pro-service-body {
  padding: 20px 22px 10px !important;
  flex: 1 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Override generic card padding since .pro-service-body already handles it */
body.public-body .pro-service-body h3 {
  padding: 0 !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: var(--p-navy) !important;
  margin: 0 0 8px !important;
}

body.public-body .pro-service-body p {
  padding: 0 !important;
  color: var(--p-muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
  flex: none !important;
}

body.public-body .pro-service-card-large .pro-option-list {
  padding: 0 22px 14px !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.public-body .pro-option-list span {
  background: rgba(0, 87, 183, 0.06) !important;
  border: 1px solid rgba(0, 87, 183, 0.11) !important;
  color: var(--p-blue) !important;
  font-size: 0.79rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  padding: 6px 10px !important;
}

/* ================================================================
   ABOUT PAGE — values grid
   ================================================================ */

body.public-body .pro-values-section {
  background: var(--p-light) !important;
  padding: 84px 0 !important;
}

body.public-body .pro-values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;
}

body.public-body .pro-values-grid article {
  border-radius: var(--p-radius) !important;
  padding: 30px !important;
  background: var(--p-white) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: var(--p-shadow) !important;
  transition: transform 0.3s, box-shadow 0.3s;
}

body.public-body .pro-values-grid article::before {
  display: none !important;
}

body.public-body .pro-values-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--p-shadow-md) !important;
}

body.public-body .pro-values-grid article > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 12px !important;
  background: rgba(6, 182, 212, 0.12) !important;
  color: var(--p-teal-600) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  margin-bottom: 16px !important;
}

body.public-body .pro-values-grid h3 {
  color: var(--p-navy) !important;
  font-size: 1.05rem !important;
  margin: 0 0 8px !important;
}

body.public-body .pro-values-grid p {
  color: var(--p-muted) !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* ================================================================
   CONTACT PAGE — ct-* classes
   ================================================================ */

body.public-body .ct-hero {
  background: linear-gradient(135deg, var(--p-navy) 0%, #1e3d5c 60%, var(--p-blue-700) 100%) !important;
}

body.public-body .ct-hero-copy h1 {
  font-family: 'Poppins', sans-serif !important;
  color: #fff !important;
  font-size: clamp(2rem, 3.5vw, 3.3rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
}

body.public-body .ct-hero-copy p {
  color: rgba(255,255,255,0.76) !important;
}

body.public-body .ct-hero-copy .eyebrow {
  background: rgba(6,182,212,0.2) !important;
  border-color: rgba(6,182,212,0.35) !important;
  color: var(--p-teal) !important;
}

body.public-body .ct-info-card {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: var(--p-radius) !important;
  transition: background 0.2s;
}

body.public-body .ct-info-card:hover {
  background: rgba(255,255,255,0.16) !important;
}

body.public-body .ct-info-card-accent {
  background: rgba(6,182,212,0.18) !important;
  border-color: rgba(6,182,212,0.3) !important;
}

body.public-body .ct-body {
  background: var(--p-light) !important;
}

body.public-body .ct-sidebar-block {
  background: var(--p-white) !important;
  border-radius: var(--p-radius-lg) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: var(--p-shadow) !important;
}

body.public-body .ct-urgency-block {
  background: linear-gradient(135deg, var(--p-blue), var(--p-blue-700)) !important;
  border: none !important;
  border-radius: var(--p-radius-lg) !important;
}

body.public-body .ct-form-panel {
  border-radius: var(--p-radius-lg) !important;
  box-shadow: var(--p-shadow-md) !important;
  border: 1px solid var(--p-border) !important;
  background: var(--p-white) !important;
}

body.public-body .ct-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #2681e8 0%, var(--p-blue) 55%, var(--p-blue-700) 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  min-height: 52px !important;
  font-weight: 600 !important;
  font-size: 0.98rem !important;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,87,183,0.34) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  font-family: 'Inter', sans-serif;
}

body.public-body .ct-submit-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(0,87,183,0.42) !important;
}

/* ================================================================
   QUOTE REQUEST FORM — Steps 2 & 3
   ================================================================ */

/* ── Stepper navigation ── */
body.public-body .quote-stepper {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  background: var(--p-white) !important;
  border: 1px solid var(--p-border) !important;
  border-radius: var(--p-radius) !important;
  padding: 6px !important;
  box-shadow: var(--p-shadow) !important;
  margin-bottom: 0 !important;
}

body.public-body .quote-stepper-item {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  border: none !important;
  background: transparent !important;
  color: var(--p-muted) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
}

body.public-body .quote-stepper-item > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(0, 87, 183, 0.08) !important;
  color: var(--p-muted) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  flex-shrink: 0 !important;
  transition: background 0.2s, color 0.2s !important;
}

body.public-body .quote-stepper-item > strong {
  font-weight: 600 !important;
}

body.public-body .quote-stepper-item.is-active {
  background: rgba(0, 87, 183, 0.07) !important;
  color: var(--p-blue) !important;
}

body.public-body .quote-stepper-item.is-active > span {
  background: var(--p-blue) !important;
  color: #fff !important;
}

body.public-body .quote-stepper-item.is-complete {
  color: var(--p-teal-600) !important;
}

body.public-body .quote-stepper-item.is-complete > span {
  background: var(--p-teal-600) !important;
  color: #fff !important;
  /* checkmark for completed steps */
  font-size: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 14px !important;
}

/* ── Form section card ── */
body.public-body .form-section {
  border-radius: var(--p-radius-lg) !important;
  border: 1px solid var(--p-border) !important;
  box-shadow: var(--p-shadow) !important;
  background: var(--p-white) !important;
  padding: 36px 40px !important;
}

body.public-body .form-section .section-heading.small h2 {
  font-family: 'Poppins', sans-serif !important;
  color: var(--p-navy) !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  margin-bottom: 6px !important;
}

body.public-body .form-section .section-heading.small p {
  color: var(--p-muted) !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
}

/* ── Form labels & inputs ── */
body.public-body .form-section label > span,
body.public-body .deluxe-form-grid label > span {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--p-text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 6px !important;
  display: block !important;
}

body.public-body .form-section input:not([type='checkbox']):not([type='file']),
body.public-body .form-section select,
body.public-body .form-section textarea {
  min-height: 48px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(0, 40, 80, 0.12) !important;
  background: #fafcff !important;
  color: var(--p-navy) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.92rem !important;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

body.public-body .form-section input:not([type='checkbox']):not([type='file']):focus,
body.public-body .form-section select:focus,
body.public-body .form-section textarea:focus {
  outline: none !important;
  border-color: var(--p-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.12) !important;
  background: #fff !important;
}

body.public-body .form-section input::placeholder,
body.public-body .form-section textarea::placeholder {
  color: rgba(98, 121, 138, 0.65) !important;
}

body.public-body .form-section textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

/* ── Check-line: styled checkbox card ── */
body.public-body .check-line {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px 20px !important;
  border-radius: 12px !important;
  border: 1.5px solid var(--p-border) !important;
  background: #fafcff !important;
  cursor: pointer !important;
  transition: border-color 0.2s, background 0.2s !important;
  grid-template-columns: none !important;
}

body.public-body .check-line:hover {
  border-color: rgba(0, 87, 183, 0.25) !important;
  background: rgba(0, 87, 183, 0.03) !important;
}

body.public-body .check-line:has(input:checked) {
  border-color: var(--p-blue) !important;
  background: rgba(0, 87, 183, 0.05) !important;
}

body.public-body .check-line input[type='checkbox'] {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  border-radius: 6px !important;
  border: 2px solid rgba(0, 87, 183, 0.3) !important;
  background: #fff !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  position: relative !important;
  padding: 0 !important;
  box-shadow: none !important;
  accent-color: unset !important;
  display: grid !important;
  place-items: center !important;
  transition: border-color 0.2s, background 0.2s !important;
}

body.public-body .check-line input[type='checkbox']::after {
  content: '' !important;
  width: 10px !important;
  height: 6px !important;
  border-left: 2.5px solid #fff !important;
  border-bottom: 2.5px solid #fff !important;
  transform: rotate(-45deg) translateY(-1px) scale(0) !important;
  transition: transform 0.15s ease !important;
  opacity: 1 !important;
}

body.public-body .check-line input[type='checkbox']:checked {
  background: var(--p-blue) !important;
  border-color: var(--p-blue) !important;
}

body.public-body .check-line input[type='checkbox']:checked::after {
  transform: rotate(-45deg) translateY(-1px) scale(1) !important;
}

body.public-body .check-line > span {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: var(--p-text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* ── File input ── */
body.public-body .form-section input[type='file'] {
  min-height: 48px !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  border: 1.5px dashed rgba(0, 87, 183, 0.25) !important;
  background: rgba(0, 87, 183, 0.03) !important;
  color: var(--p-muted) !important;
  font-size: 0.88rem !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

body.public-body .form-section input[type='file']:hover {
  border-color: var(--p-blue) !important;
  background: rgba(0, 87, 183, 0.06) !important;
}

/* ── Step action buttons row ── */
body.public-body .quote-step-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid var(--p-border) !important;
}

body.public-body .quote-step-hint {
  font-size: 0.83rem !important;
  color: var(--p-muted) !important;
  font-style: italic !important;
}

body.public-body .quote-step-actions .button {
  min-height: 46px !important;
  padding: 0 28px !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
}

/* ── Summary card (dark sidebar) ── */
body.public-body .summary-card {
  border-radius: var(--p-radius-lg) !important;
  background: linear-gradient(160deg, var(--p-navy) 0%, #1a3a5c 100%) !important;
  border: none !important;
  box-shadow: var(--p-shadow-lg) !important;
  padding: 28px !important;
}

body.public-body .summary-card .eyebrow {
  background: rgba(6,182,212,0.2) !important;
  border-color: rgba(6,182,212,0.35) !important;
  color: var(--p-teal) !important;
}

body.public-body .summary-card h2 {
  font-family: 'Poppins', sans-serif !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  margin: 8px 0 6px !important;
}

body.public-body .summary-card > p,
body.public-body .quote-summary-head p {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.82rem !important;
}

body.public-body .quote-summary-section strong {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  display: block !important;
  margin-bottom: 8px !important;
  margin-top: 18px !important;
}

body.public-body .total-row strong {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.45rem !important;
  color: var(--p-teal) !important;
}

body.public-body .summary-totals span {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.88rem !important;
}

body.public-body .summary-totals strong {
  color: rgba(255,255,255,0.9) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

/* Context grid: 2 cols with checkboxes in same row */
body.public-body .quote-context-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: start !important;
}

@media (max-width: 640px) {
  body.public-body .quote-stepper-item > strong {
    display: none !important;
  }

  body.public-body .form-section {
    padding: 24px 20px !important;
  }

  body.public-body .quote-context-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ================================================================
   STEP 3 — COORDONNÉES (complete redesign)
   ================================================================ */

body.public-body .s3-form {
  padding: 32px 36px !important;
}

body.public-body .s3-header {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--p-border);
}

body.public-body .s3-header h2 {
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.45rem !important;
  font-weight: 700 !important;
  color: var(--p-navy) !important;
  margin: 6px 0 6px !important;
}

body.public-body .s3-header p {
  font-size: 0.88rem !important;
  color: var(--p-muted) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* ── Group with icon label ── */
body.public-body .s3-group {
  margin-bottom: 28px;
}

body.public-body .s3-group:last-of-type {
  margin-bottom: 0;
}

body.public-body .s3-group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--p-muted);
  margin-bottom: 14px;
}

body.public-body .s3-group-label svg {
  color: var(--p-teal-600);
  flex-shrink: 0;
}

/* ── Contact row: 3 cols ── */
body.public-body .s3-contact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* ── Field ── */
body.public-body .s3-field {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

body.public-body .s3-field > span {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--p-text) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

body.public-body .s3-field > span em {
  color: var(--p-blue);
  font-style: normal;
  margin-left: 2px;
}

body.public-body .s3-field > span small {
  font-weight: 400;
  color: var(--p-muted);
  font-size: 0.75rem;
}

body.public-body .s3-field input[type='text'],
body.public-body .s3-field input[type='email'] {
  height: 42px !important;
  padding: 0 14px !important;
  border-radius: 9px !important;
  border: 1.5px solid rgba(0, 40, 80, 0.13) !important;
  background: #f8fafd !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  color: var(--p-navy) !important;
  box-shadow: none !important;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.public-body .s3-field input[type='text']:focus,
body.public-body .s3-field input[type='email']:focus {
  outline: none !important;
  border-color: var(--p-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1) !important;
  background: #fff !important;
}

body.public-body .s3-field input::placeholder {
  color: rgba(98, 121, 138, 0.5) !important;
  font-size: 0.85rem !important;
}

body.public-body .s3-field textarea {
  padding: 12px 14px !important;
  border-radius: 9px !important;
  border: 1.5px solid rgba(0, 40, 80, 0.13) !important;
  background: #f8fafd !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.88rem !important;
  color: var(--p-navy) !important;
  box-shadow: none !important;
  resize: vertical !important;
  line-height: 1.65 !important;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

body.public-body .s3-field textarea:focus {
  outline: none !important;
  border-color: var(--p-blue) !important;
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1) !important;
  background: #fff !important;
}

body.public-body .s3-field textarea::placeholder {
  color: rgba(98, 121, 138, 0.5) !important;
  font-size: 0.85rem !important;
}

body.public-body .s3-mt {
  margin-top: 14px !important;
}

/* ── Custom dropzone ── */
body.public-body .s3-dropzone {
  display: block !important;
  position: relative !important;
  cursor: pointer !important;
  border-radius: 12px !important;
  border: 2px dashed rgba(0, 87, 183, 0.2) !important;
  background: rgba(0, 87, 183, 0.02) !important;
  transition: border-color 0.2s, background 0.2s !important;
  overflow: hidden !important;
}

body.public-body .s3-dropzone:hover {
  border-color: rgba(0, 87, 183, 0.45) !important;
  background: rgba(0, 87, 183, 0.05) !important;
}

body.public-body .s3-file-hidden {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

body.public-body .s3-dropzone-ui {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 32px 24px !important;
  text-align: center !important;
  pointer-events: none !important;
}

body.public-body .s3-dropzone-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(0, 87, 183, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--p-blue) !important;
  margin-bottom: 6px !important;
}

body.public-body .s3-dropzone-ui strong {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  color: var(--p-text) !important;
}

body.public-body .s3-dropzone-ui span {
  font-size: 0.84rem !important;
  color: var(--p-muted) !important;
}

body.public-body .s3-dropzone-ui span u {
  color: var(--p-blue) !important;
  text-decoration-color: rgba(0, 87, 183, 0.4) !important;
}

body.public-body .s3-dropzone-ui small {
  font-size: 0.76rem !important;
  color: rgba(98, 121, 138, 0.6) !important;
  margin-top: 2px !important;
}

body.public-body .s3-preview {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 10px !important;
}

/* ── Submit button with icon ── */
body.public-body .s3-submit-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  body.public-body .s3-contact-row {
    grid-template-columns: 1fr !important;
  }

  body.public-body .s3-form {
    padding: 24px 20px !important;
  }
}

/* Contact page color overrides */
body.public-body .ct-feature-list li svg {
  color: var(--p-teal-600) !important;
}

body.public-body .ct-feature-list li {
  color: var(--p-text) !important;
}

body.public-body .ct-address-block {
  border-radius: var(--p-radius) !important;
  border-color: var(--p-border) !important;
}

body.public-body .ct-address-block svg {
  color: var(--p-teal-600) !important;
}

body.public-body .ct-address-block span {
  color: var(--p-text) !important;
}

body.public-body .ct-sidebar-block h2 {
  font-family: 'Poppins', sans-serif !important;
  color: var(--p-navy) !important;
  font-size: 1.2rem !important;
}

body.public-body .ct-form-head h2 {
  font-family: 'Poppins', sans-serif !important;
  color: var(--p-navy) !important;
  font-size: 1.6rem !important;
}

body.public-body .ct-urgency-cta {
  background: rgba(255,255,255,0.18) !important;
  border: 1.5px solid rgba(255,255,255,0.38) !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}

body.public-body .ct-urgency-cta:hover {
  background: rgba(255,255,255,0.28) !important;
  box-shadow: none !important;
}

body.public-body .ct-body-grid {
  grid-template-columns: 360px minmax(0, 1fr) !important;
}

/* ================================================================
   FLOAT CALL BUTTON
   ================================================================ */

body.public-body .float-call-btn {
  background: linear-gradient(135deg, var(--p-teal), var(--p-teal-600)) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 28px rgba(6,182,212,0.4) !important;
  transition: transform 0.25s, box-shadow 0.25s;
}

body.public-body .float-call-btn:hover {
  transform: translateY(-3px) scale(1.03) !important;
  box-shadow: 0 14px 38px rgba(6,182,212,0.5) !important;
}

/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */

body.public-body .reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.public-body .reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ================================================================
   FOOTER — pub-footer-* classes (used in updated layout.php)
   ================================================================ */

.pub-footer {
  background: var(--p-navy, #0d1f2d);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.82);
  font-family: 'Inter', 'Manrope', sans-serif;
}

.pub-footer-inner {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
}

.pub-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 52px;
  padding-bottom: 52px;
}

.pub-footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pub-footer-brand-wrap img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  padding: 6px;
}

.pub-footer-brand-wrap strong {
  display: block;
  font-family: 'Poppins', 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.pub-footer-brand-wrap span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

.pub-footer-tagline {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.pub-footer-col h4 {
  margin: 0 0 18px;
  font-family: 'Inter', 'Manrope', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.pub-footer-col a,
.pub-footer-col p {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0;
}

.pub-footer-col a:hover {
  color: #06b6d4;
}

.pub-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */

@media (max-width: 1100px) {
  body.public-body .container {
    width: min(1400px, calc(100% - 32px));
  }

  body.public-body .pro-services-grid,
  body.public-body .pro-services-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.public-body .pro-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .pub-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  body.public-body .pro-hero-grid {
    grid-template-columns: 1fr !important;
    padding: 80px 24px 64px !important;
  }

  body.public-body .pro-hero-contact {
    display: none !important;
  }

  body.public-body .pro-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.public-body .pro-process-layout {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
  }

  body.public-body .pro-process-section .pro-section-head {
    text-align: center !important;
  }

  body.public-body .pro-split-grid {
    grid-template-columns: 1fr !important;
  }

  body.public-body .pro-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.public-body .pro-page-hero-grid {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 22px !important;
  }

  body.public-body .pro-final-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  body.public-body .pro-final-card .cta-actions {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  body.public-body .container {
    width: min(1400px, calc(100% - 24px));
  }

  body.public-body .pro-hero-grid {
    padding: 72px 16px 56px !important;
  }

  body.public-body .pro-hero-copy h1 {
    font-size: 2.1rem !important;
  }

  body.public-body .pro-hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  body.public-body .pro-hero-actions .button {
    width: 100% !important;
  }

  body.public-body .pro-services-grid,
  body.public-body .pro-services-grid-wide {
    grid-template-columns: 1fr !important;
  }

  body.public-body .pro-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  body.public-body .pro-values-grid {
    grid-template-columns: 1fr !important;
  }

  body.public-body .pro-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.public-body .pro-feature-panel,
  body.public-body .pro-quote-panel {
    padding: 32px 26px !important;
  }

  body.public-body .pro-final-card .cta-actions {
    flex-direction: column !important;
  }

  .pub-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pub-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  body.public-body .pro-service-intro .pro-split-grid {
    grid-template-columns: 1fr !important;
  }
}
