:root {
  --blue-100: #e6ecfb;
  --blue-200: #c1d0f4;
  --blue-500: #0743d3;
  --blue-700: #052f94;
  --blue-900: #031b54;

  --red-100: #fae8e8;
  --red-200: #f2c4c5;
  --red-500: #cc1516;
  --red-600: #ad1213;

  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;

  --surface: #ffffff;
  --border: #dbe4f0;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.quote-page-body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(7, 67, 211, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.quote-page-body {
  --quote-nav-space: 132px;
}

.quote-page {
  padding: var(--quote-nav-space) 0 90px;
}

@media (max-width: 768px) {
  .quote-page-body {
    --quote-nav-space: 104px;
  }

  .quote-page {
    padding: var(--quote-nav-space) 0 72px;
  }
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

/* =========================
   TOPBAR
========================= */

.quote-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(3, 27, 84, 0.08);
}

.quote-topbar-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.quote-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.quote-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-topbar-link {
  color: var(--blue-900);
  font-weight: 600;
  transition: color 0.2s ease;
}

.quote-topbar-link:hover {
  color: var(--red-500);
}

.quote-topbar-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red-500);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(204, 21, 22, 0.2);
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.quote-topbar-btn:hover {
  background: var(--red-600);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(204, 21, 22, 0.24);
}

.quote-topbar-btn i {
  width: 18px;
  height: 18px;
}

/* =========================
   PAGE
========================= */

.navbar{
  background: rgba(3, 27, 84, 0.82);
}

.quote-page {
  margin-top: 120px;
  padding: 34px 0 90px;
}

.quote-hero {
  position: relative;
}

.quote-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: start;
}

.quote-hero-content {
  padding-top: 18px;
}

.quote-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(204, 21, 22, 0.08);
  border: 1px solid rgba(204, 21, 22, 0.18);
  color: var(--red-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-hero-content h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  color: var(--blue-900);
}

.quote-lead {
  max-width: 60ch;
  margin: 18px 0 0;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.8;
}

.quote-highlights {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.quote-highlight {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.quote-highlight-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(204, 21, 22, 0.12),
    rgba(7, 67, 211, 0.12)
  );
  color: var(--blue-700);
  border: 1px solid rgba(7, 67, 211, 0.1);
}

.quote-highlight-icon i {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.quote-highlight strong {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-900);
  font-size: 1rem;
}

.quote-highlight span {
  display: block;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* =========================
   CARD / FORM
========================= */

.quote-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 67, 211, 0.1);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}

.quote-card-kicker {
  margin: 0 0 8px;
  color: var(--red-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card-header h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  color: var(--blue-900);
}

.quote-card-header p {
  margin: 12px 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: var(--blue-900);
  font-size: 0.93rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(7, 67, 211, 0.14);
  background: #fff;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: rgba(7, 67, 211, 0.34);
  box-shadow: 0 0 0 4px rgba(7, 67, 211, 0.08);
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(7, 67, 211, 0.04);
  border: 1px solid rgba(7, 67, 211, 0.08);
  cursor: pointer;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.service-option:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 67, 211, 0.18);
  background: rgba(7, 67, 211, 0.06);
}

.service-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--red-500);
  flex-shrink: 0;
}

.service-option span {
  color: var(--blue-900);
  font-size: 0.93rem;
  line-height: 1.45;
}

.quote-submit-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--red-500) 0%, var(--blue-500) 100%);
  box-shadow: 0 14px 32px rgba(7, 67, 211, 0.16);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.quote-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(7, 67, 211, 0.22);
}

.quote-note {
  margin: -4px 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1080px) {
  .quote-hero-inner {
    grid-template-columns: 1fr;
  }

  .quote-hero-content {
    padding-top: 0;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .quote-topbar {
    padding: 12px 0;
  }

  .quote-topbar-shell {
    gap: 14px;
  }

  .quote-logo img {
    height: 48px;
  }

  .quote-topbar-actions {
    gap: 8px;
  }

  .quote-topbar-link {
    display: none;
  }

  .quote-topbar-btn {
    min-height: 40px;
    padding: 0 12px;
  }

  .quote-topbar-btn span {
    display: none;
  }

  .quote-page {
    padding: 18px 0 72px;
  }

  .quote-card {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .quote-grid,
  .service-options {
    grid-template-columns: 1fr;
  }

  .quote-hero-content h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
    line-height: 0.98;
  }

  .quote-lead {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .quote-highlight {
    grid-template-columns: 50px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .quote-highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .quote-highlight-icon i {
    width: 22px;
    height: 22px;
  }

  .service-option span {
    font-size: 0.9rem;
  }
}