/* =========================================================
   ARB GROUP — DESIGN TOKENS
   Palette:
     --navy        #052A43  deep abyss (dark sections, hero)
     --navy-2      #0A3A5C  secondary navy for gradients
     --blue        #0799EE  brand primary
     --blue-light  #4FBBFF  hover / glow accent
     --sand        #E7B978  warm trade-ledger accent (used sparingly)
     --ice         #F5FAFD  light section tint
     --white       #FFFFFF
   Type:
     Display / body : "Google Sans Flex" (variable, weighted by role)
     Utility / labels: "IBM Plex Mono" — trading-ticker register for
                        eyebrows, numerals and data, echoing the market
                        floor this company was built on.
   ========================================================= */

:root {
  --navy: #052A43;
  --navy-2: #0A3A5C;
  --blue: #0799EE;
  --blue-light: #4FBBFF;
  --sand: #E7B978;
  --ice: #F5FAFD;
  --white: #FFFFFF;
  --ink: #0B1F2C;
  --muted: #5B7386;

  --font-display: "Google Sans Flex", "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-soft: 0 20px 60px -20px rgba(5, 42, 67, 0.25);
  --shadow-deep: 0 30px 80px -30px rgba(5, 42, 67, 0.55);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--blue); color: var(--white); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1260px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .container { padding-left: 32px; padding-right: 32px; }
}
@media (min-width: 1200px) {
  .container { padding-left: 40px; padding-right: 40px; }
}

/* =========================================================
   TYPOGRAPHY UTILITIES
   ========================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow-dark {
  color: var(--blue);
  background: rgba(7, 153, 238, 0.08);
  border: 1px solid rgba(7, 153, 238, 0.18);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title.text-white { color: var(--white); }

.section-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}
.section-text-light { color: rgba(255,255,255,0.72); }

.section { position: relative; overflow: hidden; padding: 110px 0; }
.section-tint { background: var(--ice); }
.section-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
}

@media (max-width: 767.98px) {
  .section { padding: 72px 0; }
}

/* =========================================================
   BUTTONS
   ========================================================= */

.arb-btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 1px solid var(--blue);
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: 0 12px 30px -10px rgba(7, 153, 238, 0.55);
}
.arb-btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -12px rgba(5, 42, 67, 0.55);
}

.arb-btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(6px);
  transition: all 0.35s var(--ease);
}
.arb-btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  transform: translateY(-2px);
}

.arb-btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.35s var(--ease);
}
.arb-btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* =========================================================
   NAVBAR
   ========================================================= */

.arb-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: rgba(255, 255, 255, 0);
}
.arb-nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 30px -12px rgba(5, 42, 67, 0.18);
}

.navbar-brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 40px; width: auto; transition: height 0.35s var(--ease); }
.arb-nav.scrolled .brand-logo { height: 34px; }

.brand-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--white);
  transition: color 0.35s var(--ease);
}
.brand-text strong { font-weight: 700; }
.arb-nav.scrolled .brand-text { color: var(--navy); }

.arb-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  padding: 8px 14px !important;
  position: relative;
  transition: color 0.35s var(--ease);
}
.arb-nav.scrolled .nav-link { color: var(--navy); }
.arb-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--blue-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.arb-nav.scrolled .nav-link::after { background: var(--blue); }
.arb-nav .nav-link:hover::after { transform: scaleX(1); }

.navbar-toggler {
  border: none;
  padding: 6px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  width: 24px; height: 2px;
  background: var(--white);
  display: block;
  border-radius: 2px;
  transition: background 0.35s var(--ease);
}
.arb-nav.scrolled .toggler-bar { background: var(--navy); }

@media (max-width: 991.98px) {
  .arb-nav .navbar-collapse {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    margin-top: 14px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
  }
  /* Collapse panel always has a light background, so links stay navy regardless of scroll state */
  .arb-nav .navbar-collapse .nav-link { color: var(--navy); }
  .arb-nav .navbar-collapse .nav-link::after { background: var(--blue); }
}

/* =========================================================
   GLASSMORPHISM CARDS
   ========================================================= */

