:root {
  --navy: #071827;
  --blue: #0066cc;
  --blue-soft: #eaf4ff;
  --orange: #ff6b00;
  --orange-dark: #e85f00;
  --text: #17202a;
  --muted: #667085;
  --line: rgba(15, 23, 42, 0.1);
  --bg: #ffffff;
  --soft: #f5f7fa;
  --max: 1180px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow-soft: 0 30px 80px rgba(7, 24, 39, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  padding-bottom: 84px;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

/* Header */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}


.brand-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, #ffffff 0 8%, transparent 9%),
    linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 12px 30px rgba(0, 102, 204, 0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #3f4a5a;
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-phone {
  padding: 11px 18px;
  background: var(--navy);
  color: white;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(7, 24, 39, 0.18);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 75% 18%, rgba(0, 102, 204, 0.18), transparent 34%),
    radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 780px;
  height: 780px;
  right: -260px;
  bottom: -320px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.18), rgba(7, 24, 39, 0.05));
  filter: blur(2px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 94px 0 86px;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 34px rgba(7, 24, 39, 0.08);
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 26px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.12);
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.065em;
  color: var(--navy);
}

.hero-lead {
  max-width: 740px;
  margin: 28px auto 0;
  font-size: clamp(19px, 2.2vw, 25px);
  color: #445468;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 850;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 34px rgba(255, 107, 0, 0.24);
}

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

.btn-dark {
  background: var(--navy);
  color: white;
  box-shadow: 0 18px 34px rgba(7, 24, 39, 0.2);
}

.btn-light {
  background: white;
  color: var(--navy);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

/* Hero stats */

.hero-stats {
  margin: 66px auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow-soft);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  padding: 28px 22px;
  text-align: left;
}

.hero-stat strong {
  display: block;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.hero-stat span {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

/* General sections */

section {
  padding: 110px 0;
}

.section-top {
  max-width: 780px;
  margin-bottom: 56px;
}

.center {
  text-align: center;
  margin-inline: auto;
}

.kicker {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 12px;
}

h2 {
  color: var(--navy);
  font-size: clamp(34px, 5.5vw, 66px);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

.section-top p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  letter-spacing: -0.02em;
}

/* Emergency */

.emergency {
  background: var(--navy);
  color: white;
  padding: 38px 0;
}

.emergency-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 107, 0, 0.38), transparent 30%),
    linear-gradient(135deg, #0b2238 0%, #071827 68%);
  padding: clamp(34px, 6vw, 72px);
}

.emergency-panel::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.emergency-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.emergency h2 {
  color: white;
}

.emergency p {
  color: #d8e7f7;
  font-size: 21px;
  max-width: 720px;
  margin-bottom: 30px;
}

/* Services */

.services {
  background: #fff;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 58px;
  align-items: start;
}

.service-intro {
  position: sticky;
  top: 110px;
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-number {
  color: var(--blue);
  font-weight: 900;
  font-size: 15px;
}

.service-item h3 {
  color: var(--navy);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.service-item p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
}

/* Why */

.why {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

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

.feature {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.98)),
    radial-gradient(circle at 30% 10%, rgba(0, 102, 204, 0.18), transparent 34%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(7, 24, 39, 0.08);
}

.feature:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.98)),
    radial-gradient(circle at 30% 10%, rgba(255, 107, 0, 0.16), transparent 34%);
}

