:root {
  --color-brand: #F6D102;
  --color-navy-1: #0f1923;
  --color-navy-2: #162431;
  --color-surface-dark: #1c2633;
  --color-text: #282f37;
  --color-text-muted: #5a6777;
  --color-text-faint: #98a4b4;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-brand);
}

.featured-card {
  border: 2px solid #f6d102;
  box-shadow: 0 0 12px oklch(0.7 0.16 60 / 0.25),
              0 4px 10px oklch(0.15 0.01 200 / 0.18);
}

.hero-nautical,
.footer-dark {
  background-color: var(--color-navy-1);
  background-image:
    repeating-linear-gradient(
      to right,
      transparent 0,
      transparent 1px,
      rgba(200, 200, 200, 0.04) 1px,
      rgba(200, 200, 200, 0.04) 4px
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 1px,
      rgba(200, 200, 200, 0.04) 1px,
      rgba(200, 200, 200, 0.04) 4px
    );
  background-size: 16px 16px;
  color: #f8f7f4;
}

.bg-warm-soft {
  background: linear-gradient(
    135deg,
    #f8f6f0 0%,
    #f3f1e8 40%,
    #f8f6f0 100%
  );
}

.card-shadow {
  box-shadow: 0 3px 10px oklch(0.15 0.01 200 / 0.15);
}
/* ================================================
   HOVER STATES & INTERACTIVE MICRO-ANIMATIONS
   Add below existing custom CSS in Zoho Sites
   ================================================ */

/* --- Transition base (applies to everything below) --- */
a, button, .card-shadow, .featured-card, .blog-card,
.service-card, .step-card, .pricing-col, .nav-link,
.btn-primary, .btn-ghost, .trust-item {
  transition:
    background-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    color            180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow       180ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color     180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform        180ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity          180ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Cards: lift on hover --- */
.card-shadow:hover,
.blog-card:hover,
.service-card:hover {
  box-shadow:
    0 6px 20px oklch(0.15 0.01 200 / 0.18),
    0 2px 6px  oklch(0.15 0.01 200 / 0.10);
  transform: translateY(-3px);
}

/* --- Featured card: stronger glow on hover --- */
.featured-card:hover {
  box-shadow:
    0 0 20px oklch(0.7 0.16 60 / 0.35),
    0 8px 20px oklch(0.15 0.01 200 / 0.22);
  transform: translateY(-3px);
}

/* --- Pricing columns: subtle lift --- */
.pricing-col:hover {
  box-shadow:
    0 8px 24px oklch(0.15 0.01 200 / 0.14),
    0 2px 6px  oklch(0.15 0.01 200 / 0.08);
  transform: translateY(-4px);
}

/* --- Primary CTA button (brand yellow) --- */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background-color: var(--color-brand);
  color: var(--color-navy-1);
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #e0be00;
  box-shadow: 0 4px 14px oklch(0.7 0.16 60 / 0.40);
  transform: translateY(-1px);
}
.btn-primary:active {
  background-color: #c9ab00;
  transform: translateY(0);
  box-shadow: none;
}

/* --- Ghost button (dark border, dark text) --- */
.btn-ghost {
  background-color: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(40, 47, 55, 0.30);
  border-radius: 9999px;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
}
.btn-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-navy-1);
  background-color: oklch(0.93 0.06 80 / 0.15);
}

/* --- Ghost button on dark sections --- */
.hero-nautical .btn-ghost,
.footer-dark .btn-ghost {
  color: #f8f7f4;
  border-color: rgba(248, 247, 244, 0.35);
}
.hero-nautical .btn-ghost:hover,
.footer-dark .btn-ghost:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background-color: oklch(0.7 0.16 60 / 0.08);
}

/* --- Text links --- */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--color-brand);
}

/* --- Inline arrow links (e.g. "View QC Services →") --- */
.link-arrow {
  color: var(--color-brand);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.3em;
}
.link-arrow::after {
  content: '→';
  transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Nav links --- */
.nav-link {
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-brand);
  transition: width 200ms cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* --- Form inputs: focus ring --- */
input, textarea, select {
  border: 1.5px solid rgba(40, 47, 55, 0.20);
  border-radius: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  color: var(--color-text);
  background: #ffffff;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px oklch(0.7 0.16 60 / 0.18);
}

/* --- Form inputs on dark sections --- */
.hero-nautical input,
.hero-nautical textarea,
.hero-nautical select {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: #f8f7f4;
}
.hero-nautical input::placeholder,
.hero-nautical textarea::placeholder {
  color: rgba(248,247,244,0.40);
}
.hero-nautical input:focus,
.hero-nautical textarea:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 3px oklch(0.7 0.16 60 / 0.20);
  background: rgba(255,255,255,0.10);
}

/* --- Blog cards: image zoom on hover --- */
.blog-card img {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.blog-card:hover img {
  transform: scale(1.03);
}

/* --- Trust bar items: subtle highlight --- */
.trust-item:hover {
  background: oklch(0.93 0.03 80 / 0.50);
  border-radius: 0.5rem;
}

/* --- Feature rows in dark section --- */
.feature-row {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: border-color 180ms ease;
}
.feature-row:last-child {
  border-bottom: none;
}
.feature-row:hover {
  border-bottom-color: rgba(246, 209, 2, 0.25);
}

/* --- "Most Requested" pill badge --- */
.badge-featured {
  display: inline-block;
  background: var(--color-brand);
  color: var(--color-navy-1);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

/* --- Eyebrow (already defined, extended here) --- */
.eyebrow {
  display: block;
  margin-bottom: 0.5rem;
}

/* --- Section dividers (soft) --- */
.section-divider {
  border: none;
  border-top: 1px solid rgba(40, 47, 55, 0.10);
  margin: 0;
}

/* --- Scroll reveal base (no JS needed — pure CSS opacity trick) --- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease, transform 500ms ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.pill {
  background: #F6D102;
  color: #0f1923;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}