:root {
  --background: 0 0% 100%;
  --foreground: 216 100% 6%;
  --secondary: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --border: 214.3 31.8% 91.4%;
  --navy: 216 100% 6%;
  --teal: 168 100% 35%;
  --blue: 193 96% 45%;
  --purple: 232 38% 66%;
  --lightblue: 200 90% 79%;
  --radius: 0.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all .3s ease;
}
.site-nav.scrolled { background: hsl(var(--navy)); box-shadow: 0 10px 25px -5px hsl(var(--navy) / .4); }
.site-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; }
.nav-links { display: none; align-items: center; gap: 2rem; color: #fff; font-size: .875rem; font-weight: 500; }
.nav-link-btn { border: 0; background: transparent; color: inherit; cursor: pointer; transition: color .2s ease; }
.nav-link-btn:hover { color: hsl(var(--teal)); }
.brand { display: flex; align-items: center; gap: .5rem; color: #fff; font-weight: 700; font-size: 1.5rem; letter-spacing: .02em; }
.brand.brand-link { border: 0; background: transparent; padding: 0; cursor: pointer; font: inherit; }
.brand.brand-link:hover { color: hsl(var(--teal)); }
.brand.brand-link:hover svg { color: #fff; }
.brand svg { color: hsl(var(--teal)); width: 1.75rem; height: 1.75rem; }
.mobile-toggle, .mobile-spacer { width: 1.5rem; }
.mobile-toggle { border: 0; background: transparent; color: #fff; padding: 0; cursor: pointer; }
.mobile-toggle svg { width: 1.5rem; height: 1.5rem; }
.mobile-menu {
  display: none;
  background: hsl(var(--navy) / .95);
  backdrop-filter: blur(6px);
  border-top: 1px solid hsl(var(--purple) / .2);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 1rem; color: #fff; font-size: .875rem; font-weight: 500; }

.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  background: hsl(var(--navy)); color: #fff; overflow: hidden;
}
.hero video, .hero .hero-image-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero video { filter: hue-rotate(160deg) saturate(.7) brightness(.5); }
.hero-overlay { position: absolute; inset: 0; background: hsl(var(--navy) / .7); }
.hero-glow-left, .hero-glow-right {
  position: absolute; width: 24rem; height: 24rem; border-radius: 9999px; filter: blur(64px);
}
.hero-glow-left { top: 25%; left: -8rem; background: hsl(var(--blue) / .1); }
.hero-glow-right { bottom: 25%; right: -8rem; background: hsl(var(--teal) / .1); }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 48rem; padding: 0 1.5rem; }
.badge {
  display: inline-block; margin-bottom: 1.5rem; font-size: .875rem; font-weight: 600;
  color: hsl(var(--teal)); border: 1px solid hsl(var(--teal) / .3); background: hsl(var(--teal) / .2);
  border-radius: 9999px; padding: .375rem 1rem;
}
.hero h1 { margin: 0 0 1.5rem; font-weight: 700; line-height: 1.15; font-size: clamp(2.25rem, 6vw, 3.75rem); }
.hero h1 .hero-line-1 { white-space: nowrap; }
.hero h1 .teal { color: hsl(var(--teal)); }
.hero p { margin: 0 0 2.5rem; color: hsl(var(--lightblue) / .8); font-size: clamp(1.125rem, 2.6vw, 1.25rem); line-height: 1.65; }

.btn {
  border: 0; border-radius: .5rem; font-weight: 600; cursor: pointer; transition: .2s ease;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-primary {
  background: hsl(var(--teal)); color: #fff; padding: 1rem 2rem; font-size: 1rem;
  box-shadow: 0 10px 18px hsl(var(--teal) / .3);
}
.btn-primary:hover { background: hsl(var(--teal) / .9); }
.section { padding: 5rem 0; }
.section-secondary { background: hsl(var(--secondary)); }
.section-navy { background: hsl(var(--navy)); }

.about-grid { max-width: 72rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
.about-image-wrap { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: 0 25px 50px -12px rgb(0 0 0 / .35); }
.about-image-wrap img { width: 100%; height: auto; display: block; }
.about-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, hsl(var(--navy) / .3), transparent); }
.about-text { text-align: center; }
.about-text h2 { margin: 0 0 1.25rem; font-size: clamp(1.875rem, 4.4vw, 2.25rem); }
.about-text h2 .blue { color: #05B1E1; }
.about-text p { margin: 0 0 1rem; color: hsl(var(--muted-foreground)); line-height: 1.65; }
.stats-row { display: flex; align-items: flex-start; justify-content: center; gap: 2rem; margin: 2rem 0; flex-wrap: wrap; }
.stat-number { margin: 0; color: hsl(var(--teal)); font-size: clamp(1.875rem, 4.4vw, 2.25rem); font-weight: 800; }
.about-text .stat-number { color: #00b38c; }
.stat-label { margin: .25rem 0 0; color: hsl(var(--muted-foreground)); font-size: .875rem; }
.stat-divider { width: 1px; height: 3.5rem; background: hsl(var(--border)); }
.owner-name { margin: 0; font-size: 1.25rem; font-weight: 700; color: rgba(0, 0, 0, 1); }
.owner-role { margin: .25rem 0 0; color: hsl(var(--muted-foreground)); font-size: .875rem; }

.section-title-wrap { text-align: center; margin-bottom: 3.5rem; }
.section-title-wrap h2 { margin: 0 0 1rem; color: #fff; font-size: clamp(1.875rem, 4.4vw, 2.25rem); }
.section-title-wrap p { margin: 0; color: hsl(var(--lightblue) / .7); font-size: 1.125rem; }
.services-grid { max-width: 64rem; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card {
  background: hsl(var(--navy)); border: 1px solid hsl(var(--purple) / .2); border-radius: .75rem;
  overflow: hidden; transition: all .3s ease;
}
.service-card:hover {
  transform: translateY(-4px); border-color: hsl(var(--teal) / .5); box-shadow: 0 20px 35px hsl(var(--teal) / .1);
}
.service-image-wrap { height: 11rem; overflow: hidden; }
.service-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-image-wrap img { transform: scale(1.05); }
.service-content { padding: 1.5rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.service-content h3 { margin: 0 0 .75rem; color: #fff; font-size: 1.25rem; }
.service-price { margin-bottom: .75rem; }
.service-price-amount { color: hsl(var(--teal)); font-size: 1.875rem; font-weight: 800; }
.service-price-unit { color: hsl(var(--lightblue) / .6); font-size: .875rem; margin-left: .5rem; }
.service-formats { margin: 0 0 .25rem; color: hsl(var(--lightblue) / .7); font-size: .875rem; }
.service-details { margin: 0; color: hsl(var(--lightblue) / .5); font-size: .875rem; padding-left: 20px; padding-right: 20px; }
.service-call { margin-top: 1rem; }
.service-call svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.quote-section { position: relative; overflow: hidden; padding: 6rem 0; }
.quote-bg, .quote-overlay { position: absolute; inset: 0; }
.quote-bg img { width: 100%; height: 100%; object-fit: cover; }
.quote-overlay { background: hsl(var(--navy) / .8); }
.quote-content { position: relative; z-index: 2; max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.quote-icon { color: hsl(var(--teal) / .4); width: 2.5rem; height: 2.5rem; margin: 0 auto 1.5rem; }
.quote-content blockquote { margin: 0; color: #fff; font-size: clamp(1.5rem, 4vw, 1.875rem); line-height: 1.5; font-style: italic; font-weight: 700; }
.quote-author { margin: 1.5rem 0 0; color: hsl(var(--lightblue) / .7); font-weight: 500; }
.quote-btn-wrap { margin-top: 2rem; }

.contact-wrap { max-width: 42rem; margin: 0 auto; padding: 0 1.5rem; }
.contact-head { text-align: center; margin-bottom: 3rem; }
.contact-head h2 { margin: 0 0 1rem; font-size: clamp(1.875rem, 4.4vw, 2.25rem); }
.contact-links { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; color: hsl(var(--muted-foreground)); }
.contact-links a { display: inline-flex; align-items: center; gap: .5rem; transition: color .2s ease; }
.contact-links a svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.contact-links a:hover { color: hsl(var(--teal)); }
.contact-form { display: grid; gap: 1.25rem; }
.field-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.field label { display: inline-block; margin-bottom: .5rem; font-size: .875rem; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid hsl(var(--border));
  background: #fff;
  border-radius: calc(var(--radius) - 2px);
  min-height: 2.5rem;
  padding: .5rem .75rem;
  font: inherit;
  color: hsl(var(--foreground));
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid hsl(var(--teal) / .3);
  border-color: hsl(var(--teal));
}
.form-alert {
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .875rem;
}
.form-alert.success { background: #e7f9f3; color: #0e704f; border: 1px solid #b9eedc; }
.form-alert.error { background: #ffe9e9; color: #8a1e1e; border: 1px solid #ffc9c9; }

.footer { background: hsl(var(--navy)); padding: 3.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand { color: hsl(var(--lightblue) / .6); font-size: .875rem; line-height: 1.6; margin: 0; }
.footer-title { color: hsl(var(--teal)); font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 1rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; font-size: .875rem; color: hsl(var(--lightblue) / .7); }
.footer-list button, .footer-list a {
  border: 0; background: transparent; color: inherit; padding: 0; text-align: left; cursor: pointer;
  display: inline-flex; align-items: center; gap: .5rem; transition: color .2s ease;
}
.footer-list a svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.footer-list button:hover, .footer-list a:hover { color: hsl(var(--teal)); }
.footer-bottom {
  border-top: 1px solid hsl(var(--purple) / .2);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p { margin: 0; color: hsl(var(--lightblue) / .4); font-size: .875rem; text-align: center; }
.footer-bottom a { color: hsl(var(--teal)); font-weight: 500; }
.footer-bottom a:hover { color: hsl(var(--teal) / .8); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-toggle, .mobile-spacer, .mobile-menu { display: none !important; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .contact-links { flex-direction: row; gap: 1.25rem; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-bottom { flex-direction: row; }
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-text { text-align: left; }
  .stats-row { justify-content: flex-start; }
}

@media (max-width: 767px) {
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
  }
  .hero h1 .hero-line-1 { white-space: normal; }
  .hero h1 { overflow-wrap: break-word; word-wrap: break-word; }

  .stats-row {
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: stretch;
  }
  .stats-row > div:not(.stat-divider) {
    flex: 1 1 0%;
    min-width: 0;
    text-align: center;
  }
  .stats-row .stat-divider {
    flex: 0 0 1px;
    width: 1px;
    align-self: stretch;
    height: auto;
    min-height: 3rem;
  }
  .stats-row .stat-number { font-size: 1.25rem; }
  .stats-row .stat-label { font-size: 0.75rem; }
}