.glass-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.glass-card-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: var(--radius-md);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  padding: 172px 0 90px;
  background: radial-gradient(120% 130% at 15% 0%, var(--navy-2) 0%, var(--navy) 55%, #031b2c 100%);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-waves { position: absolute; bottom: 0; left: 0; width: 200%; height: 60%; will-change: transform; }
.hero-waves-back { animation: wave-drift 26s linear infinite; }
.hero-waves-front { animation: wave-drift 16s linear infinite reverse; }

@keyframes wave-drift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-inner { position: relative; z-index: 2; }

.hero .eyebrow { color: var(--blue-light); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.typed-wrap { display: inline-block; min-height: 1.2em; }
.typed-text {
  background: linear-gradient(90deg, var(--blue-light), var(--sand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.typed-cursor {
  color: var(--blue-light);
  animation: blink 1s step-end infinite;
  font-weight: 300;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.hero-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
}
.hero-point i {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(7, 153, 238, 0.16);
  border: 1px solid rgba(7,153,238,0.3);
  color: var(--blue-light);
  border-radius: 10px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.hero-visual { position: relative; max-width: 560px; margin-left: auto; }
.hero-frame { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.hero-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: right center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(255,255,255,0.15);
}

@media (max-width: 991.98px) {
  .hero-visual { max-width: 460px; margin-left: 0; }
}
.hero-badge {
  position: absolute;
  left: -18px; bottom: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: var(--navy);
}
.hero-badge i { color: var(--blue); font-size: 1.4rem; }
.hero-badge strong { display: block; font-size: 0.9rem; }
.hero-badge span { display: block; font-size: 0.76rem; color: var(--muted); }

@media (max-width: 575.98px) {
  .hero-badge {
    left: 8px;
    right: 8px;
    bottom: -16px;
    gap: 8px;
    padding: 10px 12px;
  }
  .hero-badge i { font-size: 1.1rem; }
  .hero-badge strong { font-size: 0.8rem; }
  .hero-badge span { font-size: 0.7rem; }
}

@media (max-width: 991.98px) {
  .hero { padding-top: 140px; }
}

/* =========================================================
   TICKER BAND (signature element)
   ========================================================= */

.ticker-band {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 32s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-set { display: flex; align-items: center; flex-shrink: 0; }
.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-item i { color: var(--blue-light); }
.ticker-dot { color: rgba(7,153,238,0.5); font-size: 6px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT
   ========================================================= */

.about-media { position: relative; padding: 20px 30px 30px 0; }
.about-img-main { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.about-img-float {
  position: absolute;
  width: 46%;
  right: -10px; bottom: -10px;
  border-radius: var(--radius-md);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-deep);
}
.about-stat {
  position: absolute;
  top: 0; left: -10px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}
.stat-number { font-family: var(--font-mono); font-weight: 600; font-size: 1.5rem; color: var(--blue); }
.stat-label { font-size: 0.75rem; color: var(--muted); }

.about-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.about-list-item { display: flex; align-items: center; gap: 10px; font-size: 0.96rem; color: var(--ink); }
.about-list-item i {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .about-media { padding: 0 30px 30px 0; margin-bottom: 20px; }
}

/* =========================================================
   FOUNDER CARD
   ========================================================= */

.founder-card {
  position: relative;
  margin-top: 28px;
  padding: 28px 26px 24px;
  background: rgba(5, 42, 67, 0.03);
  border: 1px solid rgba(5, 42, 67, 0.08);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-md);
}
.founder-quote-icon { color: var(--blue); opacity: 0.35; font-size: 1.4rem; }
.founder-quote {
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  margin: 6px 0 16px;
}
.founder-person { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.founder-avatar {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  overflow: hidden;
}
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-person strong { display: block; color: var(--navy); font-size: 0.98rem; }
.founder-person span { display: block; font-size: 0.82rem; color: var(--muted); }
.founder-bio { font-size: 0.9rem; line-height: 1.7; color: var(--muted); margin: 0; }

.founder-card-centered {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 44px;
}
.founder-card-centered .founder-quote-icon { font-size: 1.6rem; }
.founder-card-centered .founder-quote { font-size: 1.2rem; margin: 12px 0 20px; }
.founder-card-centered .founder-person { justify-content: center; text-align: left; }
.founder-card-centered .founder-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
.founder-card-centered .founder-bio { text-align: left; }

@media (max-width: 575.98px) {
  .founder-card-centered { padding: 28px 22px; }
}

.press-clipping {
  max-width: 720px;
  margin: 56px auto 0;
  text-align: center;
}
.press-clipping .eyebrow { margin-bottom: 18px; }
.press-clipping-img {
  width: 100%;
  height: auto;
  animation: paper-float 6s ease-in-out infinite;
  will-change: transform, filter;
}

@keyframes paper-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
    filter: drop-shadow(0 18px 26px rgba(5, 42, 67, 0.24));
  }
  50% {
    transform: translateY(-16px) rotate(-1.8deg);
    filter: drop-shadow(0 38px 48px rgba(5, 42, 67, 0.15));
  }
}

/* =========================================================
   SERVICE CARDS
   ========================================================= */

.service-card {
  padding: 34px 26px;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--navy-2));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* =========================================================
   COMPANY CARDS
   ========================================================= */

.company-card {
  padding: 36px 28px;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(5,42,67,0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px -18px rgba(5,42,67,0.18);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.company-card:hover { transform: translateY(-6px); border-color: rgba(7,153,238,0.35); box-shadow: var(--shadow-soft); }
.company-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(7,153,238,0.1);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.company-card h3 { font-size: 1.08rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.company-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.why-visual { margin-top: 30px; }
.why-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); border: 1px solid rgba(255,255,255,0.12); }

.why-card {
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.why-card i { color: var(--blue-light); font-size: 1.3rem; margin-bottom: 14px; display: block; }
.why-card h4 { color: var(--white); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.62); font-size: 0.86rem; line-height: 1.55; margin: 0; }

/* =========================================================
   PROCESS
   ========================================================= */

.process-card {
  padding: 34px 10px 10px;
  border-top: 2px solid rgba(5,42,67,0.1);
  height: 100%;
  transition: border-color 0.4s var(--ease);
}
.process-card:hover { border-color: var(--blue); }
.process-num {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--blue);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.process-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.process-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin: 0; }

.process-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
  padding: 28px 26px;
  background: rgba(5, 42, 67, 0.03);
  border: 1px solid rgba(5, 42, 67, 0.08);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius-md);
}
.process-highlight-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.process-highlight h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.process-highlight p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin: 0; }

@media (max-width: 575.98px) {
  .process-highlight { flex-direction: column; }
}

/* =========================================================
   GALLERY
   ========================================================= */

.video-embed {
  position: relative;
  display: block;
  width: 100%;
  max-width: 860px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(5,42,67,0.08);
  background: var(--navy);
  cursor: pointer;
}
.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}
.video-embed:hover .video-thumb { transform: scale(1.04); filter: brightness(0.85); }
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(7, 153, 238, 0.92);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 6px;
  box-shadow: 0 16px 40px -12px rgba(5,42,67,0.6);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.video-embed:hover .video-play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--blue); }

