/* ============================================
   VALLEY IMAGING PARTNERS
   Premium Modern Healthcare UI
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800;900&display=swap');

/* ── Root Variables ── */
:root {
  --navy:          #060f1e;
  --navy-mid:      #0c1c35;
  --navy-light:    #112248;
  --blue:          #1e40af;
  --blue-mid:      #2563eb;
  --blue-light:    #3b82f6;
  --cyan:          #06b6d4;
  --cyan-light:    #22d3ee;
  --white:         #ffffff;
  --off-white:     #f8fafc;
  --gray-50:       #f8fafc;
  --gray-100:      #f1f5f9;
  --gray-200:      #e2e8f0;
  --gray-300:      #cbd5e1;
  --gray-400:      #94a3b8;
  --gray-500:      #64748b;
  --gray-600:      #475569;
  --gray-700:      #334155;
  --gray-800:      #1e293b;
  --grad-dark:     linear-gradient(160deg, #060f1e 0%, #0c1c35 50%, #112248 100%);
  --grad-blue:     linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
  --grad-cyan:     linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  --grad-subtle:   linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  --shadow-xs:     0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:     0 16px 64px rgba(0,0,0,0.16);
  --shadow-blue:   0 8px 32px rgba(37,99,235,0.22);
  --shadow-cyan:   0 8px 32px rgba(6,182,212,0.25);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --radius-2xl:    40px;
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'Inter', system-ui, sans-serif;
  --font-display:  'Manrope', system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; }
p { color: var(--gray-500); line-height: 1.8; }
.lead { font-size: 1.15rem; color: var(--gray-600); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1360px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font);
  letter-spacing: 0.01em;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--grad-cyan);
  color: var(--white);
  box-shadow: var(--shadow-cyan);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(6,182,212,0.4);
  filter: brightness(1.05);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
}
.btn-outline:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 18px 38px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ── Labels / Eyebrows ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}
.eyebrow-white { color: rgba(255,255,255,0.55); }
.eyebrow-white::before { background: rgba(255,255,255,0.35); }

/* ── Section Header ── */
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; }
.section-header.centered p { max-width: 520px; margin: 0 auto; }

/* ── Text Utilities ── */
.text-white { color: var(--white) !important; }
.text-white-70 { color: rgba(255,255,255,0.7) !important; }
.text-white-50 { color: rgba(255,255,255,0.5) !important; }
.text-cyan { color: var(--cyan); }
.text-gradient {
  background: var(--grad-cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-center { text-align: center; }
.font-display { font-family: var(--font-display); }

/* ── Spacing ── */
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.grid-auto-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 32px; }

/* ── Flex ── */
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

/* ═══════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#site-header.scrolled {
  background: rgba(6,15,30,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 0;
}
#site-header.light {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gray-100);
  padding: 12px 0;
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 40px; height: 40px;
  background: var(--grad-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-cyan);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: var(--transition);
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
#site-header.light .nav-logo-name { color: var(--navy); }
#site-header.light .nav-logo-sub { color: var(--gray-400); }

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--cyan); }
#site-header.light .nav-links a { color: var(--gray-600); }
#site-header.light .nav-links a:hover { color: var(--navy); background: var(--gray-100); }
#site-header.light .nav-links a.active { color: var(--blue-mid); }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#site-header.light .hamburger span { background: var(--navy); }

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--cyan); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}

/* ═══════════════════════════════════════════════
   HERO — DARK FULL-SCREEN
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Background image layer */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.22;
}
/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(6,15,30,0.98) 0%,
    rgba(6,15,30,0.88) 45%,
    rgba(6,15,30,0.45) 100%
  );
}
/* Subtle radial glow */
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 75% 50%, rgba(37,99,235,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 70%, rgba(6,182,212,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 80px;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content .lead {
  color: rgba(255,255,255,0.68);
  max-width: 560px;
  margin-bottom: 44px;
  font-size: 1.15rem;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hero-trust-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* Sub-page hero (smaller) */
.hero-sub {
  position: relative;
  padding: 160px 0 96px;
  background: var(--navy);
  overflow: hidden;
}
.hero-sub .hero-bg { opacity: 0.15; }
.hero-sub .hero-overlay {
  background: linear-gradient(180deg, rgba(6,15,30,0.95) 0%, rgba(6,15,30,0.88) 100%);
}
.hero-sub-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-sub-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub-content .lead { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.hero-sub-content .hero-btns { justify-content: flex-start; }

/* ═══════════════════════════════════════════════
   TICKER / TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0;
  overflow: hidden;
}
.trust-ticker {
  display: flex;
  animation: ticker 30s linear infinite;
  width: max-content;
  padding: 20px 0;
}
.trust-ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-600);
  white-space: nowrap;
  border-right: 1px solid var(--gray-200);
}
.trust-ticker-item i { color: var(--cyan); font-size: 1rem; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   IMAGE + CONTENT SPLIT SECTIONS
═══════════════════════════════════════════════ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.split-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.split-image:hover img { transform: scale(1.04); }
.split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,15,30,0.3) 0%, transparent 60%);
}
.split-content {
  display: flex;
  align-items: center;
  padding: 72px 64px;
}
.split-content-inner { max-width: 480px; }
.split-content.bg-dark {
  background: var(--navy);
}
.split-content.bg-navy-mid {
  background: var(--navy-mid);
}
.split-content.bg-light {
  background: var(--gray-50);
}

/* ═══════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════ */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(37,99,235,0.1);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(6,182,212,0.1), rgba(37,99,235,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.service-card h4 { margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; margin: 0; color: var(--gray-500); }
.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-top: 1px solid var(--gray-100);
}
.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-mid);
  background: rgba(37,99,235,0.07);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(37,99,235,0.12);
}

/* ═══════════════════════════════════════════════
   FEATURE / BENEFIT ROWS
═══════════════════════════════════════════════ */
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-100);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.05em;
  min-width: 28px;
  padding-top: 3px;
}
.benefit-row h4 { margin-bottom: 6px; font-size: 1.05rem; }
.benefit-row p { font-size: 0.9rem; margin: 0; }

