﻿:root {
  --blue-950: #051323;
  --blue-900: #0a1f38;
  --blue-800: #123055;
  --blue-700: #194472;
  --blue-500: #2d67a3;
  --blue-100: #e9f1fb;
  --slate-50: #f7f9fc;
  --slate-100: #ecf1f7;
  --slate-400: #6e7f94;
  --slate-800: #1d2d3f;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 16px 38px rgba(5, 19, 35, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar {
  background: var(--blue-900);
  color: var(--white);
  font-size: 0.9rem;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 19, 37, 0.2);
  backdrop-filter: blur(8px);
  transition: background 0.25s ease;
}
.site-header.scrolled,
body.inner-page .site-header {
  background: rgba(8, 25, 46, 0.96);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px;
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; font-size: 0.78rem; opacity: 0.88; }

.primary-nav { margin-left: auto; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}
.primary-nav li { position: relative; }
.primary-nav a {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}
.primary-nav a.active,
.primary-nav a:hover,
.primary-nav .has-submenu:hover > a {
  color: #a5cfff;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  display: none;
}
.primary-nav .submenu a {
  display: block;
  color: #17355a;
  padding: 8px 10px;
  border-radius: 8px;
}
.primary-nav .submenu a:hover,
.primary-nav .submenu a.active {
  background: var(--blue-100);
}
.has-submenu:hover .submenu,
.has-submenu.open .submenu { display: block; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.93rem;
  font-weight: 600;
}
.mobile-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  color: var(--white);
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 600;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.2s ease;
}
.btn.primary { background: var(--blue-500); color: var(--white); }
.btn.primary:hover { background: #3e79b5; }
.btn.secondary {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}
.btn.secondary:hover { background: rgba(255,255,255,0.12); }
.btn.dark-outline {
  border: 2px solid var(--blue-700);
  color: var(--blue-700);
}
.btn.dark-outline:hover {
  background: var(--blue-700);
  color: var(--white);
}
.btn.nav-cta { padding: 10px 16px; font-size: 0.88rem; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero video,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.06);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,13,25,0.45) 10%, rgba(3,13,25,0.82) 68%, rgba(3,13,25,0.94) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 140px 0 78px;
}
.kicker {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1, h2, h3, h4 { margin-top: 0; line-height: 1.26; }
h1 { font-size: clamp(2rem, 3.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.45rem); color: #0d2a4a; }
h3 { font-size: 1.3rem; color: #14365a; }
.hero h1 { color: #fff; margin-bottom: 16px; }
.hero p {
  margin: 0 auto 26px;
  max-width: 860px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.section { padding: 74px 0; }
.section.alt { background: var(--slate-100); }
.section.dark {
  background: var(--blue-900);
  color: #edf5ff;
}
.section.dark h2,
.section.dark h3 { color: #fff; }
.section.compact { padding: 54px 0; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.card.tight { padding: 0; overflow: hidden; }
.service-card img,
.card.tight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card .inner { padding: 20px; }

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue-500);
  font-weight: 700;
}

.badges { display: grid; gap: 12px; }
.badge {
  border: 1px solid rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 16px;
}

.stats {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.stat {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  min-width: 190px;
}
.stat strong { display: block; font-size: 1.25rem; color: #fff; }
.stat span { font-size: 0.82rem; color: rgba(255,255,255,0.82); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-panel {
  border-radius: 18px;
  background: linear-gradient(120deg, #0e2a4b, #194472);
  padding: 36px;
  color: #fff;
}
.cta-panel h2,
.cta-panel h3 { color: #fff; }

.form-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
  min-height: 720px;
}

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d8e1eb;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: 0;
  font: inherit;
  background: transparent;
  font-weight: 600;
  color: #1b3758;
  cursor: pointer;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  transition: max-height 0.2s ease;
}
.faq-answer p { margin: 0 0 14px; color: var(--slate-400); }
.faq-item.open .faq-answer { max-height: 220px; }

.site-footer {
  background: var(--blue-950);
  color: #dbe9fb;
  padding: 48px 0 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}
.footer-col h4 {
  margin: 0 0 10px;
  color: #fff;
}
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-list li { margin-bottom: 7px; }
.footer-note {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 26px;
  padding-top: 14px;
  font-size: 0.88rem;
  color: #b1c8e4;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 180px 0 92px;
  color: #fff;
  background-image: linear-gradient(120deg, rgba(11, 35, 64, 0.82), rgba(29, 72, 119, 0.72)), var(--hero-image);
  background-size: cover;
  background-position: center;
}
.inner-hero .container {
  position: relative;
  z-index: 1;
}
.inner-hero h1,
.inner-hero p { color: #fff; }

@media (max-width: 1040px) {
  .primary-nav {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(8,25,46,0.98);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    display: none;
    padding: 14px 4%;
  }
  .primary-nav.open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    display: none;
  }
  .has-submenu.open .submenu { display: block; }
  .mobile-toggle { display: inline-block; }
  .nav-actions { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-content { padding-top: 132px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .btn { width: 100%; text-align: center; }
  .btn-row { width: 100%; }
  .gallery { grid-template-columns: 1fr; }
  .hero p { font-size: 1rem; }
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-pills span {
  background: var(--blue-100);
  color: #16385e;
  border: 1px solid #c9dbef;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 600;
}
.reviews-grid {
  align-items: stretch;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-head img {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(13, 42, 74, 0.2);
}
.review-head strong {
  display: block;
  color: #12385f;
}
.review-head span {
  color: var(--slate-400);
  font-size: 0.9rem;
}
.review-card p {
  margin: 0;
}
.service-map-card {
  padding: 0;
  overflow: hidden;
}
.service-map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
