:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #5e6472;
  --line: #ececf4;
  --shadow: 0 20px 55px rgba(17, 17, 17, 0.09);
  --pink: #f30b95;
  --yellow: #ffe600;
  --blue: #19a3e2;
  --dark: #121212;
  --soft: #f7f8fc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.topbar {
  background: linear-gradient(90deg, rgba(25,163,226,.12), rgba(243,11,149,.12), rgba(255,230,0,.2));
  border-bottom: 1px solid rgba(17,17,17,.06);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.topbar p {
  margin: 0;
  font-weight: 600;
}

.topbar a {
  font-weight: 700;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,17,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(17,17,17,.12);
}

.brand div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-tag {
  color: var(--pink);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.brand strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.nav nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav nav a {
  font-weight: 600;
  color: #2a2a2a;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.08);
  box-shadow: 0 12px 30px rgba(17,17,17,.05);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-copy h1,
.section-heading h2,
.banner-box h2,
.contact-grid h2 {
  font-family: 'Montserrat', sans-serif;
  margin: 18px 0 14px;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.hero-copy p,
.section-heading p,
.banner-box p,
.contact-grid p,
.service-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #ff4db2);
  color: #fff;
  box-shadow: 0 16px 30px rgba(243,11,149,.28);
}

.btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid rgba(17,17,17,.08);
}

.full { width: 100%; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.hero-stats article,
.service-card,
.gallery-card,
.contact-card,
.banner-box,
.hero-logo-card,
.strip-card {
  background: #fff;
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 18px;
  border-radius: 22px;
}

.hero-stats strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
  font-size: 16px;
}

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

.hero-visual {
  position: relative;
}

.hero-logo-card {
  padding: 18px;
  border-radius: 32px;
  transform: rotate(-2deg);
}

.hero-logo-card img {
  width: 100%;
  object-fit: contain;
}

.mini-gallery {
  position: absolute;
  right: -12px;
  bottom: -26px;
  display: grid;
  grid-template-columns: repeat(3, 112px);
  gap: 12px;
}

.mini {
  height: 150px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(17,17,17,.16);
  border: 4px solid #fff;
}

.mini.tall {
  height: 180px;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .14;
}

.shape-pink { width: 340px; height: 340px; background: var(--pink); top: -90px; right: -100px; }
.shape-blue { width: 260px; height: 260px; background: var(--blue); left: -110px; bottom: 0; }
.shape-yellow { width: 220px; height: 220px; background: var(--yellow); right: 18%; top: 30%; }

.showcase-strip {
  padding: 26px 0 20px;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.strip-card {
  padding: 18px 14px;
  border-radius: 18px;
  text-align: center;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.strip-card.cyan { background: linear-gradient(135deg, rgba(25,163,226,.18), rgba(25,163,226,.06)); color: #0d7fb4; }
.strip-card.pink { background: linear-gradient(135deg, rgba(243,11,149,.16), rgba(243,11,149,.06)); color: #ca0077; }
.strip-card.yellow { background: linear-gradient(135deg, rgba(255,230,0,.32), rgba(255,230,0,.11)); color: #806f00; }
.strip-card.dark { background: linear-gradient(135deg, rgba(17,17,17,.95), rgba(30,30,30,.95)); color: #fff; }
.strip-card.outline { color: #222; }

.section {
  padding: 84px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fbfbfe 0%, #ffffff 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section-heading h2,
.banner-box h2,
.contact-grid h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}

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

.service-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(25,163,226,.08), rgba(243,11,149,.1));
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #44c4ff);
  color: #fff;
  margin-bottom: 18px;
}

.service-card h3,
.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.accent-card .service-icon {
  background: linear-gradient(135deg, var(--pink), #ff6abd);
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  grid-auto-flow: dense;
}

.gallery-card {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  min-height: 280px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.04);
}

.gallery-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(17,17,17,.12);
}

.gallery-card.large { grid-column: span 2; grid-row: span 2; }
.gallery-card.wide { grid-column: span 2; }
.gallery-card.tall { grid-row: span 2; }

.banner-box {
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(250,250,255,.95));
}

.contact-section {
  padding-top: 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 28px;
  align-items: center;
}

.contact-card {
  padding: 32px;
  border-radius: 30px;
  text-align: center;
}

.contact-logo-wrap {
  width: 136px;
  height: 136px;
  margin: 0 auto 16px;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, rgba(25,163,226,.15), rgba(243,11,149,.15), rgba(255,230,0,.24));
}

.contact-logo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}

.contact-number {
  display: block;
  margin: 12px 0 18px;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
}

.footer {
  padding: 28px 0 110px;
  border-top: 1px solid rgba(17,17,17,.06);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.footer-brand p,
.footer-copy {
  margin: 4px 0 0;
  color: var(--muted);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  min-width: 148px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1db954, #0d9c42);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(13,156,66,.36);
  text-align: center;
}

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

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

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

  .mini-gallery {
    position: static;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
  }

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

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .topbar,
  .nav,
  .footer-content,
  .banner-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-stats,
  .services-grid,
  .strip-grid,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card.large,
  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card,
  .mini,
  .mini.tall {
    height: auto;
    min-height: unset;
  }

  .section,
  .contact-section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .contact-number {
    font-size: 1.25rem;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    min-width: auto;
  }
}
