/*
Theme Name: Prolific Dynamics
Theme URI: https://prolificdynamics.com/
Author: Prolific Dynamics
Description: Custom WordPress theme for Prolific Dynamics — consulting for I/DD human services organizations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
Text Domain: prolific-dynamics
*/

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ========================================================================== */

:root {
  /* Colors - Executive Palette */
  --pd-color-navy: #1E3A5F;
  --pd-color-navy-deep: #0F172A;
  --pd-color-primary: #1E6DAD;
  --pd-color-primary-dark: #164E85;
  --pd-color-primary-light: #F0F9FF;
  --pd-color-white: #ffffff;
  --pd-color-text: #334155;
  --pd-color-text-muted: #64748B;
  --pd-color-bg: #ffffff;
  --pd-color-bg-alt: #F8FAFC;
  --pd-color-border: #E2E8F0;
  --pd-color-error: #BE123C;
  --pd-color-success: #059669;

  /* Typography */
  --pd-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --pd-font-display: 'Playfair Display', serif;

  --pd-text-xs: 0.75rem;
  --pd-text-sm: 0.875rem;
  --pd-text-base: 1rem;
  --pd-text-lg: 1.125rem;
  --pd-text-xl: 1.25rem;
  --pd-text-2xl: 1.5rem;
  --pd-text-3xl: 1.875rem;
  --pd-text-4xl: 2.5rem;
  --pd-text-5xl: 3.5rem;
  --pd-text-6xl: 4.5rem;

  --pd-weight-normal: 400;
  --pd-weight-medium: 500;
  --pd-weight-semibold: 600;
  --pd-weight-bold: 700;
  --pd-weight-black: 900;

  --pd-leading-tight: 1.15;
  --pd-leading-snug: 1.3;
  --pd-leading-normal: 1.6;
  --pd-leading-relaxed: 1.75;

  --pd-tracking-wide: 0.02em;
  --pd-tracking-wider: 0.05em;

  /* Spacing - Condensed for Authority */
  --pd-space-1: 0.25rem;
  --pd-space-2: 0.5rem;
  --pd-space-3: 0.75rem;
  --pd-space-4: 1rem;
  --pd-space-5: 1.25rem;
  --pd-space-6: 1.5rem;
  --pd-space-8: 2rem;
  --pd-space-10: 2.5rem;
  --pd-space-12: 3rem;
  --pd-space-16: 4rem;
  --pd-space-20: 5rem;
  --pd-space-24: 6rem;

  /* Shadows - Sophisticated Depth */
  --pd-shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --pd-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --pd-shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --pd-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);

  /* Border Radius - Architectural Sharpness */
  --pd-radius-sm: 4px;
  --pd-radius-md: 8px;
  --pd-radius-lg: 12px;
  --pd-radius-xl: 16px;
  --pd-radius-full: 9999px;

  /* Z-index */
  --pd-z-dropdown: 100;
  --pd-z-sticky: 1000;
  --pd-z-modal: 2000;

  /* Layout */
  --pd-container-max: 1240px;
  --pd-container-pad: var(--pd-space-6);
}

/* ==========================================================================
   2. CSS RESET
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-base);
  color: var(--pd-color-text);
  background-color: var(--pd-color-bg);
  line-height: var(--pd-leading-normal);
  -webkit-font-smoothing: antialiased;
  letter-spacing: var(--pd-tracking-wide);
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--pd-color-primary);
  text-decoration: none;
  transition: color var(--pd-transition-fast);
}

a:hover {
  color: var(--pd-color-primary-dark);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--pd-font-display);
  font-weight: var(--pd-weight-bold);
  line-height: var(--pd-leading-tight);
  color: var(--pd-color-navy-deep);
  letter-spacing: -0.01em;
}

p {
  line-height: var(--pd-leading-relaxed);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--pd-color-border);
  border-radius: var(--pd-radius-md);
  font-family: var(--pd-font-sans);
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color var(--pd-transition-fast), box-shadow var(--pd-transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--pd-color-primary);
  box-shadow: 0 0 0 3px var(--pd-color-primary-light);
}

textarea {
  resize: vertical;
}

/* ==========================================================================
   3. ACCESSIBILITY
   ========================================================================== */

:focus-visible {
  outline: 3px solid var(--pd-color-primary);
  outline-offset: 3px;
  border-radius: var(--pd-radius-sm);
}

:focus:not(:focus-visible) {
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pd-skip-link {
  position: absolute;
  top: -100%;
  left: var(--pd-space-4);
  background: var(--pd-color-navy);
  color: var(--pd-color-white);
  padding: var(--pd-space-3) var(--pd-space-6);
  border-radius: 0 0 var(--pd-radius-md) var(--pd-radius-md);
  font-weight: var(--pd-weight-semibold);
  font-size: var(--pd-text-sm);
  text-decoration: none;
  z-index: var(--pd-z-modal);
  transition: top var(--pd-transition-fast);
}

.pd-skip-link:focus {
  top: 0;
  color: var(--pd-color-white);
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */

.pd-container {
  width: 100%;
  max-width: var(--pd-container-max);
  margin-inline: auto;
  padding-inline: var(--pd-container-pad);
}

.pd-section {
  padding-block: clamp(var(--pd-space-12), 10vw, var(--pd-space-20));
}

.pd-section--sm {
  padding-block: clamp(var(--pd-space-8), 5vw, var(--pd-space-12));
}

.pd-section--lg {
  padding-block: clamp(var(--pd-space-16), 12vw, var(--pd-space-24));
}

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

.pd-section--navy {
  background-color: var(--pd-color-navy);
  color: var(--pd-color-white);
}

.pd-section--deep {
  background-color: var(--pd-color-navy-deep);
  color: var(--pd-color-white);
}

.pd-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-8);
}