@media (max-width: 575.98px) {
  .video-play-btn { width: 64px; height: 64px; font-size: 1.2rem; }
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 30px -18px rgba(5,42,67,0.25);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }

/* =========================================================
   CONTACT
   ========================================================= */

.contact-info-grid { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  align-items: flex-start;
}
.contact-info-card i { color: var(--blue-light); font-size: 1.15rem; margin-top: 3px; }
.contact-info-card h4 { color: var(--white); font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; line-height: 1.5; }
.contact-info-card a { color: rgba(255,255,255,0.85); }
.contact-info-card a:hover { color: var(--blue-light); }

.contact-form { padding: 30px; margin-bottom: 20px; }
.contact-form .form-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 6px; }
.arb-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
}
.arb-input::placeholder { color: rgba(255,255,255,0.35); }
.arb-input:focus {
  background: rgba(255,255,255,0.09);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(7,153,238,0.2);
}
.form-status { margin-top: 14px; font-size: 0.88rem; color: var(--blue-light); min-height: 1.2em; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer { background: #031b2c; padding: 70px 0 30px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo { height: 42px; filter: brightness(0) invert(1); }
.footer-brand-text { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--white); }
.footer-brand-text strong { font-weight: 700; }
.footer-text { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer h5 { color: var(--white); font-size: 0.95rem; font-weight: 600; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links li { color: rgba(255,255,255,0.5); font-size: 0.88rem; line-height: 1.5; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--blue-light); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-bottom {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 18px;
}
.footer-credit a { color: rgba(255,255,255,0.6); transition: color 0.3s var(--ease); }
.footer-credit a:hover { color: var(--blue-light); }

@media (max-width: 575.98px) {
  .footer-bottom { flex-direction: column; gap: 6px; }
}

/* =========================================================
   FLOATING WHATSAPP + BACK TO TOP
   ========================================================= */

.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  z-index: 999;
  animation: pulse-wa 2.6s ease-in-out infinite;
  transition: transform 0.3s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6); }
  50% { box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.9), 0 0 0 10px rgba(37,211,102,0.08); }
}

