:root {
  --primary: #0ea5e9;
  --primary-dark: #0369a1;
  --accent: #22c55e;
  --dark: #07111f;
  --muted: #64748b;
  --light: #f6fbff;
  --border: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 70px rgba(2, 8, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #0f172a;
  background: #fff;
}

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

a:hover {
  text-decoration: none;
}

.top-bar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  padding: 9px 0;
}

.navbar {
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: -0.7px;
  color: var(--dark) !important;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 8px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.nav-link {
  font-weight: 600;
  color: #334155 !important;
  margin-left: 12px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark) !important;
}

.btn-premium {
  border: 0;
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.28);
}

.btn-whatsapp {
  border: 0;
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  box-shadow: 0 14px 28px rgba(34, 197, 94, 0.24);
}

.btn-soft {
  color: var(--primary-dark) !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 22px;
  background: #e0f2fe;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.94) 0%, rgba(7, 17, 31, 0.78) 46%, rgba(7, 17, 31, 0.36) 100%),
    url('img/hero.webp') center/cover no-repeat;
}

.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -120px -10%;
  height: 240px;
  background: #fff;
  transform: rotate(-3deg);
}

.hero .container {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-weight: 700;
  font-size: 13px;
}

.hero h1 {
  max-width: 840px;
  margin: 24px 0 18px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -2.5px;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.8;
}

.hero-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.26);
}

.stat-card {
  border-radius: 22px;
  padding: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  color: var(--primary-dark);
}

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

section {
  padding: 92px 0;
}

.section-light {
  background: var(--light);
}

.section-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.6px;
  color: var(--dark);
}

.section-lead {
  max-width: 720px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.service-card,
.feature-card,
.contact-card {
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #e0f2fe, #dcfce7);
  font-size: 27px;
}

.card-title {
  font-weight: 800;
  margin-top: 20px;
}

.card-text {
  color: var(--muted);
  line-height: 1.75;
}

.split-img {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #334155;
  font-weight: 600;
}

.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 900;
}

.area-pill {
  display: inline-flex;
  padding: 10px 15px;
  margin: 6px;
  border-radius: 999px;
  font-weight: 700;
  color: #075985;
  background: #e0f2fe;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.12);
  cursor: pointer;
}

.cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  border-radius: 38px;
  padding: 56px;
  background: linear-gradient(135deg, var(--primary-dark), #082f49);
  box-shadow: var(--shadow);
}

.cta p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  padding: 130px 0 90px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.6)),
    url('./img/page-hero.webp') center/cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 800;
  letter-spacing: -2px;
}

.page-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.8;
}

.map-frame {
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--dark);
  padding: 46px 0;
}

.footer strong {
  color: #fff;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.float-phone {
  background: var(--primary-dark);
}

.float-wa {
  background: #16a34a;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 8, 23, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox img {
  max-width: 94%;
  max-height: 88vh;
  border-radius: 20px;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  color: #fff;
  font-size: 42px;
  cursor: pointer;
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 90px 0 130px;
  }

  .hero-card {
    margin-top: 28px;
  }

  section {
    padding: 70px 0;
  }

  .cta {
    padding: 34px;
  }
}

.projects-section {
  padding: 90px 0;
  background: #f8fafc;
}

.projects-section .container {
  max-width: 1280px;
}

.projects-section .badge {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0284c7;
  font-weight: 600;
  margin-bottom: 16px;
}

.projects-section .section-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.projects-section .section-desc {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.project-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.card-img {
  overflow: hidden;
  height: 280px;
}

.card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-card .card-body {
  padding: 24px;
}

.project-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.project-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .projects-section {
    padding: 70px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .projects-section .section-title {
    font-size: 2rem;
  }

  .card-img {
    height: 240px;
  }
}