.pd-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-8);
}

.pd-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-6);
}

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

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

@media (min-width: 768px) {
  :root {
    --pd-container-pad: var(--pd-space-8);
  }

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

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

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

/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */

.pd-eyebrow {
  display: inline-block;
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-semibold);
  letter-spacing: var(--pd-tracking-wider);
  text-transform: uppercase;
  color: var(--pd-color-primary);
  margin-bottom: var(--pd-space-3);
}

.pd-section--navy .pd-eyebrow,
.pd-section--deep .pd-eyebrow {
  color: rgba(255, 255, 255, .7);
}

.pd-section-heading {
  font-size: clamp(var(--pd-text-2xl), 4vw, var(--pd-text-4xl));
  margin-bottom: var(--pd-space-4);
}

.pd-section-subtext {
  font-size: var(--pd-text-lg);
  color: var(--pd-color-text-muted);
  max-width: 60ch;
  line-height: var(--pd-leading-relaxed);
}

.pd-section--navy .pd-section-heading,
.pd-section--deep .pd-section-heading {
  color: var(--pd-color-white);
}

.pd-section--navy .pd-section-subtext,
.pd-section--deep .pd-section-subtext {
  color: rgba(255, 255, 255, .75);
}

.pd-section-header {
  margin-bottom: var(--pd-space-16);
}

.pd-section-header--center {
  text-align: center;
}

.pd-section-header--center .pd-section-subtext {
  margin-inline: auto;
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--pd-space-2);
  padding: var(--pd-space-3) var(--pd-space-8);
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-sm);
  font-weight: var(--pd-weight-bold);
  border-radius: var(--pd-radius-md);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  letter-spacing: var(--pd-tracking-wider);
  text-transform: uppercase;
}

.pd-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--pd-shadow-md);
}

.pd-btn:active {
  transform: translateY(0);
}

.pd-btn--primary {
  background-color: var(--pd-color-primary);
  color: var(--pd-color-white);
}

.pd-btn--primary:hover {
  background-color: var(--pd-color-white);
  color: var(--pd-color-navy-deep);
}

.pd-btn--secondary {
  background-color: var(--pd-color-navy-deep);
  color: var(--pd-color-white);
}

.pd-btn--secondary:hover {
  opacity: 0.9;
}

