* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0f172a;
  --bg-soft: #f8fafc;
  --text: #1e293b;
  --text-light: #e2e8f0;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --white: #ffffff;
  --border: #dbeafe;
  --shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.78)),
    linear-gradient(135deg, #1d4ed8, #0f172a);
  color: var(--text-light);
  display: flex;
  flex-direction: column;
}

.navbar {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

.hero-content {
  width: min(1100px, 92%);
  margin: auto;
  padding: 40px 0 80px;
  max-width: 760px;
}

.eyebrow,
.section-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #93c5fd;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-text {
  font-size: 1.08rem;
  max-width: 700px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  color: var(--text);
}

.about-grid,
.services-grid {
  display: grid;
  gap: 24px;
}

.about-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card,
.service-box,
.location-card,
.contact-box {
  background: var(--white);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3,
.service-box h3,
.location-card h3 {
  margin-bottom: 12px;
  color: var(--text);
}

.location-box {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-box p {
  margin-bottom: 20px;
  max-width: 700px;
}

.footer {
  background: var(--bg);
  color: var(--text-light);
  padding: 26px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.footer a {
  color: #93c5fd;
  font-weight: 700;
}

@media (max-width: 820px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 20px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nav-links {
    gap: 14px;
  }
}
