/*
Theme Name: Precision Clinical Management
Theme URI: https://www.precisionclinicalmanagement.com
Author: Precision Clinical Management LLC
Author URI: https://www.precisionclinicalmanagement.com
Description: Custom WordPress theme for Precision Clinical Management LLC - a Management Services Organization specializing in addiction recovery clinic operations.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pcm
*/

/* ========================================
   CSS CUSTOM PROPERTIES (Brand Book)
   Primary Blue: #174A6A
   Charcoal: #1F2937
   Light Gray: #E5E7EB
   White: #FFFFFF
   Font: Inter
======================================== */

:root {
  --navy: #174A6A;
  --navy-light: #1E5F87;
  --navy-dark: #0F3249;
  --charcoal: #1F2937;
  --charcoal-light: #4B5563;
  --gray-brand: #E5E7EB;
  --gray-brand-dark: #D1D5DB;
  --white: #FFFFFF;
  --muted: #6B7280;
  --border: #E5E7EB;
  --destructive: #DC2626;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background-color: var(--white);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   CONTAINER
======================================== */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 1280px;
  }
}

/* ========================================
   TOP BAR
======================================== */
.top-bar {
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.top-bar a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.top-bar a:hover {
  color: var(--gray-brand);
}

.top-bar .location {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gray-brand);
}

@media (max-width: 639px) {
  .top-bar .location {
    display: none;
  }
}