/* ═══════════════════════════════════════════════
   STAT BANNER
═══════════════════════════════════════════════ */
.stat-banner {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stat-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(37,99,235,0.12) 0%, transparent 70%);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num span { color: var(--cyan); }
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   PROCESS / STEPS
═══════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-mid));
  opacity: 0.3;
}
.process-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  background: var(--grad-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-cyan);
  position: relative;
}
.process-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.2);
}
.process-item h4 { margin-bottom: 10px; }
.process-item p { font-size: 0.875rem; color: var(--gray-500); margin: 0; }

/* Dark process variant */
.process-item-dark .process-item h4 { color: var(--white); }
.process-item-dark .process-item p { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════
   IMAGE CARDS / PHOTO GRID
═══════════════════════════════════════════════ */
.photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(6,15,30,0.9) 0%, transparent 100%);
  color: var(--white);
}
.photo-card-overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.photo-card-overlay p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; }

/* ═══════════════════════════════════════════════
   FEATURE CARDS (icon + text)
═══════════════════════════════════════════════ */
.feat-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: transparent; }
.feat-card:hover::before { transform: scaleX(1); }
.feat-card h4 { margin: 16px 0 8px; }
.feat-card p { font-size: 0.9rem; margin: 0; }
.feat-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(6,182,212,0.1) 0%, rgba(37,99,235,0.08) 100%);
  color: var(--cyan);
}

/* Dark feat card variant */
.feat-card-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.feat-card-dark:hover { background: rgba(255,255,255,0.07); border-color: rgba(6,182,212,0.2); }
.feat-card-dark h4 { color: var(--white); }
.feat-card-dark p { color: rgba(255,255,255,0.5); }
.feat-card-dark .feat-icon { background: rgba(6,182,212,0.1); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════ */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.testi-quote {
  position: absolute;
  top: 24px; right: 28px;
  font-size: 4rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--gray-100);
  pointer-events: none;
}
.testi-stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.975rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); line-height: 1.2; }
.testi-title { font-size: 0.78rem; color: var(--gray-400); margin-top: 3px; }

/* ═══════════════════════════════════════════════
   WHO WE SERVE CHIPS
═══════════════════════════════════════════════ */
.serve-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.serve-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-700);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.serve-chip:hover {
  border-color: var(--cyan);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(6,182,212,0.15);
  transform: translateY(-2px);
}
.serve-chip i { color: var(--cyan); font-size: 0.9rem; }

/* Dark chip variant */
.serve-chip-dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
}
.serve-chip-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--cyan);
  color: var(--white);
}

/* ═══════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════ */
.cta-band {
  background: var(--grad-dark);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(37,99,235,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 480px; margin: 0 auto 40px; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════════════ */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }

/* ═══════════════════════════════════════════════
   LOCATION CARDS
═══════════════════════════════════════════════ */
.loc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.12); }
.loc-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.loc-name { font-weight: 700; font-size: 0.975rem; color: var(--navy); margin-bottom: 3px; }
.loc-addr { font-size: 0.8rem; color: var(--gray-400); }
.loc-pin {
  width: 36px; height: 36px;
  background: rgba(37,99,235,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-mid);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.loc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 16px; }
.loc-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(6,182,212,0.07);
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.15);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════ */
.search-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 6px 6px 6px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}
.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--gray-800);
  background: transparent;
}
.search-wrap input::placeholder { color: var(--gray-400); }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  background: rgba(37,99,235,0.05);
}

/* ═══════════════════════════════════════════════
   PORTAL INFO CARDS
═══════════════════════════════════════════════ */
.portal-mod {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.portal-mod:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(6,182,212,0.25);
  transform: translateY(-4px);
}
.portal-mod-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--grad-cyan);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.portal-mod h4 { color: var(--white); margin-bottom: 8px; }
.portal-mod p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin: 0; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
  max-width: 280px;
  margin: 20px 0 28px;
}
.footer-col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-bottom: 11px;
  transition: var(--transition);
}
.footer-link:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

@keyframes float-y {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-14px); }
}
.float { animation: float-y 5s ease-in-out infinite; }

@keyframes glow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-connector { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 360px; }
  .split-content { padding: 56px 40px; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .hero-sub { padding: 130px 0 72px; }
  .hero-trust { gap: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-right .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .split-content { padding: 48px 28px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-trust { flex-direction: column; gap: 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-btns { flex-direction: column; align-items: center; }
}
