/* ============================================================
   THE ARK SHIPPING SERVICES - Main Stylesheet
   Author: Corporate Design System
   Version: 1.0.0
   ============================================================ */

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  /* Brand Colors */
  --navy-dark:    #1f2f5a;
  --navy-medium:  #2c3e7a;
  --accent-blue:  #5fd1e6;
  --cta-red:      #e63946;
  --white:        #ffffff;
  --off-white:    #f4f7fb;
  --light-gray:   #e8edf5;
  --mid-gray:     #8a96b0;
  --dark-text:    #1a1e2e;
  --body-text:    #3d4560;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', 'Segoe UI', Helvetica, sans-serif;
  --font-mono:    'Courier New', monospace;

  /* Spacing */
  --section-pad:  100px 0;
  --container-w:  1280px;
  --container-px: clamp(1.25rem, 5vw, 3rem);

  /* Effects */
  --shadow-card:  0 4px 24px rgba(31, 47, 90, 0.10);
  --shadow-hover: 0 12px 48px rgba(31, 47, 90, 0.20);
  --shadow-nav:   0 2px 24px rgba(31, 47, 90, 0.18);
  --radius:       6px;
  --radius-lg:    12px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index layers */
  --z-nav:      1000;
  --z-overlay:  900;
  --z-modal:    1100;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

input, textarea, select {
  font-family: var(--font-body);
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

p {
  font-size: 1.05rem;
  color: var(--body-text);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-blue);
}

.section-title {
  font-family: var(--font-heading);
  color: var(--navy-dark);
  margin-bottom: 1.25rem;
}

.section-title .highlight {
  color: var(--cta-red);
  position: relative;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--body-text);
  max-width: 640px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s ease;
}

.btn:hover::before { transform: translateX(100%) skewX(-15deg); }