.pd-btn--outline {
  background-color: transparent;
  color: var(--pd-color-navy-deep);
  border: 1.5px solid var(--pd-color-navy-deep);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-btn--outline:hover {
  background-color: var(--pd-color-navy-deep);
  color: var(--pd-color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.pd-btn--outline-white {
  background-color: transparent;
  color: var(--pd-color-white);
  border: 1.5px solid var(--pd-color-white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-btn--outline-white:hover {
  background-color: var(--pd-color-white);
  color: var(--pd-color-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

.pd-btn--ghost {
  color: var(--pd-color-primary);
  padding: 0;
  border: none;
  background: none;
  text-transform: none;
  letter-spacing: normal;
}

.pd-btn--ghost::after {
  content: '→';
  margin-left: var(--pd-space-2);
  transition: transform 0.3s ease;
}

.pd-btn--ghost:hover {
  color: var(--pd-color-primary-dark);
  background: none;
  box-shadow: none;
  transform: none;
}

.pd-btn--ghost:hover::after {
  transform: translateX(4px);
}

.pd-btn--lg {
  padding: var(--pd-space-4) var(--pd-space-10);
  font-size: var(--pd-text-base);
}

/* ==========================================================================
   7. ANIMATIONS
   ========================================================================== */

[data-animate] {
  opacity: 0;
  transition: opacity var(--pd-transition-slow),
    transform var(--pd-transition-slow);
}

[data-animate="fade-up"] {
  transform: translateY(24px);
}

[data-animate="fade-right"] {
  transform: translateX(-24px);
}

[data-animate="fade-left"] {
  transform: translateX(24px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
[data-animate-stagger]>* {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--pd-transition-slow),
    transform var(--pd-transition-slow);
}

[data-animate-stagger].is-visible>* {
  opacity: 1;
  transform: none;
}

[data-animate-stagger].is-visible>*:nth-child(1) {
  transition-delay: 0ms;
}

[data-animate-stagger].is-visible>*:nth-child(2) {
  transition-delay: 100ms;
}

[data-animate-stagger].is-visible>*:nth-child(3) {
  transition-delay: 200ms;
}

[data-animate-stagger].is-visible>*:nth-child(4) {
  transition-delay: 300ms;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {

  [data-animate],
  [data-animate-stagger]>* {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   8. HEADER
   ========================================================================== */

.pd-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: var(--pd-z-sticky);
  background: linear-gradient(to bottom, #ffffff, #fcfdfe);
  border-bottom: 2px solid var(--pd-color-border);
  box-shadow: 0 2px 15px rgba(15, 23, 42, 0.04);
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s ease,
    box-shadow 0.4s ease;
  padding: var(--pd-space-5) 0;
}

.pd-header.is-scrolled {
  padding: var(--pd-space-2) 0;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.pd-header__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--pd-space-6);
  padding: 0 var(--pd-space-6);
}

/* Logo */
.pd-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.pd-header__logo-img {
  height: 90px;
  width: auto;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left center;
}

.is-scrolled .pd-header__logo-img {
  height: 64px;
}

/* Center Navigation */
.pd-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pd-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--pd-space-2);
}

.pd-header__menu a {
  display: inline-block;
  padding: var(--pd-space-3) var(--pd-space-5);
  font-family: var(--pd-font-sans);
  font-size: 0.85rem;
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-navy-deep);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  letter-spacing: var(--pd-tracking-wider);
  text-transform: uppercase;
}

.pd-header__menu a::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: var(--pd-space-5);
  right: var(--pd-space-5);
  height: 1.5px;
  background: var(--pd-color-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-header__menu a:hover {
  color: var(--pd-color-primary);
}

.pd-header__menu a:hover::after,
.pd-header__menu a.current-menu-item::after,
.pd-header__menu a.current_page_item::after,
.pd-header__menu a.current-page-ancestor::after {
  transform: scaleX(1);
}

.pd-header__menu a.current-menu-item,
.pd-header__menu a.current_page_item,
.pd-header__menu a.current-page-ancestor {
  color: var(--pd-color-primary);
}

/* Meta Section (Right) */
.pd-header__meta {
  display: flex;
  align-items: center;
  gap: var(--pd-space-6);
  flex-shrink: 0;
}

.pd-header__socials {
  display: flex;
  gap: var(--pd-space-4);
  align-items: center;
}

.pd-header__social-link {
  color: var(--pd-color-navy-deep);
  opacity: 0.6;
  transition: all 0.3s ease;
  display: flex;
}

.pd-header__social-link:hover {
  color: var(--pd-color-primary);
  opacity: 1;
  transform: translateY(-2px);
}

.pd-header__social-link svg {
  width: 18px;
  height: 18px;
}

.pd-header__phone {
  font-family: var(--pd-font-sans);
  font-size: 0.8rem;
  color: var(--pd-color-white);
  background-color: var(--pd-color-navy-deep);
  text-decoration: none;
  font-weight: var(--pd-weight-bold);
  padding: 0.75rem var(--pd-space-8);
  border: none;
  border-radius: var(--pd-radius-full);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  white-space: nowrap;
}

.pd-header__phone strong {
  font-weight: var(--pd-weight-bold);
}

.pd-header__phone:hover {
  background-color: var(--pd-color-primary);
  color: var(--pd-color-white) !important;
  box-shadow: 0 8px 24px rgba(30, 109, 173, 0.35);
  transform: translateY(-2px);
}

/* Mobile Toggle */
.pd-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 35px;
  height: 35px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.pd-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--pd-color-navy-deep);
  transition: 0.3s;
  border-radius: 2px;
}

.pd-header__hamburger[aria-expanded="true"] span {
  background-color: var(--pd-color-white);
}

/* Hamburger Active Animation */
.pd-header__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pd-header__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.pd-header__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Drawer */
.pd-header__mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--pd-color-navy-deep);
  opacity: 0.98;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--pd-transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pd-header__mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.pd-header__mobile-inner {
  padding: var(--pd-space-20) 0;
}

.pd-header__mobile-nav a {
  display: block;
  padding: var(--pd-space-4);
  font-family: var(--pd-font-display);
  font-size: 1.75rem;
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-white);
  text-decoration: none;
  transition: color var(--pd-transition-fast);
}

.pd-header__mobile-nav a:hover {
  color: var(--pd-color-primary);
}

.pd-header__mobile-footer {
  margin-top: var(--pd-space-10);
}

@media (min-width: 1024px) {
  .pd-header__hamburger {
    display: none;
  }
}

body {
  padding-top: 130px;
}

.pd-header.is-scrolled+body {
  padding-top: 130px;
}

/* ==========================================================================
   9. HERO SECTION (CAROUSEL)
   ========================================================================== */

.pd-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 850px;
  background-color: var(--pd-color-navy-deep);
  overflow: hidden;
  margin-top: 0;
}

.pd-hero .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.pd-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Dark overlay removed per user request for a brighter hero */

.pd-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  padding: 0 var(--pd-space-6);
}

.pd-hero__actions {
  display: flex;
  justify-content: center;
  gap: var(--pd-space-4);
}

.swiper-slide-active .pd-hero__content {
  opacity: 1;
  transform: translateY(0);
}

.pd-hero__eyebrow {
  display: inline-block;
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-sm);
  font-weight: var(--pd-weight-bold);
  letter-spacing: var(--pd-tracking-wider);
  text-transform: uppercase;
  color: var(--pd-color-primary);
  margin-bottom: var(--pd-space-6);
}

.pd-hero__headline {
  font-family: var(--pd-font-display);
  font-size: clamp(var(--pd-text-3xl), 8vw, var(--pd-text-6xl));
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-white);
  line-height: var(--pd-leading-tight);
  margin-bottom: var(--pd-space-8);
  letter-spacing: -0.02em;
}

.pd-hero__subtext {
  font-family: var(--pd-font-sans);
  font-size: clamp(var(--pd-text-base), 2.5vw, var(--pd-text-xl));
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--pd-leading-normal);
  margin-bottom: var(--pd-space-12);
  max-width: 50ch;
  margin-inline: auto;
}

/* Swiper Overrides */
.pd-hero .swiper-pagination-bullet {
  background: var(--pd-color-white);
  opacity: 0.3;
}

.pd-hero .swiper-pagination-bullet-active {
  background: var(--pd-color-primary);
  opacity: 1;
}

.pd-hero .swiper-button-next,
.pd-hero .swiper-button-prev {
  color: var(--pd-color-white);
  padding: var(--pd-space-10);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  z-index: 10;
}

.pd-hero .swiper-button-next:hover,
.pd-hero .swiper-button-prev:hover {
  background: var(--pd-color-primary);
  transform: scale(1.1);
}

.pd-hero .swiper-button-next::after,
.pd-hero .swiper-button-prev::after {
  font-size: 1.25rem;
  font-weight: 800;
}

.pd-hero .swiper-pagination {
  bottom: var(--pd-space-10) !important;
}

.pd-hero__headline span {
  color: var(--pd-color-primary);
  text-transform: uppercase;
}

