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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(210, 20, 35, 0.13), transparent 32%),
    radial-gradient(circle at top right, rgba(5, 35, 80, 0.18), transparent 34%),
    linear-gradient(135deg, #f6f8fc 0%, #ffffff 45%, #eef3fb 100%);
  color: #061a3f;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.top-bar {
  background: #061a3f;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(6, 26, 63, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 185px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-weight: 700;
  color: #061a3f;
}

.nav-links a {
  opacity: .82;
  transition: .25s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  opacity: 1;
  color: #c91425;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 14px 30px rgba(6, 26, 63, .15);
}

.btn-primary {
  background: linear-gradient(135deg, #d9142a, #9e0f1d);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(217, 20, 42, .28);
}

.btn-soft {
  background: white;
  color: #061a3f;
  border: 1px solid rgba(6, 26, 63, .12);
}

.hero {
  padding: 84px 0 60px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.70) 0%,
      rgba(255, 255, 255, 0.42) 45%,
      rgba(255, 255, 255, 0.18) 100%
    ),
    url("construction-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(217, 20, 42, .10);
  color: #b70f20;
  font-weight: 900;
  border: 1px solid rgba(217, 20, 42, .18);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: .96;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.hero h1 span {
  color: #d9142a;
}

.hero p {
  color: #4a5872;
  font-size: 20px;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(6, 26, 63, .09);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  color: #061a3f;
  box-shadow: 0 10px 25px rgba(6, 26, 63, .08);
}

.hero-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,248,253,.92));
  border: 1px solid rgba(6, 26, 63, .10);
  border-radius: 34px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(6, 26, 63, .16);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(217,20,42,.17), transparent 68%);
  right: -90px;
  top: -90px;
}

.hero-logo-box {
  position: relative;
  background: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: inset 0 0 0 1px rgba(6,26,63,.08);
  text-align: center;
}

.hero-logo-box img {
  width: 100%;
  max-width: 430px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.license-box {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  position: relative;
}

.info-mini {
  padding: 18px;
  border-radius: 22px;
  background: #061a3f;
  color: white;
}

.info-mini.red {
  background: #d9142a;
}

.info-mini small {
  display: block;
  opacity: .75;
  margin-bottom: 6px;
  font-weight: 800;
}

.info-mini strong {
  font-size: 18px;
}

section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 38px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}

.section-head p {
  color: #5b687d;
  font-size: 18px;
  line-height: 1.6;
}

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

.service-card {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(6,26,63,.09);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(6,26,63,.09);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(6,26,63,.14);
}

.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #061a3f, #0a397c);
  color: white;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card:nth-child(2) .icon {
  background: linear-gradient(135deg, #d9142a, #9e0f1d);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  color: #5b687d;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.panel {
  background: #061a3f;
  color: white;
  border-radius: 34px;
  padding: 38px;
  box-shadow: 0 30px 70px rgba(6,26,63,.22);
}

.panel h2 {
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.panel p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  padding: 14px;
  border-radius: 18px;
}

.check span {
  color: #ff3348;
  font-weight: 900;
}

.contact-card {
  background: white;
  border-radius: 34px;
  padding: 34px;
  border: 1px solid rgba(6,26,63,.09);
  box-shadow: 0 22px 55px rgba(6,26,63,.11);
}

.contact-row {
  display: grid;
  gap: 16px;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: #f4f7fb;
  font-weight: 800;
}

.contact-item span {
  color: #657188;
  font-weight: 700;
}

.cta {
  background: linear-gradient(135deg, #061a3f, #0c3471);
  color: white;
  border-radius: 38px;
  padding: 44px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(6,26,63,.23);
}

.cta h2 {
  font-size: clamp(30px, 5vw, 52px);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cta p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

footer {
  padding: 42px 0;
  color: #657188;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.socials a {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  font-size: 21px;
  color: #061a3f;
  border: 1px solid rgba(6,26,63,.1);
  box-shadow: 0 12px 28px rgba(6,26,63,.10);
  transition: .25s ease;
}

.socials a:hover {
  background: #061a3f;
  color: white;
  transform: translateY(-3px);
}

.socials a.whatsapp:hover {
  background: #25D366;
  color: white;
}

.mobile-call {
  display: none;
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  text-align: center;
}

@media (max-width: 860px) {
  .top-inner {
    justify-content: center;
    text-align: center;
  }

  .nav-inner {
    min-height: auto;
    padding: 16px 0;
    align-items: center;
    flex-direction: column;
  }

  .logo img {
    width: 190px;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 50px;
    background-position: center;
  }

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

  .hero h1 {
    letter-spacing: -2px;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .license-box {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
  }

  .mobile-call {
    display: block;
  }

  body {
    padding-bottom: 82px;
  }
}
.photo-carousel-panel {
  padding: 18px;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #061a3f;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 4s ease;
}

.carousel-img.active {
  opacity: 1;
  transform: scale(1);
}
