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

:root {
  --blue: #1a6fbf;
  --blue-mid: #2589e0;
  --blue-lt: #5eb4f5;
  --blue-glow: #7dcfff;
  --navy: #0b2945;
  --navy-deep: #071c30;
  --navy-darker: #040f1c;
  --white: #f0f8ff;
  --muted: #6a8fad;
  --gold: #f5c518;
  --gold-alt: #f5c842;
  --coral: #e05a4a;
  --teal: #1ab8a0;
  --card-bg: rgba(13, 36, 64, .85);
  --card-bg-solid: #0d2440;
  --card-border: rgba(90, 180, 245, .18);
  --radius: 18px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .45);

  --ca-blue: #1a6fbf;
  --ca-blue-mid: #2589e0;
  --ca-blue-lt: #5eb4f5;
  --ca-navy: #0b2945;
  --ca-navy-deep: #071c30;
  --ca-white: #f0f8ff;
  --ca-gray: #c8ddf0;
  --ca-muted: #6a8fad;
  --ca-gold: #f5c842;
  --ca-coral: #e05a4a;
  --ca-teal: #1ab8a0;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--navy-darker);
  color: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

body.inventory-page {
  background: var(--ca-navy-deep);
  color: var(--ca-white);
  min-height: 100vh;
}
body.inventory-page::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 85%, rgba(26,111,191,.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 85% 15%, rgba(11,41,69,.8) 0%, transparent 55%),
    linear-gradient(180deg, #071c30 0%, #0b2945 60%, #0a223c 100%);
  pointer-events: none;
}

section { position: relative; z-index: 3; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
.section-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: #fff;
}
.section-sub {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}
.wave-sep,
.wave { display: block; width: 100%; line-height: 0; overflow: hidden; }

.btn-primary,
.btn-outline,
.btn-coral {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .05em;
  border-radius: 999px;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s, transform .15s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(26,111,191,.45);
}
.btn-primary:hover {
  background: var(--blue-mid);
  box-shadow: 0 0 40px rgba(37,137,224,.6);
  transform: translateY(-2px);
}
.btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,.28);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-coral {
  background: var(--coral);
  color: #fff;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(224,90,74,.35);
}
.btn-coral:hover { background: #d44838; transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ===== BUBBLES / RAYS ===== */
#bubbles,
.bubbles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
body.inventory-page #bubbles { z-index: 0; }

.bubble {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(94,180,245,.07);
  border: 1px solid rgba(94,180,245,.18);
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: .35; }
  100% { transform: translateY(-110vh) translateX(25px); opacity: 0; }
}

.hero-rays,
.page-hero-rays {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  opacity: .15;
}
.page-hero-rays { z-index: 1; opacity: .2; pointer-events: none; }
.ray {
  position: absolute;
  top: -10%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.8), transparent);
  transform-origin: top center;
  animation: sway ease-in-out infinite alternate;
}
@keyframes sway {
  from { transform: rotate(var(--r-from)) scaleY(.7); }
  to   { transform: rotate(var(--r-to)) scaleY(1); }
}

/* ===== NAV ===== */
.site-nav,
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  background: rgba(4,15,28,.0);
  backdrop-filter: blur(0px);
  transition: background .4s, backdrop-filter .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled,
nav.scrolled,
body.services-page .site-nav,
body.inventory-page .site-nav {
  background: rgba(4,15,28,.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(94,180,245,.15);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--blue-mid);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(26,111,191,.4);
  flex-shrink: 0;
}
.nav-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .1em;
  color: #fff;
  line-height: 1;
}
.nav-brand small {
  display: block;
  font-size: .45rem;
  letter-spacing: .22em;
  color: var(--blue-lt);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-lt); }
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 999px;
  font-size: .78rem !important;
  box-shadow: 0 0 18px rgba(26,111,191,.35);
}
.nav-cta:hover {
  background: var(--blue-mid) !important;
  box-shadow: 0 0 28px rgba(37,137,224,.5) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  border: 0;
  background: transparent;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--muted);
  transition: .3s;
  border-radius: 2px;
}

