/*
Theme Name: Blue Water Financial Technologies
Theme URI: https://bluewaterft.com
Author: Blue Water Financial Technologies
Description: Custom WordPress theme for Blue Water Financial Technologies - Doc-to-Data Solutions
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: bluewater
*/

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1a2744;
  --navy-dark: #111c36;
  --teal: #2a7f8f;
  --teal-light: #3a9db0;
  --gold: #c8a84b;
  --red-accent: #e05252;
  --green-accent: #3aaa6e;
  --bg-light: #f0f2f5;
  --bg-white: #ffffff;
  --text-dark: #1a2744;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--text-mid); line-height: 1.7; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

/* ===== NAVIGATION ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo img {
  height: 110px;
  width: auto;
}

.site-logo .logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
}

#primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

#primary-menu li a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  transition: color 0.2s;
  text-transform: uppercase;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a {
  color: var(--teal);
}

.nav-cta { margin-left: 1rem; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s;
}
/* ── Hero content animation ── */
.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== HERO SECTION ===== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #c9d8e8 0%, #a8c4d8 40%, #7baec8 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(240,242,245,0.85) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 4rem 2rem;
  margin-left: calc((100vw - 1200px) / 2);
  margin-left: max(2rem, calc((100vw - 1200px) / 2));
}

.hero-content .eyebrow { color: var(--teal); }

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--bg-light);
  padding: 5rem 0;
  text-align: center;
}

.stats-header {
  margin-bottom: 3.5rem;
}

.stats-header .eyebrow { justify-content: center; display: flex; }

.stats-header h2 { margin-bottom: 1rem; }

.stats-header h2 span { color: var(--teal); }

.stats-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-sans);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-number.color-teal   { color: var(--teal); }
.stat-number.color-red    { color: var(--red-accent); }
.stat-number.color-gold   { color: var(--gold); }
.stat-number.color-navy   { color: var(--navy); }

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.4;
}

.stats-cta { text-align: center; }

/* ===== VAULT SOLUTION SECTION ===== */
.vault-section {
  background: var(--bg-light);
  padding: 5rem 0;
  text-align: center;
}

.vault-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: var(--font-serif);
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.vault-subtitle {
  font-size: 1.2rem;
  color: var(--text-mid);
  margin-bottom: 4rem;
  font-family: var(--font-sans);
  font-style: italic;
}

.vault-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.vault-features { }

.vault-features .eyebrow { margin-bottom: 1rem; }

.vault-features h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vault-features > p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: #e8edf5;

  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.feature-text h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.vault-mockup {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: #fff;
}

.vault-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-placeholder {
  background: linear-gradient(135deg, #e8f4f8, #d0e8f0);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1rem;
  font-weight: 600;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
  background: var(--bg-light);
  padding: 5rem 0;
  text-align: center;
}

.how-it-works-section .eyebrow { display: flex; justify-content: center; }
.how-it-works-section .section-intro { max-width: 550px; margin: 0 auto 3.5rem; font-size: 1.05rem; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.step-item {
  position: relative;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-6px) scale(1.03);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-light);
  padding-top: 0;
  height: 60px;
}

.step-card {
  background: transparent;
  border-radius: 0;
  padding: 0 0.5rem;
  text-align: center;
  box-shadow: none;
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
}

.step-icon-wrap {
  background: #e8edf5;
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.5rem;
	  margin-right: 1.5rem;
	  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  position: relative;
}

.step-icon-wrap img {
  max-height: 140px;
  width: auto;
  margin: 0 auto;
}

.step-icon-placeholder {
  font-size: 3.5rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.step-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.result-box {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  text-align: center;
}

.result-box .eyebrow { justify-content: center; display: flex; }

.result-box h3 {
  font-size: 1.6rem;
  color: var(--navy);
}

/* ===== FOOTER ===== */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 2rem 0 2rem;
}
.footer-brand .custom-logo-link img,
.footer-brand img {
filter: brightness(0) invert(1);
  height: 180px;
  width: auto;
  opacity: 0.9;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-get-in-touch h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-get-in-touch p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.4); }

.footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  transition: color 0.2s;
}

.footer-social a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .vault-content { grid-template-columns: 1fr; }
  .vault-mockup { order: -1; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0.75rem 1.5rem; }

  #primary-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    gap: 1rem;
  }

  #primary-menu.is-open { display: flex; }

  .menu-toggle { display: flex; }

  .hero-content {
    margin-left: 0;
    padding: 3rem 1.5rem;
  }

  .hero-section { min-height: 70vh; }

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

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

  .steps-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bluwaterstg.wpenginepowered.com/wp-content/uploads/2026/04/water-hero.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  animation: waterDrift 20s ease-in-out infinite alternate;
}

.hero-texture {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    hsla(210,25%,97%,0.6) 0%,
    hsla(210,25%,97%,0.3) 50%,
    hsla(210,25%,97%,0.4) 100%
  );
}