/* ========================================
   HEADER / NAVIGATION
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo img {
  height: 4rem;
  width: auto;
}

@media (min-width: 640px) {
  .site-logo img {
    height: 5rem;
  }
}

@media (min-width: 1024px) {
  .site-logo img {
    height: 6rem;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
}

.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  color: rgba(31, 41, 55, 0.7);
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--navy);
  background-color: rgba(23, 74, 106, 0.05);
}

.nav-cta {
  margin-left: 0.75rem;
  padding: 0.625rem 1.25rem;
  background-color: var(--navy);
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--navy-light) !important;
  color: var(--white) !important;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
}

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

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1rem;
}

.mobile-nav.open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav {
    display: none !important;
  }
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  color: rgba(31, 41, 55, 0.7);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--navy);
  background-color: rgba(23, 74, 106, 0.05);
}

.mobile-nav .nav-cta-mobile {
  display: block;
  margin-top: 0.5rem;
  padding: 0.75rem;
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  text-align: center;
}

.mobile-nav .nav-cta-mobile:hover {
  background-color: var(--navy-light);
}

/* ========================================
   HERO SECTIONS
======================================== */
.hero {
  position: relative;
  padding: 5rem 0 5rem;
  background-color: var(--navy);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero {
    padding: 7rem 0 7rem;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
}

.hero-label {
  color: var(--gray-brand);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin-top: 0.75rem;
  font-size: 2.25rem;
  color: var(--white);
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero-desc {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: var(--navy-light);
}

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

.btn-white:hover {
  background-color: var(--gray-brand);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   SECTION STYLES
======================================== */
.section {
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
}

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

.section-bg-gray {
  background-color: var(--gray-brand);
}

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

.section-label {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  color: var(--charcoal);
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}

/* ========================================
   TRUST BAR
======================================== */
.trust-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 3rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.trust-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--navy);
}

/* ========================================
   GRID LAYOUTS
======================================== */
.grid-2 {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.grid-2.items-center {
  align-items: center;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

/* ========================================
   CARDS
======================================== */
.card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(23, 74, 106, 0.2);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(23, 74, 106, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon:hover {
  background-color: rgba(23, 74, 106, 0.1);
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.card h3 {
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.card-accent {
  border-left: 4px solid var(--navy);
}

/* ========================================
   STATS BAND
======================================== */
.stats-band {
  position: relative;
  padding: 4rem 0;
  background-color: var(--navy);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 640px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-brand);
}

/* ========================================
   PROCESS STEPS
======================================== */
.process-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

.process-step {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--white);
}

.process-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(23, 74, 106, 0.1);
}

.process-step h3 {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: var(--charcoal);
}

.process-step p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   COMPLIANCE SECTION
======================================== */
.compliance-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.compliance-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  position: relative;
  padding: 5rem 0 6rem;
  background-color: var(--navy);
  overflow: hidden;
}

.cta-section .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem;
  color: var(--white);
}

@media (min-width: 640px) {
  .cta-section h2 {
    font-size: 2.25rem;
  }
}

.cta-section p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-section .btn {
  margin-top: 2rem;
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background-color: var(--navy);
  color: var(--white);
}

.footer-content {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo-container {
  display: inline-block;
  background-color: var(--white);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-container img {
  height: 3.5rem;
  width: auto;
}

@media (min-width: 640px) {
  .footer-brand .logo-container img {
    height: 4rem;
  }
}

.footer-brand p {
  color: var(--gray-brand);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-brand);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul a {
  color: var(--gray-brand);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--gray-brand);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(229, 231, 235, 0.6);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

/* ========================================
   SERVICE DETAIL LAYOUT
======================================== */
.service-detail {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
  }
}

.service-detail + .service-detail {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
}

.service-icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-icon-title .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(23, 74, 106, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-title .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.service-icon-title h2 {
  font-size: 1.5rem;
  color: var(--charcoal);
}

.service-features {
  background-color: var(--gray-brand);
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.features-grid {
  display: grid;
  gap: 0.75rem;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.feature-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.feature-item span {
  color: var(--charcoal);
}

/* ========================================
   PARTNER CARDS
======================================== */
.partner-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.partner-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: rgba(23, 74, 106, 0.3);
}

.partner-card .icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.partner-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(23, 74, 106, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.partner-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
}

.partner-card > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.benefit-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-list span {
  color: var(--charcoal);
}

/* ========================================
   ENGAGEMENT MODEL
======================================== */
.engagement-card {
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s ease;
}

.engagement-card:hover {
  border-color: rgba(23, 74, 106, 0.3);
}

.engagement-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.engagement-card h3 {
  font-size: 1.25rem;
  color: var(--charcoal);
}

.engagement-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  background-color: rgba(23, 74, 106, 0.1);
  color: var(--navy);
  border-radius: 9999px;
  white-space: nowrap;
}

.engagement-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   CONTACT FORM
======================================== */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
  }
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}

.form-label .required {
  color: var(--destructive);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
  background-color: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(23, 74, 106, 0.1);
}

.form-textarea {
  resize: none;
  min-height: 8rem;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: var(--navy);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.form-submit:hover {
  background-color: var(--navy-light);
}

/* Sidebar */
.contact-sidebar .sidebar-card {
  background-color: var(--gray-brand);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-sidebar .sidebar-card-dark {
  background-color: var(--navy);
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.sidebar-card-dark h3 {
  color: var(--white);
}

.sidebar-card-dark p {
  color: var(--gray-brand);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.step-number {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: rgba(23, 74, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.step-number span {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.step-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.step-item p {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

/* Contact info cards */
.contact-info-grid {
  display: grid;
  gap: 1rem;
}

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

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

.contact-info-card {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.contact-info-card .icon-box {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-color: rgba(23, 74, 106, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.contact-info-card .icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
}

.contact-info-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.125rem;
}

.contact-info-card .value {
  font-size: 0.875rem;
  color: var(--charcoal);
  font-weight: 500;
}

.contact-info-card .desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ========================================
   VALUES GRID
======================================== */
.value-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card .icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background-color: rgba(23, 74, 106, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.value-card .icon-box svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--navy);
}

.value-card h3 {
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   BLOCKQUOTE / LEADERSHIP
======================================== */
.leadership-quote {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.leadership-quote svg {
  width: 3rem;
  height: 3rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 1.5rem;
}

.leadership-quote blockquote {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.7;
  font-style: italic;
}

@media (min-width: 640px) {
  .leadership-quote blockquote {
    font-size: 1.5rem;
  }
}

.leadership-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-brand);
  font-style: normal;
}

/* ========================================
   RELATIVE IMAGE WITH OVERLAY
======================================== */
.image-with-stat {
  position: relative;
}

.image-with-stat img {
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.image-stat-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--navy);
  color: var(--white);
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  display: none;
}

@media (min-width: 1024px) {
  .image-stat-badge {
    display: block;
  }
}

.image-stat-badge .value {
  font-size: 1.875rem;
  font-weight: 700;
}

.image-stat-badge .label {
  font-size: 0.875rem;
  color: var(--gray-brand);
  margin-top: 0.25rem;
}

/* ========================================
   CHECKLIST ITEMS
======================================== */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.checklist-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.why-item svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-item h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.why-item p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 0.125rem;
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* Intersection Observer animation trigger */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   WORDPRESS SPECIFIC
======================================== */
.wp-block-image img {
  border-radius: 0.5rem;
}

.entry-content p {
  margin-bottom: 1rem;
}

.entry-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