/* ===== FOOTER ===== */
#footer {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, #040f1c 0%, #071c30 100%);
  border-top: 1px solid rgba(94,180,245,.15);
  padding: 70px 40px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--blue-mid);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(26,111,191,.25);
}
.footer-logo-img img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .08em;
  color: #fff;
}
.footer-brand-tag {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-lt);
  font-weight: 800;
}
.footer-about { font-size: .82rem; color: var(--muted); line-height: 1.75; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,111,191,.12);
  border: 1px solid rgba(94,180,245,.18);
  color: var(--blue-lt);
}
.footer-col-title {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact-item {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  transition: color .2s;
}
.footer-links a:hover,
.footer-contact-item a:hover { color: var(--blue-lt); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.footer-contact-item .icon { color: var(--blue-lt); }
.footer-bottom {
  border-top: 1px solid rgba(94,180,245,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-copy { font-size: .76rem; color: var(--muted); }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-badge {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  background: rgba(26,111,191,.1);
  border: 1px solid rgba(94,180,245,.2);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ===== HOME PAGE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url('tank-hero.jpg');
  background-size: cover;
  background-position: center 30%;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.04); } to { transform: scale(1.11); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(4,15,28,.9) 0%, rgba(4,15,28,.5) 22%, rgba(4,15,28,.18) 48%, rgba(4,15,28,.55) 76%, rgba(4,15,28,.95) 100%),
    radial-gradient(ellipse 65% 45% at 50% 52%, rgba(26,111,191,.12) 0%, transparent 70%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse 115% 105% at 50% 50%, transparent 38%, rgba(4,15,28,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 80px;
}
.scroll-hint {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.35);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.4s both;
}
.scroll-arrow {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-dot {
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-lt);
  animation: scrollDot 1.9s ease-in-out infinite;
}
@keyframes scrollDot {
  0%,100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: .25; }
}
.hero-logo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid var(--blue-mid);
  background: #fff;
  overflow: hidden;
  margin: 0 auto 32px;
  box-shadow: 0 0 0 10px rgba(26,111,191,.12), 0 0 60px rgba(26,111,191,.4), 0 0 120px rgba(26,111,191,.2);
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.hero-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 16px;
  animation: fadeUp .8s .2s both;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: .04em;
  line-height: .95;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.9), 0 0 80px rgba(94,180,245,.25);
  animation: fadeUp .8s .35s both;
}
.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--blue-lt);
  text-shadow: none;
}
.hero-sub {
  margin-top: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.7;
  max-width: 540px;
  margin-inline: auto;
  animation: fadeUp .8s .5s both;
}
.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 40px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue-lt);
  animation: fadeUp .8s .6s both;
}
.hero-tagline span { color: rgba(94,180,245,.4); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; animation: fadeUp .8s .75s both; }

.emergency-ribbon {
  position: relative;
  z-index: 4;
  background: linear-gradient(90deg, #b83828 0%, #e05a4a 30%, #e05a4a 70%, #b83828 100%);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: fadeUp .8s 1s both;
}
.ribbon-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 0 rgba(224,90,74,.7);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,90,74,.7); }
  70% { box-shadow: 0 0 0 10px rgba(224,90,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,90,74,0); }
}
.ribbon-text {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
}
.ribbon-link {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
}
.ribbon-link:hover { background: rgba(255,255,255,.25); }

