/*
  services.css — SeaNath Service Pages v2
  Shared stylesheet for all 7 service sub-pages.
  Design language: identical to index.html.
  Updated: 2026-06
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

:root {
  --bg: #070d18;
  --bg-2: #0a1424;
  --surface: rgba(255,255,255,.075);
  --surface-soft: rgba(255,255,255,.045);
  --line: rgba(255,255,255,.14);
  --text: #f6f8fc;
  --muted: rgba(246,248,252,.74);
  --muted-2: rgba(246,248,252,.55);
  --primary: #4bf0c1;
  --primary-2: #7bbcff;
  --gold: #f5cf7a;
  --whatsapp: #25d366;
  --whatsapp-2: #1ebd5b;
  --shadow-xl: 0 30px 110px rgba(0,0,0,.55);
  --shadow-lg: 0 20px 70px rgba(0,0,0,.35);
  --shadow-md: 0 12px 40px rgba(0,0,0,.25);
  --radius: 28px;
  --radius-lg: 36px;
  --max: 1200px;
  --ease-out: cubic-bezier(.16,1,.3,1);
}

body {
  margin: 0;
  font-family: "Assistant","Heebo",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 12% 6%, rgba(75,240,193,.18), transparent 32%),
    radial-gradient(ellipse at 88% -4%, rgba(123,188,255,.18), transparent 28%),
    radial-gradient(ellipse at 50% 80%, rgba(245,207,122,.08), transparent 30%),
    linear-gradient(160deg,#03070e 0%,var(--bg) 42%,#0a1728 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom,rgba(0,0,0,1),rgba(0,0,0,.3),transparent 90%);
  z-index: -3;
}

a { color: inherit; text-decoration: none; }
::selection { background: rgba(75,240,193,.28); color: #fff; }

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed; top: 10px; right: 10px; padding: 10px 14px;
  border-radius: 999px; background: #fff; color: #070d18;
  z-index: 1000; transform: translateY(-160%); font-weight: 800; font-size: 14px;
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed; top: 0; right: 0; height: 3px; width: 0%; z-index: 999;
  background: linear-gradient(90deg,var(--primary),var(--primary-2),var(--gold));
  box-shadow: 0 0 20px rgba(75,240,193,.6);
  transition: width .1s linear;
}

/* ===== ORB DECORATION ===== */
.orb {
  position: fixed; border-radius: 999px; filter: blur(28px); opacity: .35;
  pointer-events: none; z-index: -1;
  animation: orb-float 10s ease-in-out infinite alternate;
}
.orb-1 { width: 280px; height: 280px; background: rgba(75,240,193,.24); top: 10%; right: 3%; }
.orb-2 { width: 220px; height: 220px; background: rgba(123,188,255,.20); top: 55%; left: 1%; animation-delay: -2.5s; }
@keyframes orb-float { to { transform: translate3d(-28px,38px,0) scale(1.07); } }

/* ===== LAYOUT ===== */
.shell { width: min(var(--max),calc(100% - 36px)); margin: 0 auto; }

/* Logo / home link — keep for backward compat */
.header-logo {
  display: flex; align-items: center; gap: 12px; min-width: 0; flex-shrink: 0;
  text-decoration: none;
}
.header-logo-mark {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg,#1a2b48,#0a1424);
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 24px rgba(75,240,193,.18);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px; color: var(--primary);
}
.header-logo-text {
  font-size: 17px; font-weight: 800; color: #fff; letter-spacing: -.015em;
  white-space: nowrap;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: 9px 10px; cursor: pointer;
}
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--muted); border-radius: 2px; transition: .25s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 95;
  background: rgba(5,10,20,.97);
  backdrop-filter: blur(16px);
  flex-direction: column;
  overflow-y: auto;
  padding-top: 80px;
}
.mobile-menu.open { display: flex; }

.mobile-menu-close {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,.08); border: 1px solid var(--line);
  border-radius: 10px; color: var(--muted);
  width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: background .2s, color .2s;
}
.mobile-menu-close:hover { background: rgba(255,255,255,.14); color: var(--text); }

