:root {
  --bg: #eef3f8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #18253d;
  --muted: #55657f;
  --line: rgba(24, 37, 61, 0.1);
  --primary: #0b95e8;
  --primary-deep: #0e4d8d;
  --accent: #eef6ff;
  --shadow: 0 24px 60px rgba(11, 36, 72, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(11, 149, 232, 0.16), transparent 30%),
    linear-gradient(145deg, #f7f9fc 0%, #edf2f7 50%, #e5ebf3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(150deg, transparent 12%, rgba(255, 255, 255, 0.6) 12%, rgba(255, 255, 255, 0.6) 28%, transparent 28%),
    linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.45) 48%, rgba(255, 255, 255, 0.45) 61%, transparent 61%);
  pointer-events: none;
}

.page-shell {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 28px;
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(100%, 760px);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: min(100%, 740px);
  height: auto;
}

.eyebrow,
.lead,
.contact-list,
.service-card p,
.about-panel p,
.cta-box p,
.footer p {
  margin: 0;
}

.call-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.call-button,
.primary-button {
  background: linear-gradient(135deg, var(--primary) 0%, #1ca6fa 100%);
  color: white;
  box-shadow: 0 16px 30px rgba(11, 149, 232, 0.24);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.secondary-button.light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.call-button:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 28px;
}

.hero-copy h1,
.section-heading h2,
.about-panel h2,
.hours-panel h2,
.cta-box h2,
.contact-card h2 {
  margin: 10px 0 0;
  line-height: 0.98;
  font-family: "Rajdhani", sans-serif;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 11ch;
}

.eyebrow,
.card-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.lead {
  max-width: 60ch;
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.status-banner {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(11, 149, 232, 0.1);
  border: 1px solid rgba(11, 149, 232, 0.2);
  color: var(--primary-deep);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.quick-facts li {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-deep);
  font-weight: 600;
}

.contact-card,
.service-card,
.about-panel,
.hours-panel,
.cta-box {
  border: 1px solid rgba(24, 37, 61, 0.08);
  box-shadow: 0 18px 40px rgba(17, 40, 69, 0.08);
}

.contact-card {
  padding: 26px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(238, 246, 255, 0.96), rgba(255, 255, 255, 0.96));
}

.contact-card h2 {
  font-size: 2rem;
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-list dt {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-list dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-list a {
  color: inherit;
  text-decoration: none;
}

.section {
  margin-top: 26px;
  padding: 34px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.8));
  backdrop-filter: blur(16px);
}

.section-heading h2,
.about-panel h2,
.hours-panel h2,
.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.service-grid,
.about {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.service-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-strong);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.1;
}

.service-card p,
.about-panel p,
.hours-list,
.cta-box p {
  color: var(--muted);
  line-height: 1.65;
}

.about {
  grid-template-columns: 1.1fr 0.9fr;
}

.about-panel,
.hours-panel {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hours-list strong {
  color: var(--text);
}

.cta-box {
  padding: 34px;
  border-radius: 30px;
  color: white;
  background:
    linear-gradient(135deg, rgba(10, 71, 133, 0.92), rgba(11, 149, 232, 0.9)),
    linear-gradient(145deg, #0f5c9c, #1187dc);
}

.cta-box p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  padding: 24px 10px 12px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .about,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 18px, 100%);
    margin: 10px auto 24px;
  }

  .hero,
  .section {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .topbar,
  .hero-grid,
  .about,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
  }

  .brand {
    max-width: 100%;
  }

  .brand-logo {
    width: 100%;
    max-width: 520px;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