.feature h3 {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature p {
  color: var(--muted);
  font-size: 17px;
}

/* Pricing */

.pricing {
  background: white;
}

.price-table {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.price-row strong {
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.025em;
}

.price-row span {
  color: var(--muted);
  margin-top: 5px;
  display: block;
}

.price {
  font-weight: 900;
  color: var(--blue);
  white-space: nowrap;
  font-size: 20px;
}

/* Reviews */

.reviews {
  background: var(--soft);
}

.quote-wrap {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.quote-main,
.quote-side {
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 22px 54px rgba(7, 24, 39, 0.08);
}

.quote-main {
  padding: clamp(34px, 5vw, 58px);
}

.quote-main p {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.quote-side {
  padding: 32px;
  display: grid;
  gap: 22px;
}

.small-quote {
  color: #3f4a5a;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.small-quote:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stars {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Area */

.area {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 102, 204, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #edf6ff 100%);
}

.area-box {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.area-box p {
  color: var(--muted);
  font-size: 22px;
  max-width: 760px;
  margin: 0 auto 32px;
}

.locations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.location {
  padding: 10px 15px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #3f4a5a;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(7, 24, 39, 0.06);
}

/* Contact */

.contact {
  background: var(--navy);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.contact h2 {
  color: white;
}

.contact p {
  color: #d8e7f7;
  font-size: 20px;
  margin-bottom: 28px;
}

.contact-phone {
  display: inline-block;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 950;
  letter-spacing: -0.055em;
  color: white;
  margin-bottom: 22px;
}

.contact-details {
  display: grid;
  gap: 12px;
  color: #d8e7f7;
  font-weight: 650;
}

.form-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 38px);
}

form {
  display: grid;
  gap: 16px;
}

label {
  display: block;
  color: white;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 17px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.18);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: #aac3dd;
  font-size: 13px;
  margin: 0;
}

/* Footer */

footer {
  background: #05111d;
  color: #aac3dd;
  padding: 34px 0;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: white;
}

/* Sticky mobile CTA */

.sticky-call {
  position: fixed;
  z-index: 100;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: none;
}

.sticky-call a {
  width: 100%;
  min-height: 60px;
  border-radius: 19px;
  font-size: 18px;
}

/* Responsive */

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-stats,
  .service-showcase,
  .feature-grid,
  .quote-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-intro {
    position: static;
  }

  .hero-stat {
    text-align: center;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 92px;
  }

  .nav-inner {
    min-height: 66px;
  }

  .brand span:last-child {
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-phone {
    display: none;
  }

  .hero-inner {
    padding: 64px 0 58px;
  }

  h1 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .hero-lead {
    font-size: 19px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    margin-top: 44px;
  }

  section {
    padding: 76px 0;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-main p {
    font-size: 30px;
  }

  .sticky-call {
    display: block;
  }
}

/* Service note */
.service-note {
  margin-top: 10px;
  color: var(--navy);
  font-weight: 700;
}

/* Gallery */
.gallery {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.gallery-placeholder {
  min-height: 240px;
  border-radius: var(--radius-xl);
  border: 2px dashed rgba(0, 102, 204, 0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.98)),
    radial-gradient(circle at 35% 20%, rgba(0, 102, 204, 0.12), transparent 34%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  box-shadow: 0 20px 50px rgba(7, 24, 39, 0.06);
}

.gallery-placeholder span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.gallery-placeholder figcaption {
  font-weight: 800;
  color: var(--navy);
}



/* Header logo image */
.brand-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}

/* Gallery photos */
.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(7, 24, 39, 0.08);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--navy);
  font-weight: 850;
  font-size: 15px;
}

@media (max-width: 640px) {
  .brand-logo {
    width: 46px;
    height: 34px;
  }
}
.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

/* Contact form additions */
.optional {
  font-weight: 600;
  opacity: 0.8;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

/* Mobile header fix: visible menu + full brand name */
@media (max-width: 940px) {
  .nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
  }

  .nav-inner {
    min-height: auto;
    padding: 8px 0 10px;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .brand {
    flex: 1 1 100%;
    min-width: 0;
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand span:last-child {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 15px;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 3px 2px 2px;
    margin-top: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: var(--navy);
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(7, 24, 39, 0.06);
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 20px), var(--max));
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand span:last-child {
    font-size: 13px;
    line-height: 1.1;
  }

  .nav-links a {
    padding: 7px 10px;
    font-size: 12px;
  }
}