.mobile-menu-link {
  display: block; padding: 15px 28px;
  font-size: 17px; font-weight: 700; color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .15s, background .15s;
  text-decoration: none;
}
.mobile-menu-link:hover { color: var(--primary); background: rgba(75,240,193,.04); }
.mobile-menu-link.active { color: var(--primary); }

.mobile-section-label {
  display: block; padding: 18px 28px 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted-2);
}

.mobile-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 24px 28px 32px;
  padding: 15px 24px; border-radius: 16px;
  font-size: 15px; font-weight: 900; color: #052012;
  background: linear-gradient(135deg,#5af09a 0%,var(--whatsapp) 55%,var(--whatsapp-2) 100%);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37,211,102,.32);
}
.mobile-wa-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted-2); margin-bottom: 28px;
}
.breadcrumb a { color: var(--muted-2); transition: color .18s; }
.breadcrumb a:hover { color: var(--primary); }

/* ===== PAGE HERO ===== */
.page-hero { padding: 56px 0 52px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--primary);
  background: rgba(75,240,193,.10); border: 1px solid rgba(75,240,193,.22);
  border-radius: 40px; padding: 4px 14px; margin-bottom: 20px;
}
.page-hero h1 {
  font-size: clamp(34px,5.2vw,62px);
  line-height: 1.05; margin: 0 0 20px;
  letter-spacing: -.035em; font-weight: 900; max-width: 860px;
}
.page-hero-lead {
  font-size: clamp(16px,1.9vw,20px); color: var(--muted);
  max-width: 720px; margin: 0 0 32px; line-height: 1.65;
}
.gradient-text {
  background: linear-gradient(110deg,var(--primary),var(--primary-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ===== CONTENT SECTIONS ===== */
.sp-section { padding: 64px 0; }
.sp-section + .sp-section { border-top: 1px solid rgba(255,255,255,.06); }

/* ===== CONTENT TYPOGRAPHY — scoped to content areas only (NOT header) ===== */
/* Using :where() for zero specificity so header.css rules always win */
:where(.sp-section, .page-hero, .cta-band, .faq-list, .steps, main) h2 {
  font-size: clamp(24px,3.6vw,38px);
  font-weight: 800; line-height: 1.15; letter-spacing: -.025em;
  margin: 0 0 14px; color: var(--text);
}
:where(.sp-section, .page-hero, .cta-band, .faq-list, .steps, main) h3 {
  font-size: clamp(17px,2.2vw,21px);
  font-weight: 700; line-height: 1.22; letter-spacing: -.015em;
  margin: 0 0 10px; color: var(--text);
}
:where(.sp-section, .page-hero, .cta-band, .faq-list, .steps, .related-links, main) p {
  color: var(--muted); font-size: 16px; line-height: 1.72; margin: 0 0 16px;
}
:where(.sp-section, .page-hero, .cta-band, .faq-list, .steps, .related-links, main) p:last-child {
  margin-bottom: 0;
}

/* ===== CARD GRID ===== */
.sp-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill,minmax(260px,1fr));
  margin-top: 28px;
}
.sp-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease-out);
}
.sp-card:hover {
  border-color: rgba(75,240,193,.28);
  box-shadow: 0 16px 40px rgba(75,240,193,.08);
  transform: translateY(-3px);
}
.sp-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(75,240,193,.10); border: 1px solid rgba(75,240,193,.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px; flex-shrink: 0;
}
.sp-card h3 { font-size: 17px; margin-bottom: 8px; }
.sp-card p  { font-size: 14.5px; }

/* ===== PROCESS STEPS ===== */
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 28px; }
.step {
  display: grid; grid-template-columns: 48px 1fr; gap: 0 20px;
  padding-bottom: 32px; position: relative;
}
.step:last-child { padding-bottom: 0; }
.step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg,rgba(75,240,193,.15),rgba(123,188,255,.10));
  border: 1px solid rgba(75,240,193,.24);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: var(--primary);
  flex-shrink: 0; position: relative; z-index: 1;
}
.step-line {
  position: absolute; top: 48px; right: 23px; width: 2px;
  bottom: 0; background: linear-gradient(to bottom,rgba(75,240,193,.2),transparent);
}
.step:last-child .step-line { display: none; }
.step-body { padding-top: 10px; }
.step-body h3 { font-size: 17px; margin-bottom: 6px; }
.step-body p  { font-size: 15px; }