/* Page hero (inner pages) */
.pd-page-hero {
  background: linear-gradient(135deg, var(--pd-color-navy-deep) 0%, var(--pd-color-navy) 100%);
  padding-top: var(--pd-space-16);
  padding-bottom: var(--pd-space-16);
  color: var(--pd-color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pd-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at top right, rgba(30, 109, 173, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.pd-page-hero__eyebrow {
  display: block;
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-bold);
  letter-spacing: var(--pd-tracking-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin-bottom: var(--pd-space-4);
}

.pd-page-hero__heading {
  font-family: var(--pd-font-display);
  font-size: clamp(var(--pd-text-4xl), 6vw, var(--pd-text-6xl));
  color: var(--pd-color-white);
  margin-bottom: var(--pd-space-6);
  line-height: 1.1;
  max-width: 20ch;
  margin-inline: auto;
}

.pd-page-hero__subtext {
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-lg);
  color: rgba(255, 255, 255, 0.85);
  max-width: 65ch;
  line-height: var(--pd-leading-relaxed);
  margin-inline: auto;
}

/* ==========================================================================
   10. CONTACT PAGE CUSTOM CLASSES
   ========================================================================== */

.pd-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .pd-contact-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: var(--pd-space-20);
  }
}

.pd-contact-info {
  background: var(--pd-color-navy-deep);
  color: var(--pd-color-white);
  padding: var(--pd-space-12);
  border-radius: var(--pd-radius-lg);
  height: 100%;
}

.pd-contact-info__heading {
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-3xl);
  color: var(--pd-color-white);
  margin-bottom: var(--pd-space-8);
}

.pd-contact-method {
  display: flex;
  gap: var(--pd-space-4);
  margin-bottom: var(--pd-space-8);
}

.pd-contact-method svg {
  width: 24px;
  height: 24px;
  color: var(--pd-color-primary);
  flex-shrink: 0;
}

.pd-contact-method__label {
  display: block;
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--pd-space-1);
}

.pd-contact-method__value {
  font-size: var(--pd-text-lg);
  font-weight: var(--pd-weight-semibold);
  color: var(--pd-color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-contact-method__value:hover {
  color: var(--pd-color-primary);
}

.pd-contact-form-wrap {
  background: var(--pd-color-white);
  padding: var(--pd-space-10);
  border-radius: var(--pd-radius-lg);
  border: 1px solid var(--pd-color-border);
  box-shadow: var(--pd-shadow-md);
}

.pd-form-group {
  margin-bottom: var(--pd-space-6);
}

.pd-form-label {
  display: block;
  margin-bottom: var(--pd-space-2);
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-sm);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-navy-deep);
}

.pd-form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid var(--pd-color-border);
  border-radius: var(--pd-radius-md);
  font-family: var(--pd-font-sans);
  font-size: 1rem;
  color: var(--pd-color-navy-deep);
  transition: all 0.3s ease;
}

.pd-form-control:focus {
  outline: none;
  border-color: var(--pd-color-primary);
  box-shadow: 0 0 0 4px rgba(30, 109, 173, 0.1);
}

.pd-contact-submit {
  width: 100%;
  margin-top: var(--pd-space-4);
}

/* ==========================================================================
   10. STATS BAR
   ========================================================================== */

/* ==========================================================================
   10. ACHIEVEMENT BAND (STATS BAR)
   ========================================================================== */

.pd-stats-bar {
  background-color: var(--pd-color-navy-deep);
  padding-block: var(--pd-space-16);
  color: var(--pd-color-white);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-stats-bar .pd-section-heading {
  color: var(--pd-color-white);
  text-align: center;
  margin-bottom: var(--pd-space-10);
  font-size: var(--pd-text-4xl);
}

.pd-stats-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-8);
}

@media (min-width: 1024px) {
  .pd-stats-bar__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.pd-stats-bar__item {
  padding: 0 var(--pd-space-10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

@media (min-width: 1024px) {
  .pd-stats-bar__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80px;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
  }
}

.pd-stats-bar__number {
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-6xl);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-primary);
  line-height: 1;
  margin-bottom: var(--pd-space-3);
  display: block;
}

.pd-stats-bar__label {
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-bold);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--pd-leading-snug);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
  max-width: 25ch;
  margin: 0 auto;
}

/* ==========================================================================
   11. SERVICES GRID
   ========================================================================== */

/* ==========================================================================
   11. SERVICES GRID (GLOW CARD DESIGN)
   ========================================================================== */

.pd-section--alt {
  background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}

.pd-service-card {
  background: var(--pd-color-white);
  border-radius: var(--pd-radius-md);
  padding: var(--pd-space-10);
  border: 1px solid var(--pd-color-border);
  box-shadow: var(--pd-shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pd-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pd-shadow-lg);
  border-color: var(--pd-color-primary-light);
}

.pd-service-card__icon-wrap {
  margin-bottom: var(--pd-space-8);
}

.pd-service-card__icon {
  width: 64px;
  height: 64px;
  background: var(--pd-color-bg-alt);
  border-radius: var(--pd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-color-primary);
  transition: all 0.3s ease;
}

.pd-service-card:hover .pd-service-card__icon {
  background: var(--pd-color-primary);
  color: var(--pd-color-white);
  transform: scale(1.1);
}

.pd-service-card__icon svg {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-service-card:hover .pd-service-card__icon svg {
  transform: rotate(-5deg) scale(1.1);
}

.pd-service-card__title {
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-2xl);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-navy-deep);
  margin-bottom: var(--pd-space-4);
  letter-spacing: -0.01em;
}

.pd-service-card__desc {
  font-family: var(--pd-font-sans);
  font-size: 1rem;
  line-height: var(--pd-leading-normal);
  color: var(--pd-color-text-muted);
  margin-bottom: var(--pd-space-8);
  flex: 1;
}

