:root {
  --blue: #0646ad;
  --blue-dark: #012b73;
  --ink: #050608;
  --panel: #0c0f14;
  --soft: #f4f7fb;
  --white: #ffffff;
  --muted: #b9c2d2;
  --line: rgba(255, 255, 255, 0.16);
  --green: #16a34a;
  --red: #c71f37;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(5, 6, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  padding: 12px 14px;
  border-radius: 6px;
  color: #edf3ff;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-call {
  background: var(--blue);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48) contrast(1.08);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 44%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.22) 48%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: clamp(26px, 5vw, 70px);
  min-height: 92vh;
  padding: 150px clamp(18px, 5vw, 72px) 54px;
}

.hero-copy {
  max-width: 730px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7db0ff;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.4rem, 11vw, 9rem);
  line-height: 0.86;
}

h2 {
  font-size: clamp(2.45rem, 5.2vw, 4.75rem);
  line-height: 0.94;
}

h3 {
  font-size: 1.7rem;
  line-height: 1;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #f5f7fb;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary {
  background: var(--green);
  color: var(--white);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.service-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(33, 108, 255, 0.5);
  border-radius: 8px;
  background: rgba(1, 10, 24, 0.8);
  box-shadow: var(--shadow);
}

.service-panel div {
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(33, 108, 255, 0.3);
}

.service-panel div:last-child {
  border-bottom: 0;
}

.panel-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  font-size: 1.45rem;
  font-weight: 900;
}

.service-panel strong,
.quick-strip strong,
.footer strong {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.service-panel p,
.quick-strip span,
.footer span {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-strip div {
  min-height: 118px;
  padding: 28px clamp(18px, 4vw, 54px);
  background: linear-gradient(135deg, var(--blue-dark), #06101f);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto 34px;
}

.section-heading h2 {
  max-width: 820px;
}

.services {
  background: var(--soft);
  color: #08101c;
}

.services .eyebrow {
  color: var(--blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.service-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  background: var(--white);
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #e8f0ff;
  color: var(--blue);
  font-weight: 900;
}

.service-grid p,
.about-copy p,
.operation-list p,
.location-copy p {
  color: #4c5564;
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 74px);
  background: #080a0e;
}

.about-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.about-copy p {
  max-width: 650px;
  color: #d6deea;
}

.values {
  display: grid;
  gap: 10px;
  max-width: 610px;
  margin-top: 28px;
}

.values span {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-transform: uppercase;
}

.operation {
  position: relative;
  overflow: hidden;
  background: #0d1624;
}

.compact {
  align-items: start;
  margin-bottom: 24px;
}

.operation-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.operation-list p {
  min-height: 150px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #dbe5f3;
  background: rgba(255, 255, 255, 0.06);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: stretch;
  background: var(--white);
  color: #07111f;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vw, 90px) clamp(18px, 5vw, 72px);
}

.location-copy .eyebrow {
  color: var(--blue);
}

.location-copy h2 {
  max-width: 760px;

  font-size: clamp(2.3rem, 4vw, 3.8rem);

  line-height: 0.95;

  overflow-wrap: normal;
}

.location-copy h2 span {
  display: inline;
}

.location-copy p {
  max-width: 560px;
  font-size: 1.08rem;
}

.location img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.location .secondary {
  color: #08101c;
  border-color: #cad5e6;
  background: #eef3fb;
}

.footer {
  padding: 0 clamp(18px, 5vw, 72px);
  background: #020306;
  border-top: 8px solid var(--blue-dark);
}

.footer-main {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 38px;

  padding: 28px 0;

  flex-wrap: wrap;
}

.footer a {
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #9ba7b8;
  font-size: 0.88rem;
}





.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.whatsapp-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.whatsapp-text strong {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.whatsapp-text small {
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .hero-content,
  .about,
  .location {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: center;
  }

  .service-panel {
    max-width: 560px;
  }

  .quick-strip,
  .service-grid,
  .operation-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .location img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .topbar {
    min-height: 68px;
  }

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

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 68px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 6, 8, 0.96);
  }

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

  .hero {
    min-height: auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.76) 48%, rgba(0, 0, 0, 0.96) 100%);
  }

  .hero-content {
    min-height: 860px;
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.3rem);
  }

  .button {
    width: 100%;
  }

  .service-panel div {
    grid-template-columns: 52px 1fr;
    padding: 16px;
  }

  .panel-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .footer-main,
  .footer-bottom {
    display: grid;
  }

  

  .whatsapp-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .whatsapp-text strong {
    font-size: 0.76rem;
  }

  .whatsapp-text small {
    font-size: 0.95rem;
  }
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-phone {
  font-size: 2rem;
  font-weight: 900;
  white-space: nowrap;
  justify-self: center;
  transition: 0.2s;
}

.footer-phone:hover {
  opacity: 0.75;
}

.footer-slogan {
  justify-self: end;
  color: #d7dfeb;
  font-size: 1rem;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: #9ba7b8;
  font-size: 0.88rem;
}

.developer-signature {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}

.developer-signature a {
  color: #C8A84B;
  font-size: inherit;
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  transition:
    transform .18s ease,
    opacity .18s ease;
}

.floating-whatsapp:hover {
  opacity: 0.92;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  font-size: 1.1rem;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.whatsapp-text strong {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.whatsapp-text small {
  font-size: 0.92rem;
}

@media (max-width: 980px) {

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-phone,
  .footer-slogan {
    justify-self: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    transform-origin: bottom right;
    scale: 0.92;
  }
}