.btn-primary {
  background: var(--cta-red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  background: #c0303c;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.65);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-navy {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.btn-navy:hover {
  background: var(--navy-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  padding: 1.35rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(20, 30, 62, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-nav);
}

/* For internal pages, start with solid background */
.navbar.solid {
  background: rgba(20, 30, 62, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.85rem 0;
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
 /* background: linear-gradient(135deg, var(--accent-blue), var(--navy-medium));*/
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
 /* box-shadow: 0 2px 12px rgba(95, 209, 230, 0.3);*/
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-text span {
  font-size: 0.72rem;
  color: var(--accent-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  letter-spacing: 0.04em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--cta-red);
  color: var(--white) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(230, 57, 70, 0.3);
  transition: all var(--transition) !important;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: #c0303c !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4) !important;
}

/* Mobile menu toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  z-index: calc(var(--z-nav) + 10);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) - 1);
  background: rgba(20, 30, 62, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: all var(--transition);
  pointer-events: none;
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav .nav-link {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  padding: 0.75rem 2rem;
  text-align: center;
  color: var(--white);
  letter-spacing: 0.02em;
}

.mobile-nav .nav-cta {
  margin-top: 1rem;
  font-size: 1rem !important;
  padding: 0.85rem 2.5rem !important;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235fd1e6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a {
  color: var(--accent-blue);
  transition: color var(--transition);
}

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

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video,
.hero-video-wrap .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-video-wrap .hero-bg-img {
  /* Fallback gradient + pattern for mobile / no-video */
  background: linear-gradient(160deg, #0d1a3a 0%, #1f2f5a 40%, #2c3e7a 100%);
  display: none;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 22, 48, 0.88) 0%,
    rgba(31, 47, 90, 0.72) 50%,
    rgba(31, 47, 90, 0.40) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(95, 209, 230, 0.15);
  border: 1px solid rgba(95, 209, 230, 0.35);
  color: var(--accent-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s 0.2s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 780px;
  animation: fadeInUp 0.8s 0.4s both;
}

.hero-title .accent-line {
  display: block;
  color: var(--accent-blue);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 0.8s 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s both;
}

.scroll-dot {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* Decorative geo shapes */
.hero-geo {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: 0.15;
  animation: fadeIn 1.5s 1s both;
}

.hero-geo span {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
}

/* ============================================================
   SECTION: STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy-dark);
  padding: 2rem 0;
  border-bottom: 1px solid rgba(95, 209, 230, 0.15);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--accent-blue);
  font-weight: 700;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  display: block;
}

/* ============================================================
   SECTION: SERVICES (Home Preview)
   ============================================================ */
.section {
  padding: var(--section-pad);
}

.section-bg-light { background: var(--off-white); }
.section-bg-navy  { background: var(--navy-dark); }

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

.section-header.center {
  text-align: center;
}

.section-header.center .section-label {
  justify-content: center;
}

.section-header.center .section-label::before { display: none; }

.section-header.center .section-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent-blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--navy-medium));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-blue);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(95, 209, 230, 0.12), rgba(31, 47, 90, 0.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
  border: 1px solid rgba(95, 209, 230, 0.2);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  border-color: var(--navy-medium);
  transform: scale(1.08) rotate(-4deg);
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-medium);
  letter-spacing: 0.04em;
  transition: all var(--transition);
}

.service-link::after {
  content: '→';
  transition: transform var(--transition);
}

.service-card:hover .service-link { color: var(--cta-red); }
.service-card:hover .service-link::after { transform: translateX(4px); }

/* ============================================================
   SECTION: WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-content .section-desc {
  margin-bottom: 2rem;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.why-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border-left-color: var(--accent-blue);
  transform: translateX(4px);
}

.why-feature-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}

.why-feature-text h4 {
  font-size: 1rem;
  color: var(--navy-dark);
  margin-bottom: 0.3rem;
}

.why-feature-text p {
  font-size: 0.9rem;
  color: var(--body-text);
  line-height: 1.6;
}

.why-image-wrap {
  position: relative;
}

.why-image-block {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-medium));
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.why-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}

.why-image-inner-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}

.why-image-inner-text h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.why-image-inner-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.why-float-badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--cta-red);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
}

.why-float-badge strong {
  font-size: 1.4rem;
  display: block;
  font-family: var(--font-heading);
}

/* ============================================================
   SECTION: COVERAGE AREA
   ============================================================ */
.coverage-bg {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  position: relative;
  overflow: hidden;
}

.coverage-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235fd1e6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.coverage-grid .section-title,
.coverage-grid .section-desc { color: var(--white); }

.coverage-grid .section-desc { color: rgba(255,255,255,0.7); }

.port-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.port-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(95, 209, 230, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}

.port-card:hover {
  background: rgba(95, 209, 230, 0.12);
  border-color: var(--accent-blue);
  transform: translateY(-4px);
}

.port-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.port-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.port-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

.port-card-badge {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-weight: 700;
}

/* ============================================================
   SECTION: CONTACT PREVIEW
   ============================================================ */
.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

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

.contact-info-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.25rem;
  font-family: var(--font-body);
}

.contact-info-text p, .contact-info-text a {
  font-size: 1rem;
  color: var(--navy-dark);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-info-text a:hover { color: var(--cta-red); }

/* Quick form card */
.quick-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(31, 47, 90, 0.12);
  border-top: 4px solid var(--navy-dark);
}