.back-to-top {
  position: fixed;
  right: 24px; bottom: 92px;
  width: 44px; height: 44px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(5,42,67,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.35s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); color: var(--white); }

@media (max-width: 575.98px) {
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.5rem; right: 16px; bottom: 16px; }
  .back-to-top { right: 16px; bottom: 78px; width: 40px; height: 40px; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   DECORATIVE SWIMMING FISH
   ========================================================= */

.fish-school {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  color: var(--blue);
  opacity: 0.85;
  width: 4px;
  height: 4px;
}
.fish-school.fish-light { color: var(--blue-light); }

.swim-fish {
  position: absolute;
  opacity: 0.16;
}
.swim-fish svg { width: 100%; height: 100%; fill: currentColor; display: block; }

/* Members of the school: relative offsets from the school's anchor point, each with its own gentle bob so the group reads as alive rather than one rigid unit */
.fish-school .swim-fish:nth-child(1)  { width: 46px; height: 27.6px; top: -14px; left: -6px;  animation: fish-bob 2.9s ease-in-out infinite; }
.fish-school .swim-fish:nth-child(2)  { width: 32px; height: 19.2px; top: 6px;   left: -34px; opacity: 0.13;  animation: fish-bob 3.2s ease-in-out infinite; animation-delay: -1.1s; }
.fish-school .swim-fish:nth-child(3)  { width: 24px; height: 14.4px; top: 18px;  left: 16px;  opacity: 0.11;  animation: fish-bob 2.5s ease-in-out infinite; animation-delay: -0.6s; }
.fish-school .swim-fish:nth-child(4)  { width: 20px; height: 12px;   top: -28px; left: -42px; opacity: 0.095; animation: fish-bob 3.6s ease-in-out infinite; animation-delay: -1.8s; }
.fish-school .swim-fish:nth-child(5)  { width: 26px; height: 15.6px; top: -4px;  left: 32px;  opacity: 0.09;  animation: fish-bob 2.2s ease-in-out infinite; animation-delay: -0.3s; }
.fish-school .swim-fish:nth-child(6)  { width: 18px; height: 10.8px; top: 26px;  left: -20px; opacity: 0.085; animation: fish-bob 3.1s ease-in-out infinite; animation-delay: -2.1s; }
.fish-school .swim-fish:nth-child(7)  { width: 22px; height: 13.2px; top: -20px; left: 48px;  opacity: 0.08;  animation: fish-bob 2.7s ease-in-out infinite; animation-delay: -1.4s; }
.fish-school .swim-fish:nth-child(8)  { width: 16px; height: 9.6px;  top: 12px;  left: -54px; opacity: 0.075; animation: fish-bob 3.8s ease-in-out infinite; animation-delay: -0.8s; }
.fish-school .swim-fish:nth-child(9)  { width: 20px; height: 12px;   top: 32px;  left: 36px;  opacity: 0.07;  animation: fish-bob 2.4s ease-in-out infinite; animation-delay: -2.4s; }
.fish-school .swim-fish:nth-child(10) { width: 14px; height: 8.4px;  top: -34px; left: 8px;   opacity: 0.065; animation: fish-bob 3.4s ease-in-out infinite; animation-delay: -1.6s; }

.fish-school.fish-light .swim-fish:nth-child(1)  { opacity: 0.2; }
.fish-school.fish-light .swim-fish:nth-child(2)  { opacity: 0.17; }
.fish-school.fish-light .swim-fish:nth-child(3)  { opacity: 0.15; }
.fish-school.fish-light .swim-fish:nth-child(4)  { opacity: 0.13; }
.fish-school.fish-light .swim-fish:nth-child(5)  { opacity: 0.12; }
.fish-school.fish-light .swim-fish:nth-child(6)  { opacity: 0.11; }
.fish-school.fish-light .swim-fish:nth-child(7)  { opacity: 0.1; }
.fish-school.fish-light .swim-fish:nth-child(8)  { opacity: 0.09; }
.fish-school.fish-light .swim-fish:nth-child(9)  { opacity: 0.08; }
.fish-school.fish-light .swim-fish:nth-child(10) { opacity: 0.07; }

@keyframes fish-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes swim-a {
  0%   { left: -8%;  top: 18%;  transform: scaleX(-1) rotate(0deg); }
  25%  { left: 20%;  top: 8%;   transform: scaleX(-1) rotate(3deg); }
  50%  { left: 50%;  top: 30%;  transform: scaleX(-1) rotate(-2deg); }
  75%  { left: 80%;  top: 15%;  transform: scaleX(-1) rotate(2deg); }
  100% { left: 108%; top: 25%;  transform: scaleX(-1) rotate(0deg); }
}
@keyframes swim-b {
  0%   { left: 108%; top: 65%;  transform: scaleX(1) rotate(0deg); }
  25%  { left: 75%;  top: 80%;  transform: scaleX(1) rotate(-3deg); }
  50%  { left: 45%;  top: 55%;  transform: scaleX(1) rotate(2deg); }
  75%  { left: 15%;  top: 70%;  transform: scaleX(1) rotate(-2deg); }
  100% { left: -8%;  top: 60%;  transform: scaleX(1) rotate(0deg); }
}
@keyframes swim-c {
  0%   { left: -8%;  top: 70%;  transform: scaleX(-1) rotate(-2deg); }
  25%  { left: 25%;  top: 50%;  transform: scaleX(-1) rotate(3deg); }
  50%  { left: 55%;  top: 20%;  transform: scaleX(-1) rotate(0deg); }
  75%  { left: 80%;  top: 40%;  transform: scaleX(-1) rotate(-2deg); }
  100% { left: 108%; top: 30%;  transform: scaleX(-1) rotate(2deg); }
}
@keyframes swim-d {
  0%   { left: 108%; top: 25%;  transform: scaleX(1) rotate(2deg); }
  25%  { left: 70%;  top: 45%;  transform: scaleX(1) rotate(-2deg); }
  50%  { left: 40%;  top: 65%;  transform: scaleX(1) rotate(0deg); }
  75%  { left: 15%;  top: 40%;  transform: scaleX(1) rotate(3deg); }
  100% { left: -8%;  top: 20%;  transform: scaleX(1) rotate(-2deg); }
}

.school-1 { animation: swim-a 32s ease-in-out infinite; animation-delay: -4s; }
.school-2 { animation: swim-b 24s ease-in-out infinite; animation-delay: -9s; }
.school-3 { animation: swim-c 38s ease-in-out infinite; animation-delay: -14s; }
.school-4 { animation: swim-d 28s ease-in-out infinite; animation-delay: -2s; }
.school-5 { animation: swim-a 26s ease-in-out infinite; animation-delay: -18s; }
.school-6 { animation: swim-b 34s ease-in-out infinite; animation-delay: -6s; }
.school-7 { animation: swim-c 30s ease-in-out infinite; animation-delay: -11s; }
.school-8 { animation: swim-d 32s ease-in-out infinite; animation-delay: -16s; }

@media (max-width: 767.98px) {
  .fish-school .swim-fish:nth-child(1)  { opacity: 0.28; }
  .fish-school .swim-fish:nth-child(2)  { opacity: 0.22; }
  .fish-school .swim-fish:nth-child(3)  { opacity: 0.18; }
  .fish-school .swim-fish:nth-child(4)  { opacity: 0.15; }
  .fish-school .swim-fish:nth-child(5)  { opacity: 0.13; }
  .fish-school .swim-fish:nth-child(6)  { opacity: 0.12; }
  .fish-school .swim-fish:nth-child(7)  { opacity: 0.11; }
  .fish-school .swim-fish:nth-child(8)  { opacity: 0.1; }
  .fish-school .swim-fish:nth-child(9)  { opacity: 0.09; }
  .fish-school .swim-fish:nth-child(10) { opacity: 0.08; }
  .fish-school.fish-light .swim-fish:nth-child(1)  { opacity: 0.32; }
  .fish-school.fish-light .swim-fish:nth-child(2)  { opacity: 0.26; }
  .fish-school.fish-light .swim-fish:nth-child(3)  { opacity: 0.21; }
  .fish-school.fish-light .swim-fish:nth-child(4)  { opacity: 0.18; }
  .fish-school.fish-light .swim-fish:nth-child(5)  { opacity: 0.16; }
  .fish-school.fish-light .swim-fish:nth-child(6)  { opacity: 0.14; }
  .fish-school.fish-light .swim-fish:nth-child(7)  { opacity: 0.13; }
  .fish-school.fish-light .swim-fish:nth-child(8)  { opacity: 0.12; }
  .fish-school.fish-light .swim-fish:nth-child(9)  { opacity: 0.11; }
  .fish-school.fish-light .swim-fish:nth-child(10) { opacity: 0.1; }
}