.pd-service-card__footer {
  padding-top: var(--pd-space-4);
  border-top: 1px solid var(--pd-color-border);
}

.pd-service-card__icon svg {
  width: 28px;
  height: 28px;
}

.pd-service-card__title {
  font-size: var(--pd-text-xl);
  color: var(--pd-color-navy);
}

.pd-service-card__desc {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  line-height: var(--pd-leading-relaxed);
  flex: 1;
}

/* ==========================================================================
   12. MISSION SPLIT SECTION
   ========================================================================== */

.pd-mission-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .pd-mission-split {
    grid-template-columns: 1fr 1fr;
    gap: var(--pd-space-20);
  }
}

.pd-mission-split__image-wrap {
  position: relative;
  border-radius: var(--pd-radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.pd-mission-split__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-mission-split__image-badge {
  position: absolute;
  bottom: var(--pd-space-6);
  left: var(--pd-space-6);
  background-color: var(--pd-color-white);
  border-radius: var(--pd-radius-lg);
  padding: var(--pd-space-4) var(--pd-space-5);
  box-shadow: var(--pd-shadow-lg);
}

.pd-mission-split__badge-number {
  display: block;
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-3xl);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-primary);
  line-height: 1;
}

.pd-mission-split__badge-label {
  display: block;
  font-size: var(--pd-text-xs);
  color: var(--pd-color-text-muted);
  margin-top: var(--pd-space-1);
}

.pd-mission-split__content {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-6);
}

.pd-mission-split__quote {
  font-family: var(--pd-font-display);
  font-size: clamp(var(--pd-text-xl), 3vw, var(--pd-text-3xl));
  color: var(--pd-color-navy);
  font-style: italic;
  line-height: var(--pd-leading-snug);
  position: relative;
  padding-left: var(--pd-space-6);
}

.pd-mission-split__quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 4px;
  background-color: var(--pd-color-primary);
  border-radius: 2px;
}

/* ==========================================================================
   13. TESTIMONIALS
   ========================================================================== */

.pd-testimonial-card {
  background-color: var(--pd-color-white);
  border-radius: var(--pd-radius-xl);
  padding: var(--pd-space-8);
  box-shadow: var(--pd-shadow-md);
  border: 1px solid var(--pd-color-border);
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-6);
  position: relative;
}

.pd-testimonial-card::before {
  content: '\201C';
  font-family: var(--pd-font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--pd-color-primary-light);
  position: absolute;
  top: var(--pd-space-4);
  right: var(--pd-space-6);
  user-select: none;
}

.pd-testimonial-card__quote {
  font-size: var(--pd-text-base);
  color: var(--pd-color-text-muted);
  line-height: var(--pd-leading-relaxed);
  position: relative;
  z-index: 1;
  flex: 1;
}

.pd-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--pd-space-4);
  border-top: 1px solid var(--pd-color-border);
  padding-top: var(--pd-space-5);
}

.pd-testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--pd-radius-full);
  background-color: var(--pd-color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--pd-text-xl);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-primary);
  flex-shrink: 0;
}

.pd-testimonial-card__name {
  font-size: var(--pd-text-base);
  font-weight: var(--pd-weight-semibold);
  color: var(--pd-color-navy);
  font-family: var(--pd-font-sans);
  display: block;
}

.pd-testimonial-card__title {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  display: block;
}

/* Full testimonials (testimonials page) */
.pd-testimonial-full {
  background-color: var(--pd-color-white);
  border-radius: var(--pd-radius-2xl);
  padding: var(--pd-space-12);
  box-shadow: var(--pd-shadow-lg);
  border-left: 6px solid var(--pd-color-primary);
}

/* ==========================================================================
   14. PARTNERS BAR
   ========================================================================== */

.pd-partners {
  background-color: var(--pd-color-bg-alt);
  padding-block: var(--pd-space-16);
  border-top: 1px solid var(--pd-color-border);
  border-bottom: 1px solid var(--pd-color-border);
}

.pd-partners__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pd-space-10);
}

.pd-partners__label {
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
  color: var(--pd-color-text-muted);
  opacity: 0.8;
  margin: 0;
}

.pd-partners__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--pd-space-8) var(--pd-space-16);
}

.pd-partners__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.pd-partners__item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.pd-partners__name {
  font-family: var(--pd-font-sans);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-navy-deep);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.pd-partners__detail {
  font-size: 0.7rem;
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
  margin-top: 2px;
}

/* ==========================================================================
   15. NEWS / BLOG CARDS
   ========================================================================== */

.pd-news-card {
  background-color: var(--pd-color-white);
  border-radius: var(--pd-radius-xl);
  overflow: hidden;
  border: 1px solid var(--pd-color-border);
  box-shadow: var(--pd-shadow-sm);
  transition: box-shadow var(--pd-transition-normal), transform var(--pd-transition-normal);
  display: flex;
  flex-direction: column;
}

.pd-news-card:hover {
  box-shadow: var(--pd-shadow-lg);
  transform: translateY(-3px);
}

.pd-news-card__thumb {
  aspect-ratio: 16/9;
  background-color: var(--pd-color-primary-light);
  overflow: hidden;
}

.pd-news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pd-transition-slow);
}

.pd-news-card:hover .pd-news-card__thumb img {
  transform: scale(1.05);
}

.pd-news-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pd-color-primary-light), var(--pd-color-bg-alt));
}

.pd-news-card__body {
  padding: var(--pd-space-6);
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-3);
  flex: 1;
}

.pd-news-card__meta {
  display: flex;
  gap: var(--pd-space-3);
  font-size: var(--pd-text-xs);
  color: var(--pd-color-text-muted);
  font-weight: var(--pd-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wide);
}

