:root {
  --bg: #ffffff;
  --text: #14213d;
  --text-soft: #4f5d75;
  --primary: #2f80ed;
  --secondary: #ff7eb6;
  --accent: #ffd166;
  --mint: #7bdcb5;
  --card: rgba(255, 255, 255, 0.9);
  --shadow: 0 18px 60px rgba(25, 52, 107, 0.12);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

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

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

.topbar {
  background: linear-gradient(90deg, #f3fbff, #fff5fb, #fff8e8);
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.topbar-inner {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
}

.topbar p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.mini-cta {
  color: var(--primary);
  font-weight: 800;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20, 33, 61, 0.08);
}

.nav-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  max-width: 320px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--text-soft);
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 10px;
  margin: 6px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(123, 220, 181, 0.20), transparent 25%),
    radial-gradient(circle at top right, rgba(255, 126, 182, 0.17), transparent 30%),
    radial-gradient(circle at bottom center, rgba(47, 128, 237, 0.12), transparent 25%),
    #fff;
  padding: 48px 0 34px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: rgba(255, 209, 102, 0.16);
  top: -100px;
  right: -90px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: rgba(47, 128, 237, 0.08);
  bottom: 30px;
  left: -90px;
}

.hero-grid,
.two-col,
.feature-grid,
.location-grid,
.footer-grid,
.intro-strip-grid {
  display: grid;
  gap: 30px;
}

.hero-grid,
.feature-grid,
.two-col,
.location-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-copy,
.hero-visual,
.section-copy,
.image-stack,
.feature-copy,
.feature-visual {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 128, 237, 0.1);
  color: var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero h1,
.section h2,
.feature-band h2,
.cta h2 {
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0 14px;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  max-width: 760px;
}

.hero p,
.section p,
.feature-copy p,
.cta p,
.location p {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-soft);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #56ccf2);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover,
.floating-whatsapp a:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow);
}

.btn-small {
  min-height: 46px;
  padding: 0 18px;
}

.btn-white {
  background: #fff;
  color: #1b2a4b;
  box-shadow: none;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-badges span,
.feature-copy li {
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.hero-visual {
  min-height: 520px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-card img,
.image-stack img,
.gallery-item img,
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  right: 0;
  top: 10px;
  width: 74%;
  height: 78%;
}

.hero-card-secondary {
  left: 0;
  bottom: 0;
  width: 42%;
  height: 42%;
  border: 8px solid #fff;
}

.intro-strip {
  padding: 0 0 12px;
}

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

.intro-strip article {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 33, 61, 0.06);
}

.intro-strip h3,
.service-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.intro-strip p,
.service-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.section {
  padding: 88px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.image-stack {
  min-height: 520px;
}

.image-stack img {
  position: absolute;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.image-stack .large {
  width: 72%;
  height: 82%;
  left: 0;
  top: 0;
}

.image-stack .small {
  width: 45%;
  height: 44%;
  right: 0;
  bottom: 0;
  border: 8px solid #fff;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(244,249,255,1));
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 33, 61, 0.06);
}

.icon-bubble {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 126, 182, 0.18), rgba(47, 128, 237, 0.16));
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}

.feature-band {
  padding: 88px 0;
  background: linear-gradient(135deg, #f6fbff, #fffafd);
}

.feature-visual {
  background: #fff;
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
  height: 100%;
}

.feature-visual img {
  border-radius: 22px;
  min-height: 480px;
}

.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.gallery {
  background: #fff;
}

.masonry-grid {
  columns: 3 290px;
  column-gap: 18px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.gallery-item img {
  min-height: 260px;
}

.gallery-item.tall img {
  min-height: 520px;
}

.cta-box {
  background: linear-gradient(135deg, #1d6be0, #5dc4f5 55%, #ff8bbb 120%);
  color: #fff;
  border-radius: 34px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  box-shadow: 0 25px 60px rgba(29, 107, 224, 0.25);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
}

.map-card {
  background: #fff;
  padding: 14px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 20px;
}

.footer {
  background: #101a30;
  color: rgba(255,255,255,0.85);
  padding: 34px 0;
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
}

.footer h3,
.footer p {
  margin: 0 0 8px;
}

.footer a {
  display: block;
  color: #fff;
  font-weight: 800;
  margin: 6px 0;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
}

.floating-whatsapp a {
  min-width: 148px;
  min-height: 58px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .two-col,
  .feature-grid,
  .location-grid,
  .cta-box,
  .footer-grid,
  .intro-strip-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .image-stack {
    min-height: 500px;
  }

  .footer-grid {
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 79px;
    left: 16px;
    right: 16px;
    background: rgba(255,255,255,0.98);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-visual,
  .image-stack {
    min-height: 420px;
  }

  .hero-card-main {
    width: 84%;
    height: 75%;
  }

  .hero-card-secondary {
    width: 48%;
    height: 40%;
  }

  .section {
    padding: 74px 0;
  }

  .masonry-grid {
    columns: 2 220px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    text-align: center;
  }

  .brand {
    max-width: 220px;
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero p,
  .section p,
  .feature-copy p,
  .cta p,
  .location p {
    font-size: 1rem;
  }

  .hero-visual,
  .image-stack,
  .feature-visual img,
  .map-card iframe {
    min-height: 340px;
  }

  .card-grid,
  .intro-strip-grid {
    grid-template-columns: 1fr;
  }

  .masonry-grid {
    columns: 1;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box {
    padding: 28px 22px;
  }

  .floating-whatsapp {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .floating-whatsapp a {
    width: 100%;
  }
}
