:root {
  --bg: #ffffff;
  --bg-soft: #f6fbff;
  --surface: #ffffff;
  --surface-2: #eef7ff;
  --text: #18324a;
  --muted: #5f7589;
  --primary: #2d8cff;
  --primary-dark: #1769c7;
  --secondary: #8ed8ff;
  --line: #d9e8f5;
  --shadow: 0 20px 60px rgba(22, 74, 128, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcff 48%, #ffffff 100%);
  color: var(--text);
}

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

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

.container {
  width: min(1150px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 232, 245, 0.7);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.eyebrow,
.section-tag,
.hero-badge,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.card-label {
  color: var(--primary-dark);
  background: #e9f4ff;
  border: 1px solid #cfe6ff;
}

.hero-badge {
  color: #1264bf;
  background: linear-gradient(135deg, #eef7ff, #dff2ff);
  border: 1px solid #c9e6ff;
}

.brand-block h1 {
  margin: 8px 0 6px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.1;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.top-actions,
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #58b9ff);
  box-shadow: 0 14px 30px rgba(45, 140, 255, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 18px 35px rgba(45, 140, 255, 0.32);
}

.btn-outline {
  color: var(--primary-dark);
  border-color: #b8d8fb;
  background: #fff;
}

.main-nav {
  background: #fff;
  border-bottom: 1px solid #edf3f8;
}

.nav-inner {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 14px 0;
}

.nav-inner a {
  white-space: nowrap;
  color: #47657e;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(142, 216, 255, 0.35) 0%, rgba(142, 216, 255, 0) 70%);
  top: -120px;
  right: -140px;
}

.hero::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(45, 140, 255, 0.12) 0%, rgba(45, 140, 255, 0) 70%);
  bottom: -80px;
  left: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.03;
  max-width: 10ch;
}

.hero-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 60ch;
}

.hero-features,
.highlight-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill,
.highlight-points span,
.mini-note {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid #d8ebfb;
  box-shadow: 0 10px 20px rgba(73, 125, 177, 0.08);
  color: #2d5677;
  font-weight: 600;
}

.hero-card {
  position: relative;
}

.hero-card-glow {
  position: absolute;
  inset: 20px 10px -10px 10px;
  background: linear-gradient(135deg, rgba(45, 140, 255, 0.2), rgba(142, 216, 255, 0.08));
  filter: blur(14px);
  border-radius: 30px;
}

.info-card,
.location-card,
.contact-box,
.highlight-box {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(210, 229, 245, 0.9);
  box-shadow: var(--shadow);
}

.info-card {
  padding: 28px;
  border-radius: 30px;
}

.info-card h3 {
  margin: 14px 0 18px;
  font-size: 1.55rem;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 14px;
  line-height: 1.6;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(237,247,255,0.7) 100%);
}

.section {
  padding: 84px 0;
}

.two-column,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.two-column p,
.section-heading p,
.contact-copy p,
.location-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.section h2,
.section-heading h2,
.contact-copy h2,
.location-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.services-section {
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1px solid #dcecf8;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 35px rgba(42, 103, 165, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(42, 103, 165, 0.14);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #dff1ff, #eef8ff);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.18rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.accent-card {
  background: linear-gradient(145deg, #f3fbff, #ffffff);
}

.highlight-box {
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.location-card {
  padding: 32px;
  border-radius: 28px;
  height: 100%;
}

.main-location {
  background: linear-gradient(145deg, #ffffff, #f3faff);
}

.schedule-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.schedule-card h3 {
  margin: 14px 0 8px;
  font-size: 1.8rem;
}

.big-time {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--primary-dark);
  margin: 6px 0 22px !important;
}

.contact-box {
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
}

.contact-actions {
  display: grid;
  gap: 16px;
}

.contact-item {
  border: 1px solid #d8e9f7;
  background: #fff;
  border-radius: 22px;
  padding: 20px 22px;
  box-shadow: 0 10px 25px rgba(57, 113, 171, 0.08);
}

.contact-item strong {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
}

.contact-label {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.static-item {
  cursor: default;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #55b4ff);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 35px rgba(45, 140, 255, 0.35);
  font-weight: 800;
}

.floating-call span {
  font-size: 1.35rem;
  line-height: 1;
}

.floating-call small {
  font-size: 0.72rem;
  margin-top: 4px;
}

.footer {
  padding: 24px 0 44px;
  color: #5d7183;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e5eff8;
  padding-top: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .location-grid,
  .highlight-box,
  .contact-box,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-inner,
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 68px 0;
  }

  .topbar-inner {
    padding: 16px 0;
  }

  .nav-inner {
    gap: 18px;
    padding: 12px 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-copy h2 {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
  }

  .top-actions,
  .hero-buttons {
    width: 100%;
  }

  .info-card,
  .location-card,
  .contact-box,
  .highlight-box,
  .service-card {
    padding: 22px;
  }

  .floating-call {
    width: 68px;
    height: 68px;
  }
}