.pd-news-card__title {
  font-size: var(--pd-text-lg);
  font-family: var(--pd-font-display);
  color: var(--pd-color-navy);
  line-height: var(--pd-leading-snug);
  transition: color var(--pd-transition-fast);
}

.pd-news-card:hover .pd-news-card__title {
  color: var(--pd-color-primary);
}

.pd-news-card__excerpt {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  line-height: var(--pd-leading-relaxed);
  flex: 1;
}

/* ==========================================================================
   16. CTA BAND
   ========================================================================== */

.pd-cta-band {
  background: var(--pd-color-navy-deep);
  padding-block: var(--pd-space-20);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pd-cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30, 109, 173, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pd-cta-band__content {
  position: relative;
  z-index: 2;
}

.pd-cta-band__heading {
  font-family: var(--pd-font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--pd-color-white);
  margin-bottom: var(--pd-space-6);
  max-width: 900px;
  margin-inline: auto;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pd-cta-band__subtext {
  font-family: var(--pd-font-sans);
  font-size: clamp(var(--pd-text-base), 2vw, var(--pd-text-lg));
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--pd-space-12);
  max-width: 55ch;
  margin-inline: auto;
  line-height: var(--pd-leading-normal);
}

.pd-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--pd-space-4);
}

/* ==========================================================================
   17. ABOUT PAGE
   ========================================================================== */

.pd-bio-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .pd-bio-section {
    grid-template-columns: 320px 1fr;
    gap: var(--pd-space-16);
  }
}

.pd-bio-portrait {
  border-radius: var(--pd-radius-2xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 320px;
  box-shadow: var(--pd-shadow-xl);
}

.pd-bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-bio-content {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-6);
}

.pd-bio-name {
  font-family: var(--pd-font-display);
  font-size: clamp(var(--pd-text-2xl), 3vw, var(--pd-text-4xl));
  color: var(--pd-color-navy);
}

.pd-bio-title {
  font-size: var(--pd-text-base);
  font-weight: var(--pd-weight-medium);
  color: var(--pd-color-primary);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wide);
}

/* ==========================================================================
   12. LEADERSHIP OVERVIEW (MISSION & VISION)
   ========================================================================== */

.pd-mission-vision__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-8);
  padding: var(--pd-space-12) 0;
}

@media (min-width: 1024px) {
  .pd-mission-vision__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pd-mission-card {
  background: var(--pd-color-white);
  padding: var(--pd-space-12);
  border-radius: var(--pd-radius-md);
  border: 1px solid var(--pd-color-border);
  box-shadow: var(--pd-shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pd-mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pd-shadow-md);
  border-color: var(--pd-color-primary-light);
}

.pd-mission-card .pd-eyebrow {
  display: block;
  margin-bottom: var(--pd-space-6);
  color: var(--pd-color-primary);
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
}

.pd-mission-card__heading {
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-3xl);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-navy-deep);
  margin-bottom: var(--pd-space-5);
  line-height: var(--pd-leading-tight);
}

.pd-mission-card__content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--pd-color-text-muted);
  margin: 0;
}

.pd-partner-card {
  background: var(--pd-color-white);
  border-radius: var(--pd-radius-xl);
  padding: var(--pd-space-6);
  border: 1px solid var(--pd-color-border);
  box-shadow: var(--pd-shadow-sm);
}

.pd-partner-card__name {
  font-size: var(--pd-text-lg);
  color: var(--pd-color-navy);
  margin-bottom: var(--pd-space-2);
  font-family: var(--pd-font-sans);
}

.pd-partner-card__role {
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-semibold);
  color: var(--pd-color-primary);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wide);
  margin-bottom: var(--pd-space-3);
  display: block;
}

.pd-partner-card__desc {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  line-height: var(--pd-leading-relaxed);
}

/* ==========================================================================
   18. SERVICES PAGE
   ========================================================================== */

.pd-service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-8);
  align-items: start;
  padding-block: var(--pd-space-12);
  border-bottom: 1px solid var(--pd-color-border);
}

.pd-service-detail:last-of-type {
  border-bottom: none;
}

@media (min-width: 768px) {
  .pd-service-detail {
    grid-template-columns: 80px 1fr;
    gap: var(--pd-space-8);
  }
}

.pd-service-detail__icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--pd-color-primary-light);
  border-radius: var(--pd-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-color-primary);
  flex-shrink: 0;
}

.pd-service-detail__icon-wrap svg {
  width: 36px;
  height: 36px;
}

.pd-service-detail__title {
  font-size: clamp(var(--pd-text-xl), 3vw, var(--pd-text-3xl));
  color: var(--pd-color-navy);
  margin-bottom: var(--pd-space-4);
}

.pd-service-detail__desc {
  color: var(--pd-color-text-muted);
  line-height: var(--pd-leading-relaxed);
  font-size: var(--pd-text-base);
}

.pd-stat-callout {
  background: linear-gradient(135deg, var(--pd-color-primary), #0a5f8f);
  border-radius: var(--pd-radius-2xl);
  padding: var(--pd-space-12);
  text-align: center;
  color: var(--pd-color-white);
}

.pd-stat-callout__number {
  font-family: var(--pd-font-display);
  font-size: clamp(var(--pd-text-4xl), 6vw, 5rem);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-white);
  display: block;
  line-height: 1;
  margin-bottom: var(--pd-space-3);
}

.pd-stat-callout__desc {
  font-size: var(--pd-text-lg);
  color: rgba(255, 255, 255, .85);
  max-width: 50ch;
  margin-inline: auto;
}

/* ==========================================================================
   19. CONTACT PAGE
   ========================================================================== */

.pd-contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .pd-contact-layout {
    grid-template-columns: 2fr 3fr;
    gap: var(--pd-space-16);
  }
}