.services-section { background: linear-gradient(180deg, var(--navy-darker) 0%, var(--navy) 100%); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(94,180,245,.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(8px);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(94,180,245,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94,180,245,.35);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(94,180,245,.2);
}
.service-card:hover::before { opacity: 1; }
.service-card.emergency { border-color: rgba(224,90,74,.25); }
.service-card.emergency:hover {
  border-color: rgba(224,90,74,.5);
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(224,90,74,.25);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  background: rgba(26,111,191,.15);
  border: 1px solid rgba(94,180,245,.2);
}
.service-card.emergency .service-icon {
  background: rgba(224,90,74,.12);
  border-color: rgba(224,90,74,.25);
}
.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 12px;
}
.service-desc {
  font-size: .88rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
.service-features li {
  font-size: .82rem;
  font-weight: 600;
  color: var(--white);
  opacity: .8;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-lt);
  flex-shrink: 0;
}
.service-card.emergency .service-features li::before { background: var(--coral); }
.service-link {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-lt);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.service-link:hover { gap: 10px; }
.service-card.emergency .service-link { color: var(--coral); }
.service-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(94,180,245,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fish-section { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%); }
.fish-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}
.fish-text .section-sub { max-width: 100%; }
.fish-highlights { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fish-highlight,
.fish-hl {
  background: rgba(13,36,64,.7);
  border: 1px solid rgba(94,180,245,.12);
  border-radius: 12px;
  padding: 18px;
  transition: border-color .2s;
}
.fish-highlight:hover,
.fish-hl:hover { border-color: rgba(94,180,245,.3); }
.fh-num,
.fish-hl-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--blue-lt);
  line-height: 1;
}
.fh-lbl,
.fish-hl-lbl {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.fish-visual { position: relative; }
.fish-card-stack { position: relative; height: 460px; }
.fish-stack-card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid rgba(94,180,245,.15);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.fish-stack-card:nth-child(1) {
  width: 260px; height: 340px; top: 0; left: 50%;
  transform: translateX(-50%) rotate(-5deg); z-index: 1; animation: cardFloat1 5s ease-in-out infinite;
}
.fish-stack-card:nth-child(2) {
  width: 260px; height: 340px; top: 30px; left: 50%;
  transform: translateX(-20%) rotate(3deg); z-index: 2; animation: cardFloat2 5.5s ease-in-out infinite;
}
.fish-stack-card:nth-child(3) {
  width: 240px; height: 310px; top: 80px; left: 50%;
  transform: translateX(-80%) rotate(-2deg); z-index: 3; border-color: rgba(94,180,245,.35); animation: cardFloat3 4.8s ease-in-out infinite;
}
@keyframes cardFloat1 { 0%,100% { transform: translateX(-50%) rotate(-5deg) translateY(0); } 50% { transform: translateX(-50%) rotate(-5deg) translateY(-10px); } }
@keyframes cardFloat2 { 0%,100% { transform: translateX(-20%) rotate(3deg) translateY(0); } 50% { transform: translateX(-20%) rotate(3deg) translateY(-6px); } }
@keyframes cardFloat3 { 0%,100% { transform: translateX(-80%) rotate(-2deg) translateY(0); } 50% { transform: translateX(-80%) rotate(-2deg) translateY(-12px); } }
.fish-stack-card img { width: 100%; height: 100%; object-fit: cover; }
.fish-card-label {
  position: absolute; left: 14px; bottom: 14px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(4,15,28,.72); border: 1px solid rgba(94,180,245,.18);
  color: var(--blue-lt); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}

.why-section { background: linear-gradient(180deg, var(--navy-deep) 0%, #050e1c 100%); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.why-card {
  background: var(--card-bg);
  border: 1px solid rgba(94,180,245,.12);
  border-radius: 18px;
  padding: 26px 24px;
}
.why-icon { font-size: 1.6rem; margin-bottom: 16px; }
.why-card h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 10px; color: #fff;
}
.why-card p { font-size: .84rem; line-height: 1.7; color: var(--muted); }

.contact-section {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(26,111,191,.12) 0%, transparent 60%),
    #040f1c;
}
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-info .section-sub { max-width: 100%; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(13,36,64,.6);
  border: 1px solid rgba(94,180,245,.1);
  border-radius: 14px;
  padding: 16px 18px;
}
.contact-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(26,111,191,.15);
  border: 1px solid rgba(94,180,245,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-item-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.contact-item-val { font-size: .9rem; font-weight: 700; color: #fff; }
.contact-item-note { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.emergency-cta-card {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(224,90,74,.12), rgba(224,90,74,.05));
  border: 1px solid rgba(224,90,74,.25);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}
.emergency-cta-card p { font-size: .78rem; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(94,180,245,.14);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
}
.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 6px;
}
.form-sub { font-size: .82rem; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(7,28,48,.6);
  border: 1px solid rgba(94,180,245,.15);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: .88rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(26,111,191,.15); }
.form-select {
  cursor: pointer;
  appearance: none;
  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='%236a8fad' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-select option { background: #0b2945; color: #fff; }
.form-textarea { resize: vertical; min-height: 110px; }

/* ===== SERVICES PAGE ===== */
.page-hero {
  position: relative;
  padding: 160px 40px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(26,111,191,.28) 0%, transparent 55%),
    linear-gradient(180deg, #040f1c 0%, #071c30 60%, #0b2945 100%);
  overflow: hidden;
  z-index: 3;
}
.page-hero-content { position: relative; z-index: 3; max-width: 760px; margin: 0 auto; }
.page-hero-eyebrow {
  font-size: .72rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--blue-lt); margin-bottom: 16px; animation: fadeUp .7s .1s both;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: .04em;
  line-height: .95;
  color: #fff;
  text-shadow: 0 0 60px rgba(94,180,245,.3);
  animation: fadeUp .7s .25s both;
}
.page-hero-title em { font-style: normal; color: transparent; -webkit-text-stroke: 2px var(--blue-lt); text-shadow: none; }
.page-hero-sub {
  margin-top: 20px; font-size: 1.05rem; font-weight: 300; color: var(--muted); line-height: 1.7; animation: fadeUp .7s .4s both;
}
.service-nav {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  margin-top: 36px; animation: fadeUp .7s .55s both;
}
.service-nav a {
  background: rgba(26,111,191,.12);
  border: 1px solid rgba(94,180,245,.2);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
}
.service-nav a:hover,
.service-nav a.active {
  background: var(--blue);
  border-color: var(--blue-mid);
  color: #fff;
  box-shadow: 0 0 16px rgba(26,111,191,.4);
}

.svc-section { background: linear-gradient(180deg, #0b2945 0%, #071c30 100%); }
.svc-section.alt { background: linear-gradient(180deg, #071c30 0%, #050e1c 100%); }
.svc-layout { display: grid; gap: 72px; align-items: start; grid-template-columns: 1fr 1fr; }
.svc-layout.reverse { direction: rtl; }
.svc-layout.reverse > * { direction: ltr; }
.svc-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 18px; font-size: 1.8rem; margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(26,111,191,.25), rgba(94,180,245,.1));
  border: 1px solid rgba(94,180,245,.25); box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.svc-icon-wrap.coral { background: linear-gradient(135deg, rgba(224,90,74,.2), rgba(224,90,74,.08)); border-color: rgba(224,90,74,.25); }
.svc-icon-wrap.teal { background: linear-gradient(135deg, rgba(26,184,160,.2), rgba(26,184,160,.08)); border-color: rgba(26,184,160,.25); }
.svc-title {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: .05em; color: #fff; margin-bottom: 14px; line-height: 1;
}
.svc-desc { font-size: .95rem; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.svc-features li { display: flex; align-items: flex-start; gap: 12px; font-size: .88rem; font-weight: 600; color: var(--white); line-height: 1.5; }
.svc-features li .chk {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0; margin-top: 1px;
  background: rgba(94,180,245,.12); border: 1px solid rgba(94,180,245,.3);
  display: flex; align-items: center; justify-content: center; font-size: .65rem; color: var(--blue-lt);
}
.svc-features li .chk.coral { background: rgba(224,90,74,.1); border-color: rgba(224,90,74,.3); color: var(--coral); }
.svc-features li .chk.teal { background: rgba(26,184,160,.1); border-color: rgba(26,184,160,.3); color: var(--teal); }
.svc-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.svc-note { font-size: .75rem; color: var(--muted); font-style: italic; }
.svc-panel {
  background: var(--card-bg);
  border: 1px solid rgba(94,180,245,.14);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.install-steps { padding: 32px; }
.install-step { display: flex; gap: 18px; align-items: flex-start; padding-bottom: 28px; position: relative; }
.install-step:not(:last-child)::after {
  content: ''; position: absolute; left: 16px; top: 36px; width: 2px; bottom: 0;
  background: linear-gradient(180deg, rgba(94,180,245,.3), transparent);
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: #fff; box-shadow: 0 0 14px rgba(26,111,191,.4);
  position: relative; z-index: 1;
}
.step-title { font-size: .88rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.step-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; }
.install-note {
  margin: 0 32px 32px; padding: 16px; border-radius: 12px;
  background: rgba(26,111,191,.08); border: 1px solid rgba(94,180,245,.15); font-size: .78rem; color: var(--muted); line-height: 1.6;
}
.install-note strong { color: var(--blue-lt); }
.maint-plans { display: flex; flex-direction: column; gap: 0; }
.plan {
  padding: 22px 28px; border-bottom: 1px solid rgba(94,180,245,.08);
  display: flex; align-items: center; gap: 16px; transition: background .2s;
}
.plan:last-child { border-bottom: none; }
.plan:hover { background: rgba(26,111,191,.07); }
.plan.featured {
  background: linear-gradient(135deg, rgba(26,111,191,.15), rgba(94,180,245,.06));
  border-left: 3px solid var(--blue-mid);
}
.plan-badge {
  font-size: .55rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--blue); color: #fff; padding: 2px 8px; border-radius: 999px; white-space: nowrap;
}
.plan-name { font-size: .92rem; font-weight: 800; color: #fff; flex: 1; }
.plan-freq { font-size: .72rem; color: var(--muted); font-weight: 600; }
.plan-price { text-align: right; white-space: nowrap; }
.plan-amount { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: var(--blue-lt); line-height: 1; }
.plan-period { font-size: .65rem; color: var(--muted); display: block; }
.plan-includes { padding: 20px 28px 28px; background: rgba(0,0,0,.15); }
.plan-includes-title {
  font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.plan-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.plan-tag {
  font-size: .68rem; font-weight: 700; color: var(--white);
  background: rgba(94,180,245,.08); border: 1px solid rgba(94,180,245,.14); padding: 3px 10px; border-radius: 999px;
}
.emrg-panel { padding: 32px; }
.emrg-alert {
  display: flex; align-items: center; gap: 14px;
  background: rgba(224,90,74,.1); border: 1px solid rgba(224,90,74,.25);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 24px;
}
.emrg-pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); flex-shrink: 0; animation: pulse 1.6s infinite; }
.emrg-alert-text { font-size: .82rem; font-weight: 700; color: #fff; line-height: 1.5; }
.emrg-alert-text span { color: var(--coral); }
.emrg-issues { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.emrg-issue {
  background: rgba(13,36,64,.7); border: 1px solid rgba(94,180,245,.1); border-radius: 12px; padding: 14px;
  font-size: .78rem; font-weight: 700; color: var(--white); display: flex; align-items: center; gap: 8px;
}
.emrg-issue:hover { border-color: rgba(224,90,74,.3); }
.emrg-issue .icon { font-size: 1.1rem; }
.emrg-cta {
  background: linear-gradient(135deg, rgba(224,90,74,.15), rgba(224,90,74,.05));
  border: 1px solid rgba(224,90,74,.25); border-radius: 14px; padding: 20px; text-align: center;
}
.emrg-cta-label {
  font-size: .65rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.emrg-cta-phone { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #fff; letter-spacing: .05em; }
.emrg-cta-note { font-size: .72rem; color: var(--muted); margin-top: 4px; }
.fish-panel { padding: 28px; }
.fish-cats { display: flex; flex-direction: column; gap: 0; }
.fish-cat { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(94,180,245,.08); }
.fish-cat:last-child { border-bottom: none; }
.fish-cat-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-lt); flex-shrink: 0; }
.fish-cat-name { font-size: .88rem; font-weight: 800; color: #fff; flex: 1; }
.fish-cat-count { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--blue-lt); }
.fish-cat-sub { font-size: .65rem; color: var(--muted); white-space: nowrap; }

.faq-section { background: linear-gradient(180deg, #050e1c 0%, #040f1c 100%); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 48px; }
.faq-item { background: var(--card-bg); border: 1px solid rgba(94,180,245,.1); border-radius: 16px; overflow: hidden; }
.faq-item:hover { border-color: rgba(94,180,245,.25); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left;
}
.faq-q-text { font-size: .9rem; font-weight: 800; color: #fff; line-height: 1.4; }
.faq-chevron {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: rgba(94,180,245,.1); border: 1px solid rgba(94,180,245,.2);
  display: flex; align-items: center; justify-content: center; color: var(--blue-lt); font-size: .7rem;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: rgba(94,180,245,.2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 24px; }
.faq-a p { font-size: .85rem; color: var(--muted); line-height: 1.75; padding-bottom: 22px; }

/* ===== INVENTORY PAGE ===== */
.inventory-page .site-nav { background: rgba(4,15,28,.92); backdrop-filter: blur(14px); border-bottom-color: rgba(94,180,245,.15); box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.inventory-page .header-wave { margin-top: -1px; }
.inventory-page .toolbar-wrap,
.inventory-page .main-wrap,
.inventory-page .page-footer { position: relative; z-index: 1; }
.inventory-page .site-nav + header { margin-top: 72px; }

.inventory-page header {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7,28,48,.95) 0%, rgba(11,41,69,.85) 100%);
  border-bottom: 2px solid rgba(94,180,245,.25);
  padding: 0 24px 0;
  text-align: center;
}
.inventory-page .header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.inventory-page .logo-wrap {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--ca-blue-mid);
  box-shadow: 0 0 0 6px rgba(26,111,191,.2), 0 0 40px rgba(26,111,191,.35);
  background: #fff;
}
.inventory-page .logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.inventory-page .brand-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .85rem;
  letter-spacing: .3em;
  color: var(--ca-blue-lt);
  margin-bottom: 6px;
}
.inventory-page .brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: .06em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 50px rgba(94,180,245,.4);
}
.inventory-page .brand-tagline {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 8px;
  font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ca-muted);
}
.inventory-page .brand-tagline span { color: var(--ca-blue-lt); }
.inventory-page .header-stats {
  display: flex; gap: 0; border: 1px solid rgba(94,180,245,.2);
  border-radius: 999px; overflow: hidden; margin-top: 8px;
}
.inventory-page .stat {
  padding: 10px 28px; text-align: center; border-right: 1px solid rgba(94,180,245,.2); background: rgba(26,111,191,.1);
}
.inventory-page .stat:last-child { border-right: none; }
.inventory-page .stat-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; line-height: 1; color: var(--ca-blue-lt); display: block;
}
.inventory-page .stat-lbl {
  font-size: .62rem; color: var(--ca-muted); letter-spacing: .12em; text-transform: uppercase;
}

.inventory-page .toolbar-wrap {
  background: rgba(11,41,69,.7); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(94,180,245,.12);
  padding: 14px 24px; position: sticky; top: 72px;
}
.inventory-page .toolbar {
  max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.inventory-page .filter-label {
  font-size: .7rem; font-weight: 700; color: var(--ca-muted); letter-spacing: .14em; text-transform: uppercase; margin-right: 4px; white-space: nowrap;
}
.inventory-page .btn-filter {
  background: rgba(26,111,191,.12); border: 1px solid rgba(94,180,245,.2); color: var(--ca-muted);
  padding: 7px 16px; border-radius: 999px; font-family: 'Nunito', sans-serif; font-size: .78rem; font-weight: 700;
  cursor: pointer; transition: all .18s; white-space: nowrap;
}
.inventory-page .btn-filter:hover { border-color: var(--ca-blue-mid); color: var(--ca-blue-lt); }
.inventory-page .btn-filter.active { background: var(--ca-blue); border-color: var(--ca-blue-mid); color: #fff; }
.inventory-page .search-wrap { margin-left: auto; position: relative; }
.inventory-page .search-wrap input {
  background: rgba(26,111,191,.12); border: 1px solid rgba(94,180,245,.2); color: var(--ca-white);
  padding: 7px 14px 7px 36px; border-radius: 999px; font-family: 'Nunito', sans-serif; font-size: .82rem; width: 210px; outline: none;
}
.inventory-page .search-wrap input::placeholder { color: var(--ca-muted); }
.inventory-page .search-wrap input:focus { border-color: var(--ca-blue-mid); }
.inventory-page .search-wrap svg { position: absolute; left: 11px; top: 50%; transform: translateY(-50%); opacity: .4; }

.inventory-page .main-wrap {
  max-width: 1300px; margin: 0 auto; padding: 28px 24px 80px;
}
.inventory-page .results-meta { font-size: .78rem; color: var(--ca-muted); margin-bottom: 20px; }
.inventory-page .results-meta strong { color: var(--ca-blue-lt); }
.inventory-page .grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 18px;
}
.inventory-page .card {
  background: var(--card-bg-solid); border: 1px solid var(--card-border); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s, border-color .22s; animation: fadeUp .38s ease both;
}
.inventory-page .card:hover {
  transform: translateY(-5px);
  border-color: rgba(94,180,245,.45);
  box-shadow: 0 18px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(94,180,245,.3);
}
.inventory-page .card.flagged { border-color: rgba(245,200,66,.22); }
.inventory-page .card.flagged:hover { border-color: rgba(245,200,66,.5); box-shadow: 0 18px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(245,200,66,.35); }
.inventory-page .card-img {
  position: relative; height: 165px; background: linear-gradient(135deg, #0b2945, #0d2f52); overflow: hidden;
}
.inventory-page .card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}
.inventory-page .card:hover .card-img img { transform: scale(1.07); }
.inventory-page .img-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--ca-muted); font-size: .72rem; opacity: .6;
}
.inventory-page .cat-badge,
.inventory-page .flag-badge,
.inventory-page .low-badge {
  position: absolute;
  font-size: .6rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
}
.inventory-page .cat-badge {
  bottom: 8px; left: 8px; background: rgba(7,28,48,.8); border: 1px solid rgba(94,180,245,.3); color: var(--ca-blue-lt);
  letter-spacing: .1em; text-transform: uppercase;
}
.inventory-page .flag-badge {
  top: 8px; right: 8px; background: rgba(245,200,66,.15); border: 1px solid rgba(245,200,66,.4); color: var(--ca-gold);
}
.inventory-page .low-badge {
  top: 8px; right: 8px; background: rgba(26,184,160,.12); border: 1px solid rgba(26,184,160,.35); color: var(--ca-teal);
}
.inventory-page .card-body { padding: 13px 15px 15px; flex: 1; display: flex; flex-direction: column; gap: 7px; }
.inventory-page .card-name { font-size: .95rem; font-weight: 800; color: #fff; line-height: 1.25; }
.inventory-page .card-meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.inventory-page .meta-pill {
  background: rgba(94,180,245,.08); border: 1px solid rgba(94,180,245,.15); color: var(--ca-muted);
  font-size: .65rem; font-weight: 600; padding: 2px 8px; border-radius: 999px;
}
.inventory-page .card-footer {
  margin-top: auto; display: flex; justify-content: space-between; align-items: flex-end;
  padding-top: 10px; border-top: 1px solid rgba(94,180,245,.1);
}
.inventory-page .price {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; line-height: 1; color: var(--ca-blue-lt);
}
.inventory-page .price.tbd {
  font-family: 'Nunito', sans-serif; font-size: .75rem; font-weight: 600; color: var(--ca-muted); font-style: italic; line-height: 1.4;
}
.inventory-page .qty-wrap { text-align: right; }
.inventory-page .qty-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; line-height: 1; color: #fff; }
.inventory-page .qty-lbl { font-size: .58rem; color: var(--ca-muted); letter-spacing: .1em; text-transform: uppercase; }
.inventory-page .qty-low .qty-num { color: var(--ca-gold); }
.inventory-page .no-results {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px; color: var(--ca-muted); display: none;
}
.inventory-page .no-results p {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .05em; margin-top: 14px;
}



/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(180deg, var(--navy-deeper, #050e1c) 0%, var(--navy) 100%);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid rgba(94,180,245,.1);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: border-color .2s;
}
.testi-card:hover { border-color: rgba(94,180,245,.3); }
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-size: .9rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
  opacity: .85;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-lt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-name { font-size: .85rem; font-weight: 800; color: #fff; }
.testi-loc { font-size: .72rem; color: var(--muted); margin-top: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .fish-layout,
  .svc-layout,
  .contact-layout,
  .faq-grid { grid-template-columns: 1fr; }
  .fish-card-stack { height: 380px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 820px) {
  .site-nav,
  nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 16px;
    background: rgba(4,15,28,.96);
    border: 1px solid rgba(94,180,245,.14);
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 10px 12px; }
  .nav-cta { text-align: center; }
  .section-inner,
  .page-hero,
  #footer { padding-left: 24px; padding-right: 24px; }
  .inventory-page .toolbar-wrap { top: 72px; }
}
@media (max-width: 640px) {
  .hero-content { padding-top: 130px; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-btns,
  .svc-cta-row,
  .service-nav { flex-direction: column; }
  .fish-highlights,
  .why-grid,
  .emrg-issues,
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .inventory-page .header-inner { flex-direction: column; gap: 16px; }
  .inventory-page .header-stats { gap: 0; }
  .inventory-page .stat { padding: 10px 18px; }
  .inventory-page .search-wrap { margin-left: 0; width: 100%; }
  .inventory-page .search-wrap input { width: 100%; }
  .inventory-page .toolbar { gap: 8px; }
}
@media (min-width: 700px) {
  .inventory-page .header-inner { flex-direction: row; text-align: left; gap: 28px; }
  .inventory-page .brand-tagline { justify-content: flex-start; }
  .inventory-page .header-stats { margin-top: 12px; }
}


/* ===== RESTORED HOME / SERVICES DETAIL STYLES ===== */
.fish-card-img{height:200px;background:linear-gradient(135deg,#0b2945,#0d3060);overflow:hidden}
.fish-card-img img{width:100%;height:100%;object-fit:cover}
.fish-card-body{padding:16px}
.fish-card-cat{font-size:.6rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--blue-lt);margin-bottom:6px}
.fish-card-name{font-size:.95rem;font-weight:800;color:#fff;line-height:1.3}
.fish-card-price{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;color:var(--blue-lt);margin-top:8px}
.fish-btn{margin-top:28px;display:inline-block}

.why-section{
  background:
    radial-gradient(ellipse 100% 60% at 50% 50%,rgba(26,111,191,.08) 0%,transparent 70%),
    var(--navy-deeper,#050e1c);
}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px;margin-top:56px}
.why-item{
  position:relative;overflow:hidden;padding:44px 32px 36px;
  background:linear-gradient(145deg,rgba(15,42,76,.9) 0%,rgba(9,26,50,.95) 100%);
  border:1px solid rgba(94,180,245,.12);border-radius:24px;text-align:center;
  transition:transform .28s,border-color .28s,box-shadow .28s;backdrop-filter:blur(12px);
}
.why-item::before{content:'';position:absolute;top:-60px;left:50%;transform:translateX(-50%);width:140px;height:140px;border-radius:50%;background:radial-gradient(circle,rgba(94,180,245,.12) 0%,transparent 70%);transition:opacity .3s;opacity:0}
.why-item:hover{transform:translateY(-8px);border-color:rgba(94,180,245,.35);box-shadow:0 24px 64px rgba(0,0,0,.5),0 0 0 1px rgba(94,180,245,.15),inset 0 1px 0 rgba(255,255,255,.05)}
.why-item:hover::before{opacity:1}
.why-item::after{content:'';position:absolute;top:0;left:20%;right:20%;height:2px;background:linear-gradient(90deg,transparent,var(--blue-lt),transparent);opacity:0;border-radius:999px;transition:opacity .3s}
.why-item:hover::after{opacity:1}
.why-item:hover .why-icon{box-shadow:0 8px 32px rgba(26,111,191,.4);transform:scale(1.08)}
.why-title{font-family:'Bebas Neue',sans-serif;font-size:1.35rem;letter-spacing:.08em;color:#fff;margin-bottom:12px}
.why-desc{font-size:.84rem;color:var(--muted);line-height:1.7;font-weight:400}

.cta-section{
  background:
    radial-gradient(ellipse 80% 100% at 50% 120%,rgba(26,111,191,.4) 0%,transparent 60%),
    var(--navy-deep);
  text-align:center;
}
.cta-section .section-inner{padding:120px 40px}
.cta-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2.5rem,6vw,4.5rem);letter-spacing:.04em;line-height:.95;color:#fff;margin-bottom:20px}
.cta-title em{font-style:normal;color:transparent;-webkit-text-stroke:2px var(--blue-lt)}
.cta-sub{font-size:1rem;color:var(--muted);margin-bottom:40px;font-weight:300;line-height:1.7}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.cta-emergency{background:var(--coral);color:#fff;padding:14px 32px;border-radius:999px;font-weight:800;font-size:.9rem;letter-spacing:.05em;border:none;cursor:pointer;box-shadow:0 0 24px rgba(224,90,74,.35);transition:background .2s,transform .15s}
.cta-emergency:hover{background:#d44838;transform:translateY(-2px)}
.cta-divider{width:1px;height:48px;background:rgba(94,180,245,.15);align-self:center}

.svc-text{}
.svc-visual{position:relative}
.step-body{}
.contact-item-body{}
.form-service-chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{background:rgba(26,111,191,.1);border:1px solid rgba(94,180,245,.2);color:var(--muted);font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;padding:7px 14px;border-radius:999px;cursor:pointer;transition:all .2s;user-select:none}
.chip.selected{background:var(--blue);border-color:var(--blue-mid);color:#fff;box-shadow:0 0 12px rgba(26,111,191,.35)}
.form-submit{width:100%;background:var(--blue);color:#fff;padding:15px;border-radius:12px;border:none;cursor:pointer;font-family:'Bebas Neue',sans-serif;font-size:1.1rem;letter-spacing:.1em;box-shadow:0 0 24px rgba(26,111,191,.4);transition:background .2s,box-shadow .2s,transform .15s;margin-top:6px}
.form-submit:hover{background:var(--blue-mid);transform:translateY(-2px);box-shadow:0 0 36px rgba(37,137,224,.5)}
.form-success{display:none;text-align:center;padding:40px 20px}
.form-success-icon{font-size:3rem;margin-bottom:16px}
.form-success h3{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;letter-spacing:.06em;color:#fff;margin-bottom:10px}
.form-success p{font-size:.88rem;color:var(--muted);line-height:1.7}
.footer-brand-col{}

@media (max-width: 820px){
  .cta-divider{display:none}
}


/* ===== INVENTORY PAGE RESTORED FOOTER/HEADER STYLES ===== */
.inventory-page .header-text{}
.inventory-page .footer-logo{width:56px;height:56px;border-radius:50%;overflow:hidden;margin:0 auto 14px;border:2px solid rgba(94,180,245,.3);background:#fff}
.inventory-page .footer-logo img{width:100%;height:100%;object-fit:cover;display:block}
.inventory-page .footer-brand{font-family:'Bebas Neue',sans-serif;font-size:1.2rem;letter-spacing:.12em;color:var(--ca-blue-lt);margin-bottom:4px}
.inventory-page .footer-tagline{font-size:.68rem;font-weight:700;letter-spacing:.18em;color:var(--ca-muted);text-transform:uppercase;margin-bottom:16px}
.inventory-page .footer-note{font-size:.75rem;color:var(--ca-muted);max-width:500px;margin:0 auto;line-height:1.6}
.inventory-page .footer-note strong{color:var(--ca-gold)}