.quick-form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.quick-form-card p {
  font-size: 0.95rem;
  color: var(--mid-gray);
  margin-bottom: 1.75rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--off-white);
  transition: all var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy-medium);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(44, 62, 122, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, #111929 0%, #0a0f1e 100%);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta-red), var(--accent-blue), var(--navy-medium));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo-text strong { font-size: 1.1rem; }

.footer-brand-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--navy-medium);
  border-color: var(--accent-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent-blue);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a::before {
  content: '›';
  color: var(--accent-blue);
  font-size: 1rem;
  transition: transform var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

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

.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-contact-item span:last-child {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  display: block;
}

.footer-contact-item a:hover { color: var(--accent-blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--accent-blue); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 85%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-img-main::after {
  content: '⚓';
  position: absolute;
  font-size: 6rem;
  opacity: 0.06;
  bottom: -1rem;
  right: -1rem;
}

.about-img-accent {
  width: 55%;
  aspect-ratio: 3/2;
  background: linear-gradient(135deg, var(--accent-blue), #3aa8bf);
  border-radius: var(--radius-lg);
  position: absolute;
  bottom: -2.5rem;
  right: -1rem;
  border: 4px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
}

.about-img-accent strong {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
}

.about-img-accent span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  border-bottom: 3px solid transparent;
  transition: all var(--transition);
}

.value-card:hover {
  border-bottom-color: var(--accent-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.value-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

/* Team */
.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border: 4px solid var(--light-gray);
  transition: all var(--transition);
}

.team-card:hover .team-photo {
  border-color: var(--accent-blue);
  transform: scale(1.05);
}

.team-card h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.team-card .role {
  font-size: 0.85rem;
  color: var(--cta-red);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-detail-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-medium));
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-detail-header .icon {
  font-size: 2rem;
  width: 56px;
  height: 56px;
  background: rgba(95, 209, 230, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(95, 209, 230, 0.3);
}

.service-detail-header h3 {
  color: var(--white);
  font-size: 1.25rem;
}

.service-detail-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.service-detail-body {
  padding: 2rem;
}

.service-detail-body p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.feature-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--body-text);
}

.feature-list li::before {
  content: '✓';
  color: var(--accent-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================================
   QUOTE PAGE
   ============================================================ */
.quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.quote-info-card {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-medium));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.quote-info-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.quote-info-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  width: 32px;
  height: 32px;
  background: rgba(95, 209, 230, 0.15);
  border: 1px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.quote-step-text h4 {
  color: var(--white);
  font-size: 0.92rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.quote-step-text p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin: 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 8px 50px rgba(31, 47, 90, 0.12);
  border-top: 4px solid var(--navy-dark);
}

.quote-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.quote-form-card > p {
  color: var(--mid-gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-section-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-blue);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}

.form-section-title:first-of-type { margin-top: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-details-card {
  background: linear-gradient(160deg, var(--navy-dark), var(--navy-medium));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}

.contact-details-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-details-card > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.contact-detail-item:hover {
  background: rgba(95, 209, 230, 0.1);
  border-color: rgba(95, 209, 230, 0.25);
}

.contact-detail-item .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail-item h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail-item a:hover { color: var(--accent-blue); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 8px 50px rgba(31, 47, 90, 0.12);
  border-top: 4px solid var(--cta-red);
}

.contact-form-card h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-form-card > p {
  color: var(--mid-gray);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #edf2f7, #e1e8f0);
  border-radius: var(--radius-lg);
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px dashed var(--light-gray);
  overflow: hidden;
  position: relative;
}

.map-placeholder::before {
  content: '📍';
  font-size: 2.5rem;
}

.map-placeholder p {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-weight: 600;
}

.map-placeholder span {
  font-size: 0.78rem;
  color: var(--mid-gray);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--cta-red) 0%, #c0303c 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- Tablet: 768px+ ---- */
@media (max-width: 1023px) {
  :root { --section-pad: 70px 0; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-image-wrap { display: none; }
  .coverage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-preview-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-stack { margin-bottom: 4rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .quote-info-card { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-details-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ---- Mobile: up to 767px ---- */
@media (max-width: 767px) {
  :root { --section-pad: 55px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .port-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-geo { display: none; }
  .about-img-accent { display: none; }
  .why-float-badge { display: none; }

  .quote-form-card,
  .contact-form-card { padding: 1.75rem; }
  .quick-form-card { padding: 1.75rem; }

  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

/* ---- Small mobile: 320px ---- */
@media (max-width: 400px) {
  .port-cards { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ---- Large screens: 1440px+ ---- */
@media (min-width: 1440px) {
  :root { --container-w: 1380px; }
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--navy-medium); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--navy-dark); }