.pd-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-6);
}

.pd-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--pd-space-4);
}

.pd-contact-info__icon-wrap {
  width: 48px;
  height: 48px;
  background-color: var(--pd-color-primary-light);
  border-radius: var(--pd-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pd-color-primary);
}

.pd-contact-info__icon-wrap svg {
  width: 22px;
  height: 22px;
}

.pd-contact-info__label {
  display: block;
  font-size: var(--pd-text-xs);
  font-weight: var(--pd-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wide);
  color: var(--pd-color-text-muted);
  margin-bottom: var(--pd-space-1);
}

.pd-contact-info__value {
  display: block;
  font-size: var(--pd-text-base);
  color: var(--pd-color-navy);
  font-weight: var(--pd-weight-medium);
  text-decoration: none;
}

a.pd-contact-info__value:hover {
  color: var(--pd-color-primary);
}

.pd-contact-info__trust {
  background: var(--pd-color-bg-alt);
  border-radius: var(--pd-radius-lg);
  padding: var(--pd-space-6);
  border-left: 4px solid var(--pd-color-primary);
}

.pd-contact-info__trust-heading {
  font-size: var(--pd-text-base);
  font-weight: var(--pd-weight-semibold);
  color: var(--pd-color-navy);
  margin-bottom: var(--pd-space-3);
  font-family: var(--pd-font-sans);
}

.pd-contact-info__trust-list {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-2);
}

.pd-contact-info__trust-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--pd-space-2);
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
}

.pd-contact-info__trust-list li::before {
  content: '✓';
  color: var(--pd-color-primary);
  font-weight: var(--pd-weight-bold);
  flex-shrink: 0;
}

.pd-contact-form-card {
  background: var(--pd-color-white);
  border-radius: var(--pd-radius-2xl);
  padding: var(--pd-space-10);
  box-shadow: var(--pd-shadow-xl);
  border: 1px solid var(--pd-color-border);
}

.pd-contact-form-card__heading {
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-2xl);
  color: var(--pd-color-navy);
  margin-bottom: var(--pd-space-2);
}

.pd-contact-form-card__subtext {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  margin-bottom: var(--pd-space-6);
}

/* CF7 form styles */
.wpcf7 {
  margin: 0;
}

.wpcf7 form {
  margin: 0;
}

.wpcf7-spinner {
  display: none !important;
}

.pd-cf7-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-5);
}

.pd-cf7-row {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-5);
}

@media (min-width: 640px) {
  .pd-cf7-row--split {
    flex-direction: row;
  }

  .pd-cf7-row--split .pd-cf7-group {
    flex: 1;
  }
}

.pd-cf7-group {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-2);
}

.pd-cf7-label {
  font-size: var(--pd-text-sm);
  font-weight: var(--pd-weight-semibold);
  color: var(--pd-color-gray-800);
}

.pd-cf7-group input[type="text"],
.pd-cf7-group input[type="email"],
.pd-cf7-group input[type="tel"],
.pd-cf7-group select,
.pd-cf7-group textarea {
  width: 100%;
  padding: var(--pd-space-3) var(--pd-space-4);
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-base);
  color: var(--pd-color-text);
  background: var(--pd-color-white);
  border: 1.5px solid var(--pd-color-border);
  border-radius: var(--pd-radius-md);
  transition: border-color var(--pd-transition-fast), box-shadow var(--pd-transition-fast);
  appearance: none;
}

.pd-cf7-group input:focus,
.pd-cf7-group select:focus,
.pd-cf7-group textarea:focus {
  outline: none;
  border-color: var(--pd-color-primary);
  box-shadow: 0 0 0 3px rgba(0, 124, 186, .15);
}

.pd-cf7-group textarea {
  resize: vertical;
  min-height: 130px;
}

.wpcf7-not-valid {
  border-color: var(--pd-color-error) !important;
}

.wpcf7-not-valid-tip {
  font-size: var(--pd-text-xs);
  color: var(--pd-color-error);
  margin-top: var(--pd-space-1);
}

.wpcf7-response-output {
  padding: var(--pd-space-4) !important;
  border-radius: var(--pd-radius-md) !important;
  font-size: var(--pd-text-sm) !important;
  border: none !important;
  margin-top: var(--pd-space-4) !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #dcfce7;
  color: var(--pd-color-success);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
  background: #fef2f2;
  color: var(--pd-color-error);
}

/* ==========================================================================
   20. FOOTER
   ========================================================================== */

.pd-footer {
  background-color: var(--pd-color-bg-alt);
  padding-block: var(--pd-space-8);
  border-top: 1px solid var(--pd-color-border);
}

.pd-footer__copyright {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  text-align: center;
  margin: 0;
}

/* WPForms contact form styling */
.wpforms-container {
  margin-top: var(--pd-space-8);
}

