@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #081a33;
  --navy-soft: #112b52;
  --red: #c81928;
  --red-deep: #9f0f1f;
  --white: #ffffff;
  --paper: #f5f7fb;
  --ink: #132033;
  --muted: #5c6678;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(6, 18, 39, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(200, 25, 40, 0.09), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #eef2f8 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.topbar {
  background: #06111f;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.topbar__inner,
.navbar__inner,
.footer__grid,
.contact-split,
.hero__actions,
.hero__stats,
.trustbar,
.card-grid,
.two-col,
.service-grid,
.process-grid,
.gallery-grid,
.reviews-grid,
.coverage-grid,
.contact-options {
  display: grid;
  gap: 1.25rem;
}

.topbar__inner {
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.topbar__item span {
  color: rgba(255, 255, 255, 0.68);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(8, 26, 51, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__inner {
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}

.brand img {
  width: 170px;
  height: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.brand__name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: inline-flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ff5b4f);
}

.cta-group {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red) 0%, #ef4444 100%);
  box-shadow: 0 18px 36px rgba(200, 25, 40, 0.28);
}

.btn--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn--light {
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 18, 39, 0.92) 0%, rgba(6, 18, 39, 0.82) 46%, rgba(6, 18, 39, 0.55) 100%),
    var(--hero-image) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -15% auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 25, 40, 0.26), transparent 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.82fr);
  gap: 2rem;
  align-items: end;
  min-height: 78vh;
  padding: 6.5rem 0 5rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.84rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #fca5a5);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: headlineRise 0.9s ease both;
}

.hero p,
.page-hero p {
  max-width: 700px;
  margin: 1.2rem 0 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.84);
  animation: fadeLift 1.1s ease both;
}

.hero__actions {
  grid-template-columns: repeat(2, max-content);
  margin-top: 1.8rem;
}

.hero__stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.2rem;
}

.stat {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.stat strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-card,
.panel,
.service-card,
.review-card,
.gallery-card,
.contact-card,
.info-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  justify-self: end;
  width: min(100%, 390px);
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 247, 251, 0.94));
  color: var(--ink);
  animation: floatCard 5.5s ease-in-out infinite;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.hero-card ul {
  padding: 0;
  margin: 1rem 0 1.4rem;
  list-style: none;
}

.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(19, 32, 51, 0.08);
}

.hero-card li:last-child {
  border-bottom: 0;
}

.icon-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--navy));
  flex: 0 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(200, 25, 40, 0.18), transparent 30%),
    linear-gradient(180deg, #09162a 0%, #081a33 100%);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section__heading h2 {
  margin: 0.4rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 0.98;
  text-transform: uppercase;
  color: inherit;
}

