
  .atlas-footer,
  .atlas-footer * {
    box-sizing: border-box;
  }

  .atlas-footer {
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #081b2d 0%, #0e2e4c 48%, #164a74 100%);
    color: rgba(255,255,255,0.9);
    border-top: 1px solid rgba(255,255,255,0.08);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .atlas-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.10), transparent 26%),
      linear-gradient(to right, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  }

  .atlas-footer-inner {
    position: relative;
    z-index: 2;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .atlas-footer-top {
    padding: 58px 0 34px;
  }

  .atlas-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 22px;
    align-items: start;
  }

  .atlas-footer-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 22px;
    padding: 24px 22px;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.14);
    height: 100%;
  }

  .atlas-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .atlas-footer-logo {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 260px;
    text-decoration: none;
  }

  .atlas-footer-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,0.22));
  }

  .atlas-footer-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #bdeaff;
  }

  .atlas-footer-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.88);
  }

  .atlas-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .atlas-footer-list li {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.9);
  }

  .atlas-footer-list li:last-child {
    margin-bottom: 0;
  }

  .atlas-footer-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #8fdcff;
    margin-bottom: 3px;
  }

  .atlas-footer a {
    color: #ffffff;
    text-decoration: none;
    transition:
      color 0.22s ease,
      opacity 0.22s ease,
      letter-spacing 0.22s ease,
      transform 0.22s ease;
  }

  .atlas-footer a:hover,
  .atlas-footer a:focus-visible {
    color: #d7f3ff;
    letter-spacing: 0.15px;
    outline: none;
  }

  .atlas-footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    padding: 13px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8fdcff 0%, #ffffff 100%);
    color: #0b2238 !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.15px;
    box-shadow: 0 14px 28px rgba(143, 220, 255, 0.22);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      filter 0.25s ease,
      letter-spacing 0.25s ease;
    white-space: nowrap;
  }

  .atlas-footer-cta:hover,
  .atlas-footer-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(143, 220, 255, 0.30);
    filter: brightness(1.02);
    letter-spacing: 0.22px;
  }

  .atlas-footer-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    line-height: 1.5;
  }

  .atlas-footer-hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .atlas-footer-hours-day {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
  }

  .atlas-footer-hours-time {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
  }

  .atlas-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0 24px;
  }

  .atlas-footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .atlas-footer-mini {
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin: 0;
  }

  .atlas-footer-disclaimer {
    font-size: 11px;
    line-height: 1.8;
    color: rgba(255,255,255,0.66);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.35px;
  }

  @media (max-width: 1180px) {
    .atlas-footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .atlas-footer-inner {
      padding: 0 16px;
    }

    .atlas-footer-top {
      padding: 42px 0 24px;
    }

    .atlas-footer-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .atlas-footer-card {
      border-radius: 18px;
      padding: 20px 18px;
    }

    .atlas-footer-logo {
      max-width: 220px;
    }

    .atlas-footer-title {
      font-size: 14px;
    }

    .atlas-footer-text,
    .atlas-footer-list li,
    .atlas-footer-hours-row {
      font-size: 13px;
    }

    .atlas-footer-cta {
      width: 100%;
      text-align: center;
    }

    .atlas-footer-hours-row {
      gap: 10px;
    }

    .atlas-footer-bottom {
      padding: 16px 0 20px;
    }

    .atlas-footer-mini,
    .atlas-footer-disclaimer {
      font-size: 10.5px;
    }
  }
