* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #1457d9;
  --blue-dark: #0b3fa8;
  --orange: #ff8a00;
  --text: #111827;
  --muted: #64748b;
  --soft: #f3f7fb;
  --border: #e2e8f0;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(92%, 1180px);
  margin: auto;
}

.site-header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.logo strong {
  display: block;
  font-size: 18px;
}

.logo small {
  color: var(--muted);
  font-size: 13px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #334155;
}

.main-nav a:hover {
  color: var(--blue);
}

.nav-call {
  background: var(--blue);
  color: white !important;
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--blue);
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 20px;
}

.hero,
.sub-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,17,35,0.78), rgba(8,17,35,0.35), rgba(8,17,35,0.05));
  z-index: 1;
}

.hero-content {
  position: relative;
  color: white;
  max-width: 720px;
  z-index: 2;
}

.sub-hero {
  min-height: 460px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,17,35,0.78), rgba(8,17,35,0.35), rgba(8,17,35,0.05));
}

.hero-content {
  position: relative;
  color: white;
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  background: rgba(20,87,217,0.10);
  color: var(--blue);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  margin-bottom: 18px;
}

.eyebrow {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.25);
}

.light {
  color: white;
  background: rgba(255,255,255,0.15);
}

h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.hero-content p,
.lead {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.lead {
  color: var(--muted);
}

.hero-actions,
.cta-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.18);
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-light {
  background: white;
  color: var(--text);
}

.quick-info {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.contact-card,
.service-card,
.review-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(15,23,42,0.08);
}

.info-card strong {
  color: var(--blue);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.info-card p {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: 100px 0;
}

.soft-bg {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15,23,42,0.15);
}

.image-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: white;
  color: var(--blue);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.check-list {
  list-style: none;
  margin: 26px 0 34px;
}

.check-list li {
  margin: 13px 0;
  padding-left: 34px;
  position: relative;
  color: #334155;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 14px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.full-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  display: block;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.13);
}

.service-card img {
  width: calc(100% + 56px);
  margin: -28px -28px 22px;
  height: 210px;
  object-fit: cover;
}

.service-card p {
  color: var(--muted);
}

.no-link:hover {
  transform: none;
}

.review-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue), #0b3fa8);
  color: white;
}

.review-section h2 {
  max-width: 780px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.review-card {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  box-shadow: none;
  color: #ffdf70;
  font-size: 22px;
}

.review-card p {
  color: white;
  font-size: 17px;
  margin-top: 12px;
}

.cta-strip {
  padding: 34px 0;
  background: #fff7ed;
  border-top: 1px solid #fed7aa;
  border-bottom: 1px solid #fed7aa;
}

.cta-inner {
  justify-content: space-between;
}

.cta-inner h2 {
  font-size: 34px;
  margin-bottom: 4px;
}

.cta-inner p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 16px;
  outline: none;
  font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(20,87,217,0.12);
}

textarea {
  min-height: 130px;
}

.map-box,
.qr-box {
  min-height: 190px;
  display: grid;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 22px;
  background: #f8fafc;
  color: #94a3b8;
  font-weight: 900;
  margin-top: 18px;
}

.qr-box {
  min-height: 150px;
}

.site-footer {
  background: #0f172a;
  color: white;
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 34px;
}

.site-footer p,
.site-footer a {
  color: #cbd5e1;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 4%;
    right: 4%;
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 45px rgba(15,23,42,0.16);
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.show {
    display: flex;
  }

  .hero,
  .sub-hero {
    min-height: 600px;
  }

  .info-grid,
  .split,
  .service-grid,
  .review-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    padding-top: 24px;
  }

  .section {
    padding: 70px 0;
  }

  .image-card img {
    height: 340px;
  }
}

@media (max-width: 560px) {
  .logo small {
    display: none;
  }

  .hero-content p,
  .lead {
    font-size: 18px;
  }

  .btn {
    width: 100%;
  }

  .cta-inner {
    align-items: stretch;
  }
}