.section__heading h2.heading-sm {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.section__heading p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.section--dark .section__heading p,
.section--dark .copy-muted,
.section--dark .list-check li,
.section--dark .small-note {
  color: rgba(255, 255, 255, 0.74);
}

.trustbar {
  grid-template-columns: repeat(4, 1fr);
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
}

.panel,
.info-card,
.service-card,
.review-card,
.gallery-card,
.contact-card {
  background: var(--white);
  padding: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.panel:hover,
.info-card:hover,
.service-card:hover,
.review-card:hover,
.contact-card:hover,
.contact-option:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(6, 18, 39, 0.14);
}

.section--dark .panel,
.section--dark .info-card,
.section--dark .service-card,
.section--dark .review-card,
.section--dark .contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.trustbar .panel {
  display: grid;
  gap: 0.35rem;
}

.trustbar .panel strong,
.contact-option strong,
.service-card h3,
.review-card h3,
.info-card h3 {
  font-size: 1rem;
}

.copy-muted {
  color: var(--muted);
}

.hero-card .copy-muted {
  color: #111827;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.two-col {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
}

.two-col--top {
  align-items: start;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 420px;
  background: #dfe7f3;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(8, 26, 51, 0.06);
  color: var(--navy);
  font-weight: 700;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card h3,
.review-card h3,
.info-card h3,
.gallery-card h3 {
  margin: 0.8rem 0 0.55rem;
}

.service-card p,
.review-card p,
.info-card p {
  margin: 0;
  color: var(--muted);
}

.service-card__icon,
.step-num {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--red));
  box-shadow: 0 14px 30px rgba(8, 26, 51, 0.2);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.list-check li {
  display: flex;
  gap: 0.8rem;
  align-items: start;
  padding: 0.55rem 0;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--navy));
  flex: 0 0 auto;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-card {
  overflow: hidden;
  padding: 0;
  position: relative;
  min-height: 280px;
  cursor: pointer;
  border: 0;
  box-shadow: none;
  border-radius: 18px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card__overlay {
  display: none;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  display: grid;
  gap: 1rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.stars {
  letter-spacing: 0.15em;
  color: #fbbf24;
}

.contact-split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
}

.contact-card form {
  display: grid;
  gap: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.95rem;
}

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(19, 32, 51, 0.14);
  border-radius: 16px;
  background: #f8fafd;
  padding: 0.95rem 1rem;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.small-note {
  font-size: 0.94rem;
  color: var(--muted);
}

.map-card {
  overflow: hidden;
  padding: 0;
  min-height: 100%;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
}

.contact-options {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.contact-option {
  padding: 1.4rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.coverage-grid {
  grid-template-columns: repeat(4, 1fr);
}

.coverage-grid .panel {
  text-align: center;
}

.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(100deg, rgba(8, 26, 51, 0.95) 0%, rgba(8, 26, 51, 0.86) 50%, rgba(8, 26, 51, 0.56) 100%),
    var(--hero-image) center/cover no-repeat;
}

.page-hero__inner {
  min-height: 52vh;
  display: grid;
  align-items: end;
  padding: 5.5rem 0 4rem;
}

.footer {
  color: rgba(255, 255, 255, 0.8);
  background: #050c17;
  padding: 4rem 0 1.5rem;
}

.footer__grid {
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1fr;
  align-items: start;
}

.footer h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1rem;
}

.footer a:hover {
  color: var(--white);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-credit a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.footer-credit a:hover {
  color: #ffb4b4;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 9, 18, 0.88);
  z-index: 80;
}

.lightbox.open {
  display: grid;
}

.lightbox__dialog {
  width: min(100%, 1000px);
  position: relative;
}

.lightbox__dialog img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headlineRise {
  0% {
    opacity: 0;
    transform: translateY(24px);
    letter-spacing: 0.08em;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.02em;
  }
}

@keyframes fadeLift {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .hero__inner,
  .two-col,
  .contact-split,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .navbar__inner {
    grid-template-columns: auto 1fr;
    gap: 0.9rem 1rem;
    padding: 0.9rem 0;
    min-height: auto;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: start;
    grid-row: 1;
    grid-column: 1;
  }

  .brand {
    justify-self: start;
    grid-row: 1;
    grid-column: 2;
    min-width: 0;
  }

  .cta-group {
    display: none;
  }

  .nav-links {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding: 1rem 0 0;
    justify-content: start;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .hero-card {
    justify-self: start;
  }

  .trustbar,
  .card-grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .reviews-grid,
  .contact-options,
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .topbar__inner,
  .hero__actions,
  .hero__stats,
  .form-grid,
  .trustbar,
  .card-grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .reviews-grid,
  .contact-options,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    justify-content: start;
    padding: 0.7rem 0;
  }

  .topbar__item {
    flex-wrap: wrap;
  }

  .hero__inner {
    min-height: auto;
    padding: 5rem 0 3.75rem;
  }

  .page-hero__inner {
    min-height: auto;
    padding: 4.5rem 0 3rem;
  }

  .brand img {
    width: 112px;
  }

  .brand__name {
    font-size: 1.22rem;
  }

  .brand__eyebrow {
    font-size: 0.68rem;
  }

  .cta-group {
    width: 100%;
    flex-direction: column;
  }

  .cta-group .btn,
  .hero__actions .btn {
    width: 100%;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 320px;
  }
}

@media (min-width: 721px) {
  .map-card {
    min-height: 100%;
  }
}
