:root {
    --navy: #0d1b2a;
    --navy-light: #15283e;
    --blue: #1e88e5;
    --blue-dark: #126fc2;
    --silver: #6b7280;
    --light-gray: #eef2f7;
    --background: #f7f9fc;
    --white: #ffffff;
    --text: #172033;
    --muted: #667085;
    --success: #087a55;
    --error: #c62828;
    --border: #dce3ec;
    --shadow: 0 18px 45px rgba(13, 27, 42, 0.12);
    --radius-large: 24px;
    --radius-medium: 16px;
    --radius-small: 10px;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  select,
  textarea {
    font: inherit;
  }
  
  button {
    cursor: pointer;
  }
  
  img {
    max-width: 100%;
  }
  
  .container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
  }
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
  }
  
  .brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, var(--white), #aab4c3);
    color: var(--navy);
    font-size: 28px;
    font-weight: 800;
    border-radius: 12px;
    box-shadow: inset -8px -8px 16px rgba(0, 0, 0, 0.1);
    transform: skewX(-8deg);
  }
  
  .brand-name,
  .brand-subtitle {
    display: block;
  }
  
  .brand-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    line-height: 1;
  }
  
  .brand-subtitle {
    color: var(--blue);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-top: 7px;
  }
  
  .main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .main-nav a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
  }
  
  .main-nav a:hover {
    color: var(--white);
  }
  
  .header-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 10px;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
  }
  
  .header-call-button:hover {
    background: var(--blue-dark);
  }
  
  .menu-button {
    display: none;
    margin-left: auto;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 0;
    padding: 10px;
  }
  
  .menu-button span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    margin: 6px auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  
  .hero {
    color: var(--white);
    background:
      radial-gradient(circle at 85% 15%, rgba(30, 136, 229, 0.3), transparent 32%),
      linear-gradient(135deg, #071321 0%, #0d1b2a 60%, #132b46 100%);
    padding: 88px 0;
    overflow: hidden;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 60px;
    align-items: center;
  }
  
  .eyebrow,
  .section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }
  
  .hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
  }
  
  .hero h1 span {
    display: block;
    color: var(--blue);
  }
  
  .hero-description {
    max-width: 680px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
  }
  
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
  }
  
  .button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 0;
    border-radius: 12px;
    font-weight: 800;
    transition:
      transform 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
  }
  
  .button:hover {
    transform: translateY(-2px);
  }
  
  .button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 24px rgba(30, 136, 229, 0.25);
  }
  
  .button-primary:hover {
    background: var(--blue-dark);
  }
  
  .button-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .full-width {
    width: 100%;
  }
  
  .trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 40px;
    max-width: 660px;
  }
  
  .trust-item {
    padding: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
  }
  
  .trust-item strong,
  .trust-item span {
    display: block;
  }
  
  .trust-item strong {
    color: var(--white);
    font-size: 18px;
  }
  
  .trust-item span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
  }
  
  .hero-card {
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
  }
  
  .hero-card-top {
    padding: 22px 26px;
    background: linear-gradient(135deg, var(--blue), #135da4);
    color: var(--white);
  }
  
  .hero-card-top span,
  .hero-card-top strong {
    display: block;
  }
  
  .hero-card-top span {
    font-size: 13px;
    opacity: 0.85;
  }
  
  .hero-card-top strong {
    margin-top: 4px;
    font-size: 20px;
  }
  
  .hero-card-body {
    padding: 34px;
    text-align: center;
  }
  
  .hero-icon {
    font-size: 58px;
  }
  
  .hero-card-body h2 {
    margin-top: 8px;
    font-size: 27px;
  }
  
  .hero-card-body p {
    margin: 14px 0 24px;
    color: var(--muted);
  }
  
  .text-link {
    display: inline-block;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
  }
  
  .quick-action-section {
    position: relative;
    z-index: 10;
    margin-top: -34px;
  }
  
  .quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  
  .quick-action {
    min-height: 118px;
    background: var(--white);
    color: var(--text);
    border: 0;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
  }
  
  .quick-action:last-child {
    border-right: 0;
  }
  
  .quick-action:hover {
    background: var(--navy);
    color: var(--white);
  }
  
  .quick-icon {
    font-size: 30px;
  }
  
  .section {
    padding: 96px 0;
  }
  
  .section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
  }
  
  .section-heading h2,
  .service-area-grid h2,
  .quote-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1px;
  }
  
  .section-heading p {
    margin-top: 16px;
    color: var(--muted);
  }
  
  .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .service-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
  }
  
  .service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: rgba(30, 136, 229, 0.1);
    border-radius: 14px;
    font-size: 30px;
  }
  
  .service-card h3 {
    margin-top: 22px;
    font-size: 22px;
  }
  
  .service-card ul {
    list-style: none;
    margin: 18px 0 26px;
    color: var(--muted);
  }
  
  .service-card li {
    position: relative;
    padding: 7px 0 7px 22px;
    font-size: 14px;
  }
  
  .service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 800;
  }
  
  .service-button {
    margin-top: auto;
    min-height: 48px;
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    color: var(--blue);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
  }
  
  .service-button:hover {
    background: var(--blue);
    color: var(--white);
  }
  
  .section-dark {
    background: var(--navy);
    color: var(--white);
  }
  
  .light-heading p {
    color: rgba(255, 255, 255, 0.64);
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .feature-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-medium);
  }
  
  .feature-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
  }
  
  .feature-card h3 {
    margin-top: 20px;
    font-size: 19px;
  }
  
  .feature-card p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
  }
  
  .review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  .review-card {
    padding: 30px;
    border-radius: var(--radius-medium);
    background: var(--background);
    border: 1px solid var(--border);
  }
  
  .stars {
    color: #f6b91a;
    letter-spacing: 3px;
  }
  
  .review-card p {
    margin: 18px 0;
    color: var(--muted);
  }
  
  .service-area-section {
    background: var(--background);
  }
  
  .service-area-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
  }
  
  .service-area-grid > div > p {
    margin-top: 18px;
    color: var(--muted);
  }
  
  .city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }
  
  .city-list span {
    padding: 10px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }
  
  .service-area-card {
    padding: 36px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
  }
  
  .map-pin {
    font-size: 45px;
  }
  
  .service-area-card h3 {
    margin-top: 12px;
    font-size: 25px;
  }
  
  .service-area-card p {
    margin: 14px 0 24px;
    color: rgba(255, 255, 255, 0.66);
  }
  
  .quote-section {
    background:
      radial-gradient(circle at 5% 10%, rgba(30, 136, 229, 0.12), transparent 30%),
      var(--white);
  }
  
  .quote-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 64px;
    align-items: start;
  }
  
  .quote-copy > p {
    margin-top: 18px;
    color: var(--muted);
  }
  
  .emergency-call-card {
    display: block;
    margin-top: 30px;
    padding: 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-medium);
  }
  
  .emergency-call-card span,
  .emergency-call-card strong,
  .emergency-call-card small {
    display: block;
  }
  
  .emergency-call-card strong {
    margin: 4px 0;
    color: var(--blue);
    font-size: 27px;
  }
  
  .emergency-call-card small {
    color: rgba(255, 255, 255, 0.62);
  }
  
  .quote-form {
    padding: 36px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .form-group {
    margin-bottom: 18px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 800;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--text);
    padding: 14px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
  }
  
  .form-group input,
  .form-group select {
    min-height: 52px;
  }
  
  .form-group textarea {
    resize: vertical;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.12);
  }
  
  .submit-button:disabled {
    opacity: 0.65;
    cursor: wait;
  }
  
  .form-note {
    margin-top: 13px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
  }
  
  .form-status {
    min-height: 26px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  
  .form-status.success {
    color: var(--success);
  }
  
  .form-status.error {
    color: var(--error);
  }
  
  .site-footer {
    background: #07111d;
    color: var(--white);
    padding-top: 64px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
  }
  
  .footer-brand {
    margin-bottom: 20px;
  }
  
  .footer-grid p,
  .footer-grid a {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.62);
  }
  
  .footer-grid h3 {
    font-size: 16px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
  }
  
  .mobile-action-bar {
    display: none;
  }
  
  @media (max-width: 1000px) {
    .main-nav {
      position: fixed;
      top: 78px;
      left: 0;
      right: 0;
      height: calc(100vh - 78px);
      padding: 32px 24px;
      background: var(--navy);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      transform: translateX(100%);
      transition: transform 0.25s ease;
    }
  
    .main-nav.open {
      transform: translateX(0);
    }
  
    .main-nav a {
      padding: 18px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 18px;
    }
  
    .menu-button {
      display: block;
    }
  
    .header-call-button {
      display: none;
    }
  
    .hero-grid,
    .service-area-grid,
    .quote-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-grid,
    .service-area-grid,
    .quote-grid {
      gap: 40px;
    }
  
    .service-grid,
    .feature-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .hero-card {
      max-width: 620px;
      width: 100%;
    }
  }
  
  @media (max-width: 700px) {
    body {
      padding-bottom: 72px;
    }
  
    .container {
      width: min(100% - 24px, 1120px);
    }
  
    .header-inner {
      min-height: 70px;
    }
  
    .main-nav {
      top: 70px;
      height: calc(100vh - 70px);
    }
  
    .brand-mark {
      width: 40px;
      height: 40px;
      font-size: 24px;
    }
  
    .brand-name {
      font-size: 17px;
    }
  
    .brand-subtitle {
      font-size: 8px;
      letter-spacing: 3px;
    }
  
    .hero {
      padding: 60px 0 74px;
    }
  
    .hero h1 {
      font-size: 43px;
      letter-spacing: -1.5px;
    }
  
    .hero-description {
      font-size: 16px;
    }
  
    .hero-buttons {
      display: grid;
      grid-template-columns: 1fr;
    }
  
    .button {
      min-height: 56px;
      width: 100%;
    }
  
    .trust-row {
      grid-template-columns: 1fr;
    }
  
    .hero-card-body {
      padding: 28px 22px;
    }
  
    .quick-action-section {
      margin-top: -24px;
    }
  
    .quick-actions {
      grid-template-columns: 1fr 1fr;
    }
  
    .quick-action {
      min-height: 104px;
      border-bottom: 1px solid var(--border);
    }
  
    .quick-action:nth-child(2) {
      border-right: 0;
    }
  
    .section {
      padding: 70px 0;
    }
  
    .section-heading {
      margin-bottom: 34px;
    }
  
    .service-grid,
    .feature-grid,
    .review-grid {
      grid-template-columns: 1fr;
    }
  
    .service-card,
    .feature-card,
    .review-card {
      padding: 24px;
    }
  
    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
  
    .quote-form {
      padding: 24px 18px;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  
    .mobile-action-bar {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1200;
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 72px;
      background: var(--white);
      border-top: 1px solid var(--border);
      box-shadow: 0 -8px 30px rgba(13, 27, 42, 0.12);
    }
  
    .mobile-action-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
    }
  
    .mobile-call {
      background: var(--blue);
      color: var(--white);
    }
  
    .mobile-quote {
      color: var(--navy);
    }
  }