@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy:       #0b141d;
  --teal:       #2ab0b0;
  --teal-dark:  #238e8e;
  --gray-bg:    #f4f6f8;
  --text:       #1a1a1a;
  --text-muted: #555;
  --border:     #dde1e7;
  --radius:     10px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--gray-bg);
  color: var(--text);
  margin: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Site Header ────────────────────────────────── */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-link img { height: 70px; width: auto; display: block; }

.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }

.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.main-nav a.active:not(.nav-cta) { color: #fff; background: rgba(255,255,255,0.12); font-weight: 600; }
.main-nav .nav-cta { background: var(--teal); color: #fff; font-weight: 600; margin-left: 8px; }
.main-nav .nav-cta:hover { background: var(--teal-dark); }
.main-nav .nav-cta.active { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5); }

/* ── Buttons ────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(42,176,176,0.4); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--teal);
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--teal);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.65);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; transform: translateY(-2px); }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Site Footer ────────────────────────────────── */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 52px 28px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer-brand img { height: 50px; width: auto; opacity: 0.85; display: block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.84rem; margin: 0; max-width: 210px; line-height: 1.55; }

.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin: 9px 0; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; margin: 0 8px; }
.footer-bottom a:hover { color: var(--teal); }

/* ── Form Page Layout (service pages) ──────────── */

.page-container {
  display: flex;
  min-height: calc(100vh - 88px);
}

.image-side {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.form-side {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 48px;
  background: #fff;
  overflow-y: auto;
}

.form-wrapper { width: 100%; max-width: 480px; }

.hero-text { margin-bottom: 28px; }
.hero-text h1 { font-size: 1.85rem; font-weight: 700; margin: 0 0 10px; color: var(--navy); line-height: 1.25; }
.hero-text p { font-size: 0.98rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── Form Styles ────────────────────────────────── */

.form-section {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  color: var(--navy);
  text-align: left;
}

form label {
  display: block;
  margin: 14px 0 5px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--navy);
}

form input, form select, form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  background: #fafafa;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

form input:focus, form select:focus, form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,176,176,0.15);
  background: #fff;
}

form button[type="submit"] {
  margin-top: 28px;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
form button[type="submit"]:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,176,176,0.35); }

.form-legal { font-size: 0.84rem; color: #888; margin-top: 18px; line-height: 1.5; }
.form-legal a { color: var(--teal); }
.trust-badge { margin-top: 18px; text-align: center; font-size: 0.84rem; color: #999; }

/* ── Content Page Sections ──────────────────────── */

.page-hero {
  background: #fff;
  padding: 68px 28px;
  text-align: center;
}
.page-hero h1, .page-hero h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 16px;
}
.page-hero p {
  max-width: 680px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.content-section { padding: 68px 28px; text-align: center; }
.content-section + .content-section {
  position: relative;
}
.content-section + .content-section::before {
  content: "";
  display: block;
  width: 90%;
  max-width: 800px;
  height: 3px;
  background: var(--teal);
  margin: 0 auto 56px;
  border-radius: 3px;
}

.content-section h2 { font-size: 1.75rem; font-weight: 700; color: var(--navy); margin: 0 0 8px; }

.content-card {
  background: #fff;
  padding: 36px 42px;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  max-width: 760px;
  margin: 36px auto 0;
  border-left: 5px solid var(--teal);
  text-align: left;
}
.content-card p { line-height: 1.7; font-size: 1rem; color: var(--text-muted); margin: 0 0 14px; }
.content-card p:last-child { margin-bottom: 0; }
.content-card strong { color: var(--text); }
.content-card ul { list-style: none; padding: 0; margin: 16px 0; }
.content-card li {
  position: relative;
  padding-left: 22px;
  margin: 11px 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.content-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

/* Steps (shared across index + about) */
.steps-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-top: 48px;
}
.step-card {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.step-card .step-num { font-size: 2.4rem; font-weight: 700; color: var(--teal); line-height: 1; margin-bottom: 14px; }
.step-card h3 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin: 0 0 8px; }
.step-card p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }

/* ── Responsive ─────────────────────────────────── */

@media (max-width: 900px) {
  .page-container { flex-direction: column; }
  .image-side { height: 240px; min-height: 0; flex: none; }
  .form-side { padding: 36px 24px; }
  .form-wrapper { max-width: 100%; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 16px; height: 72px; }
  .logo-link img { height: 54px; }
  .main-nav a { padding: 6px 10px; font-size: 0.88rem; }
  .main-nav .nav-cta { margin-left: 4px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .content-section { padding: 52px 20px; }
  .content-card { padding: 28px 24px; }
  .page-hero { padding: 52px 20px; }
  .page-hero h1, .page-hero h2 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .main-nav a { padding: 5px 7px; font-size: 0.8rem; }
  .steps-row { flex-direction: column; align-items: center; }
  .hero-buttons { flex-direction: column; align-items: center; }
}