@keyframes waterDrift {
  0%   { transform: scale(1.1) translate(0px, 0px); }
  33%  { transform: scale(1.1) translate(-15px, 8px); }
  66%  { transform: scale(1.1) translate(10px, -5px); }
  100% { transform: scale(1.1) translate(-8px, 12px); }
}
.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, #f0f2f5, transparent);
  z-index: 10;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 3rem;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.2rem;
  padding-top: 80px;
}

.step-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
}

.step-icon-wrap {
  background: #e8edf5;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  position: relative;
}

.step-icon-placeholder {
  font-size: 3rem;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.step-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.6rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}
/* ============================================
   SOLUTIONS PAGE
   ============================================ */

/* ── Solutions Hero ── */
.solutions-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-light);
}

.solutions-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bluwaterstg.wpenginepowered.com/wp-content/uploads/2026/04/water-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: waterDrift 20s ease-in-out infinite alternate;
}

.solutions-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240,242,245,0.55) 0%,
    rgba(240,242,245,0.75) 100%
  );
}

.solutions-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.vault-display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.vault-tagline {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ── Solutions List ── */
.solutions-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
  padding: 3.5rem 0;
}



.solution-row--reverse > * {
  direction: ltr;
}

.solution-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-icon-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.solution-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.solution-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}

.solution-text p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

/* ── Mockup Frame ── */
.mockup-frame {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hide placeholder by default, show when image fails */
.mockup-ph {
  display: none;
  padding: 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  background: var(--bg-light);
  min-height: 200px;
  align-items: center;
  justify-content: center;
}

.mockup-placeholder-active .mockup-ph {
  display: flex;
}

.mockup-placeholder-active img {
  display: none;
}

/* ── Divider ── */
.solution-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ── CTA Section ── */
.solutions-cta-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.solutions-cta-inner {
  text-align: center;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}
/* ── Alternating layout fix ── */
.solution-row--reverse .solution-mockup {
  grid-column: 1;
  grid-row: 1;
}

.solution-row--reverse .solution-text {
  grid-column: 2;
  grid-row: 1;
}
.solution-row--reverse {
  grid-template-columns: 1.5fr 1fr;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .solution-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .solution-row--reverse .solution-mockup {
    grid-column: 1;
    grid-row: 2;
  }

  .solution-row--reverse .solution-text {
    grid-column: 1;
    grid-row: 1;
  }
}
/* ============================================
   ABOUT US PAGE
   ============================================ */

/* ── About Hero ── */
.about-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bluwaterstg.wpenginepowered.com/wp-content/uploads/2026/04/water-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: waterDrift 20s ease-in-out infinite alternate;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240,242,245,0.45) 0%,
    rgba(240,242,245,0.65) 100%
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.about-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--navy);
}

.about-hero-content .eyebrow {
  display: flex;
  justify-content: center;
}

/* ── Leadership Section ── */
.leadership-section {
  background: var(--bg-light);
}

.leadership-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.leadership-header .eyebrow {
  display: flex;
  justify-content: center;
}

.leadership-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.leadership-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-mid);
}

/* ── Team Grid ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Team Card ── */
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-light);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.team-photo-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--bg-light);
}

.team-info {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.team-info h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.team-info p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin: 0;
}

.team-role {
  color: var(--teal) !important;
  font-weight: 600 !important;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
}

/* ============================================
   CONTACT US PAGE
   ============================================ */

/* ── Contact Hero ── */
.contact-hero {
  position: relative;
  min-height: 35vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bluwaterstg.wpenginepowered.com/wp-content/uploads/2026/04/water-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: waterDrift 20s ease-in-out infinite alternate;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(240,242,245,0.45) 0%,
    rgba(240,242,245,0.65) 100%
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.contact-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--navy);
}

.contact-hero-content .eyebrow {
  display: flex;
  justify-content: center;
}

/* ── Contact Section ── */
.contact-section {
  background: var(--bg-light);
}

/* ── Form Wrap ── */
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── Success Message ── */
.contact-success {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  color: #2e7d32;
  font-size: 0.95rem;
  font-weight: 500;
}

/* ── Form Layout ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

/* ── Labels ── */
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.required {
  color: #e05252;
  margin-left: 2px;
}

/* ── Inputs ── */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,127,143,0.1);
  background: #fff;
}

/* ── Select arrow ── */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23718096' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

/* ── Textarea ── */
.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

/* ── Submit Button ── */
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* ── Scroll animations for solution rows ── */
.solution-text,
.solution-mockup {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.solution-row .solution-text {
  transform: translateX(-60px);
}

.solution-row .solution-mockup {
  transform: translateX(60px);
}

.solution-row--reverse .solution-text {
  transform: translateX(60px);
}

.solution-row--reverse .solution-mockup {
  transform: translateX(-60px);
}

.solution-text.is-visible,
.solution-mockup.is-visible {
  opacity: 1;
  transform: translateX(0);
}


/* ── Disclaimer Page Styling ── */
.page-template-default .entry-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
		  background: #f0f3f8;
}

.page-template-default .entry-content h1 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.page-template-default .entry-content h2 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-template-default .entry-content p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.page-template-default .entry-content strong {
  font-weight: 700;
  color: var(--navy);
}