/* Coming soon (index.php) */
.coming-soon-page {
  min-height: 100vh;
  background: var(--gradient-hero);
  color: #fff;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
  overflow: hidden;
  text-align: center;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 15%, rgba(0, 174, 239, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(0, 86, 210, 0.4), transparent 50%);
  pointer-events: none;
}

.coming-soon-road {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 18%;
  height: 64px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 210, 0.55), rgba(0, 174, 239, 0.7), transparent);
  transform: skewY(-4deg);
  opacity: 0.5;
  overflow: hidden;
}

.coming-soon-road::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(90deg, #fff 0 28px, transparent 28px 52px);
  transform: translateY(-50%);
  animation: road-dash 12s linear infinite;
}

.coming-soon-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.coming-soon-logo {
  width: min(220px, 70vw);
  height: auto;
  margin: 0 auto 1.25rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.coming-soon-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.5rem;
}

.coming-soon h1 {
  color: #fff;
  font-style: italic;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.coming-soon-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  margin: 0 0 1.75rem;
  line-height: 1.65;
}

.coming-soon-pulse {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.75rem;
}

.coming-soon-pulse span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.coming-soon-pulse span:nth-child(2) {
  animation-delay: 0.2s;
}

.coming-soon-pulse span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse-dot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.85); }
  40% { opacity: 1; transform: scale(1.15); }
}

/* NakliyeGaraj — brand theme from logo */
:root {
  --navy: #001a3d;
  --navy-deep: #000f24;
  --blue: #0056d2;
  --blue-bright: #1a6ef5;
  --cyan: #00aeef;
  --grey: #d1d1d1;
  --grey-soft: #eef1f6;
  --ink: #0b1220;
  --muted: #5a6a80;
  --white: #ffffff;
  --success: #0d9f6e;
  --danger: #c62828;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 18px 50px rgba(0, 26, 61, 0.12);
  --header-h: 76px;
  --font-display: "Exo 2", sans-serif;
  --font-body: "Manrope", sans-serif;
  --gradient-hero: linear-gradient(135deg, #000f24 0%, #001a3d 42%, #003a8f 78%, #00aeef 130%);
  --gradient-road: linear-gradient(90deg, #001a3d, #0056d2 45%, #00aeef);
  --gradient-cta: linear-gradient(135deg, #0056d2, #00aeef);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--cyan);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--navy);
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 26, 61, 0.06);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 26, 61, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand-logo {
  width: 150px;
  height: auto;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-desktop a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gradient-road);
  transition: width 0.25s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.is-active::after {
  width: 100%;
}

.nav-desktop a.is-active {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s ease;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1rem 1.25rem;
  border-top: 1px solid var(--grey-soft);
  background: #fff;
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile a {
  color: var(--navy);
  font-weight: 600;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--grey-soft);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0, 86, 210, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 34px rgba(0, 174, 239, 0.4);
  color: #fff !important;
}

.btn-secondary {
  background: var(--navy);
  color: #fff !important;
}

.btn-ghost {
  background: transparent;
  color: var(--navy) !important;
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--grey-soft);
}

.btn-outline {
  background: transparent;
  color: var(--navy) !important;
  border-color: rgba(0, 26, 61, 0.2);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue) !important;
}

.btn-outline-light {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
}

.btn-lg {
  padding: 1rem 1.6rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Flash */
.flash {
  padding: 0.9rem 0;
  font-weight: 600;
}

.flash-success {
  background: #e8f8f1;
  color: var(--success);
}

.flash-error {
  background: #fdecea;
  color: var(--danger);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 20%, rgba(0, 174, 239, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(0, 86, 210, 0.4), transparent 50%),
    repeating-linear-gradient(
      -18deg,
      transparent 0,
      transparent 38px,
      rgba(255, 255, 255, 0.03) 38px,
      rgba(255, 255, 255, 0.03) 40px
    );
  pointer-events: none;
}

.hero-road {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 12%;
  height: 72px;
  background: linear-gradient(90deg, transparent, rgba(0, 86, 210, 0.55), rgba(0, 174, 239, 0.7), transparent);
  transform: skewY(-4deg);
  opacity: 0.55;
  overflow: hidden;
}

.hero-road::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #fff 0 28px,
    transparent 28px 52px
  );
  transform: translateY(-50%);
  animation: road-dash 12s linear infinite;
}

@keyframes road-dash {
  from { transform: translateY(-50%) translateX(0); }
  to { transform: translateY(-50%) translateX(-50%); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  max-width: 720px;
}

.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 0.65rem;
  animation: rise-in 0.8s ease both;
}

.hero-wordmark span:first-child {
  color: #fff;
}

.hero-wordmark span:last-child {
  color: var(--cyan);
}

.hero-slogan-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1.75rem;
  animation: rise-in 0.8s ease 0.05s both;
}