.wpforms-form .wpforms-field-container {
  margin-bottom: var(--pd-space-6);
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea {
  width: 100%;
  padding: var(--pd-space-3) var(--pd-space-4);
  border: 1px solid var(--pd-color-border);
  border-radius: var(--pd-radius-md);
  font-size: var(--pd-text-base);
  font-family: var(--pd-font-sans);
  transition: border-color var(--pd-transition-fast);
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form textarea:focus {
  outline: none;
  border-color: var(--pd-color-primary);
  box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.wpforms-form label {
  display: block;
  margin-bottom: var(--pd-space-2);
  font-weight: var(--pd-weight-medium);
  color: var(--pd-color-text);
}

.wpforms-form .wpforms-submit {
  background: var(--pd-color-primary);
  color: var(--pd-color-white);
  border: none;
  padding: var(--pd-space-3) var(--pd-space-8);
  border-radius: var(--pd-radius-md);
  font-size: var(--pd-text-base);
  font-weight: var(--pd-weight-medium);
  cursor: pointer;
  transition: background var(--pd-transition-fast);
}

.wpforms-form .wpforms-submit:hover {
  background: var(--pd-color-primary-dark);
}

/* ==========================================================================
   21. BLOG ARCHIVE & SINGLE POST
   ========================================================================== */

.pd-archive-header {
  margin-bottom: var(--pd-space-12);
}

.pd-post-content {
  max-width: 740px;
  margin-inline: auto;
}

.pd-post-content h2,
.pd-post-content h3 {
  margin-block: var(--pd-space-8) var(--pd-space-4);
}

.pd-post-content p {
  margin-bottom: var(--pd-space-5);
}

.pd-post-content ul,
.pd-post-content ol {
  padding-left: var(--pd-space-6);
  margin-bottom: var(--pd-space-5);
  list-style: revert;
}

.pd-post-content img {
  border-radius: var(--pd-radius-lg);
  margin-block: var(--pd-space-6);
}

.pd-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pd-space-4);
  align-items: center;
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  margin-bottom: var(--pd-space-8);
}

.pd-post-author-bio {
  background: var(--pd-color-bg-alt);
  border-radius: var(--pd-radius-xl);
  padding: var(--pd-space-8);
  margin-top: var(--pd-space-12);
  display: flex;
  gap: var(--pd-space-6);
  align-items: flex-start;
}

/* ==========================================================================
   22. 404 & SEARCH
   ========================================================================== */

.pd-error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--pd-space-20);
}

.pd-error-page__code {
  font-family: var(--pd-font-display);
  font-size: 8rem;
  font-weight: var(--pd-weight-black);
  color: var(--pd-color-primary-light);
  line-height: 1;
  display: block;
  margin-bottom: var(--pd-space-4);
}

/* ==========================================================================
   23. WORDPRESS CORE OVERRIDES
   ========================================================================== */

/* Alignments */
.alignleft {
  float: left;
  margin-right: var(--pd-space-6);
  margin-bottom: var(--pd-space-4);
}

.alignright {
  float: right;
  margin-left: var(--pd-space-6);
  margin-bottom: var(--pd-space-4);
}

.aligncenter {
  margin-inline: auto;
  display: block;
}

/* Captions */
.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: var(--pd-text-sm);
  color: var(--pd-color-text-muted);
  text-align: center;
  margin-top: var(--pd-space-2);
}

/* Pagination */
.pd-pagination {
  display: flex;
  justify-content: center;
  gap: var(--pd-space-2);
  margin-top: var(--pd-space-12);
}

.pd-pagination a,
.pd-pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--pd-radius-md);
  font-size: var(--pd-text-sm);
  font-weight: var(--pd-weight-medium);
  border: 1px solid var(--pd-color-border);
  color: var(--pd-color-text);
  text-decoration: none;
  transition: all var(--pd-transition-fast);
}

.pd-pagination a:hover {
  border-color: var(--pd-color-primary);
  color: var(--pd-color-primary);
}

.pd-pagination .current {
  background: var(--pd-color-primary);
  color: var(--pd-color-white);
  border-color: var(--pd-color-primary);
}

/* ==========================================================================
   24. FOOTER
   ========================================================================== */

.pd-footer {
  background-color: var(--pd-color-navy-deep);
  color: var(--pd-color-white);
  padding-block: var(--pd-space-16) var(--pd-space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pd-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pd-space-12);
  margin-bottom: var(--pd-space-16);
}

@media (min-width: 1024px) {
  .pd-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--pd-space-8);
  }
}

.pd-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-6);
}

.pd-footer__logo-text {
  font-family: var(--pd-font-display);
  font-size: var(--pd-text-3xl);
  font-weight: var(--pd-weight-bold);
  color: var(--pd-color-white);
  letter-spacing: -0.02em;
}

.pd-footer__logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

.pd-footer__tagline {
  font-size: var(--pd-text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--pd-leading-relaxed);
  max-width: 30ch;
}

.pd-footer__socials {
  display: flex;
  gap: var(--pd-space-4);
}

.pd-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--pd-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pd-color-white);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pd-footer__social-link:hover {
  background: var(--pd-color-primary);
  border-color: var(--pd-color-primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 109, 173, 0.3);
}

.pd-footer__social-link svg {
  width: 18px;
  height: 18px;
}

.pd-footer__title {
  font-family: var(--pd-font-sans);
  font-size: var(--pd-text-sm);
  font-weight: var(--pd-weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--pd-tracking-wider);
  color: var(--pd-color-white);
  margin-bottom: var(--pd-space-8);
  position: relative;
  padding-bottom: var(--pd-space-3);
}

.pd-footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--pd-color-primary);
}

.pd-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-3);
}

.pd-footer__list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: var(--pd-text-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.pd-footer__list a:hover {
  color: var(--pd-color-primary);
  transform: translateX(5px);
}

.pd-footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-4);
}

.pd-footer__contact-item {
  display: flex;
  gap: var(--pd-space-3);
  font-size: var(--pd-text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--pd-leading-relaxed);
}

.pd-footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--pd-color-primary);
  margin-top: 3px;
}

.pd-footer__bottom {
  padding-top: var(--pd-space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--pd-space-4);
  text-align: center;
}

@media (min-width: 1024px) {
  .pd-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.pd-footer__copyright {
  font-size: var(--pd-text-xs);
  color: rgba(255, 255, 255, 0.4);
}

.pd-footer__legal {
  display: flex;
  justify-content: center;
  gap: var(--pd-space-6);
}

.pd-footer__legal a {
  font-size: var(--pd-text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pd-footer__legal a:hover {
  color: var(--pd-color-white);
}

/* Global Link Polish */
a {
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}