/* ===== FAQ ACCORDION ===== */
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 28px; list-style: none; padding: 0; }
.faq-item {
  border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { border-color: rgba(75,240,193,.26); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; text-align: right;
  font-size: 16px; font-weight: 700; color: var(--text);
  font-family: inherit;
}
.faq-question svg {
  width: 18px; height: 18px; flex-shrink: 0; color: var(--primary);
  transition: transform .25s var(--ease-out);
}
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden; padding: 0 22px;
  max-height: 0;
  transition: max-height .35s var(--ease-out), padding .3s;
}
.faq-answer:not([hidden]) { padding: 0 22px 20px; }
.faq-answer p { font-size: 15px; color: var(--muted); margin: 0; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg,rgba(14,24,42,.92),rgba(10,18,36,.82));
  border: 1px solid rgba(75,240,193,.20);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%,rgba(75,240,193,.13),transparent 60%);
  pointer-events: none;
}
.cta-band h2 { font-size: clamp(24px,3.8vw,38px); margin-bottom: 14px; position: relative; }
.cta-band p  {
  font-size: 17px; color: var(--muted); max-width: 580px;
  margin: 0 auto 32px; line-height: 1.65; position: relative;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-size: 15px; font-weight: 900; color: #052012;
  background: linear-gradient(135deg,#5af09a 0%,var(--whatsapp) 55%,var(--whatsapp-2) 100%);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37,211,102,.40);
  transition: transform .25s var(--ease-out), box-shadow .25s;
  position: relative;
}
.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 44px rgba(37,211,102,.54);
}
.cta-btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* ===== RELATED LINKS ===== */
.related-links {
  display: flex; flex-direction: column; gap: 10px; margin-top: 8px;
}
.related-link {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  text-decoration: none;
  transition: border-color .2s, background .2s, transform .25s var(--ease-out);
}
.related-link:hover {
  border-color: rgba(75,240,193,.28);
  background: rgba(75,240,193,.05);
  transform: translateX(-4px);
}
.related-link-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(75,240,193,.10); border: 1px solid rgba(75,240,193,.16);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.related-link-text { display: flex; flex-direction: column; gap: 2px; }
.related-link-text strong { font-size: 15px; font-weight: 700; color: var(--text); }
.related-link-text span   { font-size: 13px; color: var(--muted-2); }

/* ===== SITE FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 48px;
  margin-top: 80px;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-weight: 800; font-size: 16px; color: var(--text);
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  justify-content: center;
}
.footer-nav a {
  font-size: 13px; font-weight: 600; color: var(--muted-2);
  transition: color .18s; text-decoration: none;
}
.footer-nav a:hover { color: var(--primary); }
.footer-legal {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  justify-content: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
}
.footer-legal a {
  font-size: 12px; color: var(--muted-2); transition: color .18s;
  text-decoration: none;
}
.footer-legal a:hover { color: var(--primary); }
.footer-copy { font-size: 12px; color: var(--muted-2); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion:reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .orb { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 760px) {
  .hamburger { display: flex; }

  .page-hero { padding: 36px 0 32px; }
  .sp-section { padding: 48px 0; }
  .sp-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 22px; }
  .orb { display: none; }

  /* Step line RTL fix on mobile */
  .step-line { right: 19px; }
}

@media (max-width: 480px) {
  .breadcrumb { display: none; }
  .step { grid-template-columns: 40px 1fr; gap: 0 16px; }
  .step-num { width: 40px; height: 40px; font-size: 15px; border-radius: 12px; }
  .step-line { right: 19px; }
  .related-link { padding: 14px 16px; }
  .cta-band { padding: 30px 18px; }
}