.hero-slogan-line::before,
.hero-slogan-line::after {
  content: "";
  height: 1px;
  width: 2.5rem;
  background: var(--blue-bright);
}

.hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3.8vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  animation: rise-in 0.8s ease 0.1s both;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  animation: rise-in 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  animation: rise-in 0.8s ease 0.3s both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  animation: rise-in 0.8s ease 0.4s both;
}

.hero-trust strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  display: block;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--grey-soft);
}

.section-navy {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-navy .eyebrow {
  color: var(--cyan);
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* Steps */
.steps {
  display: grid;
  gap: 1.5rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 0.5rem 0;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: 0 10px 24px rgba(0, 86, 210, 0.3);
}

.step h3 {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.step p {
  color: var(--muted);
  margin: 0;
}

/* Feature rows / services — interaction containers, not decorative cards */
.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 26, 61, 0.1);
}

.service-item {
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 26, 61, 0.1);
  transition: padding-left 0.25s ease;
}

.service-item:hover {
  padding-left: 0.5rem;
}

.service-item h3 {
  font-size: 1.2rem;
  margin: 0;
}

.service-item p {
  margin: 0;
  color: var(--muted);
}

.service-item a {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--blue);
}

/* Routes / sample listings */
.listing-table {
  width: 100%;
  border-collapse: collapse;
}

.listing-table th,
.listing-table td {
  text-align: left;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid rgba(0, 26, 61, 0.08);
}

.listing-table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.listing-table td {
  font-weight: 500;
}

.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(0, 86, 210, 0.1);
  color: var(--blue);
}

.badge-open {
  background: rgba(13, 159, 110, 0.12);
  color: var(--success);
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  font-style: italic;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
  background: linear-gradient(90deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Why / guarantee */
.split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.point-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.point-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.85rem;
}

.point-list .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.point-list h3 {
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.point-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.5rem;
}

.faq details {
  border-bottom: 1px solid rgba(0, 26, 61, 0.1);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  color: var(--muted);
  margin: 0.85rem 0 0.25rem;
  max-width: 720px;
}

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.cta-band .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--gradient-hero);
  color: #fff;
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--gradient-road);
}

.page-hero h1 {
  color: #fff;
  font-style: italic;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0;
}

/* Forms */
.form-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.form-panel {
  background: #fff;
  border: 1px solid rgba(0, 26, 61, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.form-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.form-panel > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.form-section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-soft);
}

.form-section:last-of-type {
  border-bottom: 0;
  margin-bottom: 1rem;
  padding-bottom: 0;
}

.form-section h3 {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.form-section h3 .num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
}

.field .req {
  color: var(--blue);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0, 26, 61, 0.15);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.15);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.choice-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.choice {
  position: relative;
}

.choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice label {
  display: block;
  padding: 1rem;
  border: 1.5px solid rgba(0, 26, 61, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--navy);
  transition: 0.2s ease;
  text-align: center;
}

.choice label small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

.choice input:checked + label {
  border-color: var(--blue);
  background: rgba(0, 86, 210, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.12);
}

.form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  margin: 1rem 0 1.25rem;
}

.form-check input {
  margin-top: 0.25rem;
}

.summary-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.summary-panel h2 {
  color: #fff;
  font-size: 1.2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.summary-row span:first-child {
  color: rgba(255, 255, 255, 0.55);
}

.summary-row strong {
  color: #fff;
  text-align: right;
}

.summary-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Firm list */
.firm-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 26, 61, 0.1);
}

.firm-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 26, 61, 0.1);
}

.firm-row h3 {
  margin: 0;
  font-size: 1.2rem;
}

.firm-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.stars {
  color: #f5a623;
  letter-spacing: 1px;
}

/* Auth */
.auth-wrap {
  max-width: 440px;
  margin: 0 auto;
}

.auth-links {
  text-align: center;
  margin-top: 1.25rem;
  color: var(--muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.contact-info dt {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-top: 1rem;
}

.contact-info dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 1.5rem;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.25), transparent 65%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  width: 160px;
  margin-bottom: 0.75rem;
  filter: brightness(1.05);
}

.footer-slogan {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 320px;
}

.footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.55);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
    border-top: 0;
  }

  .service-item {
    border-top: 1px solid rgba(0, 26, 61, 0.1);
  }

  .split {
    grid-template-columns: 1fr 1fr;
  }

  .field-grid.two {
    grid-template-columns: 1fr 1fr;
  }

  .field-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-layout {
    grid-template-columns: 1.4fr 0.85fr;
  }

  .firm-row {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .header-actions .btn-ghost {
    display: none;
  }

  .listing-table thead {
    display: none;
  }

  .listing-table tr {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 26, 61, 0.08);
  }

  .listing-table td {
    border: 0;
    padding: 0;
  }

  .listing-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 0.15rem;
  }
}
