 :root {
      --bg: #fff8fc;
      --bg-soft: rgba(255,255,255,0.68);
      --text: #1f1722;
      --muted: #6f6170;
      --line: rgba(236, 72, 153, 0.12);
      --line-strong: rgba(236, 72, 153, 0.24);
      --pink: #ec4899;
      --pink-2: #f472b6;
      --rose: #fb7185;
      --shadow: 0 20px 60px rgba(236, 72, 153, 0.14);
      --shadow-soft: 0 10px 30px rgba(17, 24, 39, 0.08);
      --radius-xl: 32px;
      --radius-lg: 24px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background:
        radial-gradient(circle at top left, rgba(244, 114, 182, 0.15), transparent 28%),
        radial-gradient(circle at top right, rgba(251, 113, 133, 0.14), transparent 24%),
        linear-gradient(180deg, #fff8fc 0%, #fffafb 38%, #ffffff 100%);
      color: var(--text);
      overflow-x: hidden;
    }

    .container-pro {
      width: min(1180px, calc(100% - 32px));
      margin-inline: auto;
    }

    .glass {
      background: var(--bg-soft);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.65);
      box-shadow: var(--shadow-soft);
    }

    .section-border {
      border: 1px solid var(--line);
    }

    .hero-orb,
    .hero-orb-2,
    .hero-orb-3 {
      position: absolute;
      border-radius: 9999px;
      filter: blur(40px);
      pointer-events: none;
      opacity: 0.7;
      animation: floatOrb 10s ease-in-out infinite;
    }

    .hero-orb {
      width: 240px;
      height: 240px;
      background: rgba(244, 114, 182, 0.25);
      top: 80px;
      left: -40px;
    }

    .hero-orb-2 {
      width: 300px;
      height: 300px;
      background: rgba(251, 113, 133, 0.16);
      top: 120px;
      right: -80px;
      animation-delay: -3s;
    }

    .hero-orb-3 {
      width: 220px;
      height: 220px;
      background: rgba(253, 164, 175, 0.18);
      bottom: -30px;
      left: 45%;
      animation-delay: -5s;
    }

    .gradient-text {
      background: linear-gradient(135deg, #db2777 0%, #f472b6 45%, #fb7185 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 15px 26px;
      font-weight: 700;
      letter-spacing: -.02em;
      background: linear-gradient(135deg, #ec4899 0%, #f472b6 55%, #fb7185 100%);
      color: white;
      box-shadow: 0 16px 35px rgba(236, 72, 153, 0.28);
      transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
    }

    .btn-primary:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow: 0 22px 44px rgba(236, 72, 153, 0.34);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: 999px;
      padding: 14px 24px;
      font-weight: 600;
      color: #a21caf;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(236, 72, 153, 0.16);
      transition: all .25s ease;
    }

    .btn-secondary:hover {
      background: white;
      transform: translateY(-2px);
    }

    .shine-card {
      position: relative;
      overflow: hidden;
    }

    .shine-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.65) 45%, transparent 70%);
      transform: translateX(-120%);
      transition: transform 1.1s ease;
    }

    .shine-card:hover::before {
      transform: translateX(120%);
    }

    .grid-lines {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(236,72,153,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(236,72,153,0.05) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(circle at center, black 50%, transparent 88%);
      pointer-events: none;
    }

    .service-card,
    .trust-card,
    .testimonial,
    .feature-panel,
    .contact-card {
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: var(--shadow-soft);
    }

    .service-card:hover,
    .trust-card:hover,
    .testimonial:hover,
    .feature-panel:hover,
    .contact-card:hover {
      border-color: var(--line-strong);
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .service-card,
    .trust-card,
    .testimonial,
    .feature-panel,
    .contact-card {
      transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    }

    .floating-whatsapp {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 60;
      border-radius: 999px;
      padding: 14px 18px;
      color: white;
      font-weight: 700;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      box-shadow: 0 16px 36px rgba(34, 197, 94, 0.32);
      transition: transform .25s ease, box-shadow .25s ease;
      animation: pulseCTA 2.2s infinite;
    }

    .floating-whatsapp:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 22px 42px rgba(34, 197, 94, 0.36);
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px) scale(.985);
      transition: opacity .8s ease, transform .8s ease;
      will-change: opacity, transform;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .hero-visual {
      position: relative;
      min-height: 620px;
      border-radius: 36px;
      border: 1px solid rgba(236, 72, 153, 0.14);
      overflow: hidden;
      background:
        radial-gradient(circle at 30% 20%, rgba(244,114,182,.24), transparent 22%),
        radial-gradient(circle at 80% 15%, rgba(251,113,133,.18), transparent 18%),
        linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,247,251,.84));
      box-shadow: var(--shadow);
    }

    .device-card {
      position: absolute;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.65);
      background: rgba(255,255,255,0.78);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      box-shadow: 0 20px 50px rgba(236,72,153,0.18);
    }

    .device-main {
      width: min(78%, 430px);
      right: 7%;
      top: 10%;
      transform: rotate(5deg);
    }

    .device-side {
      width: min(52%, 250px);
      left: 6%;
      bottom: 10%;
      transform: rotate(-8deg);
    }

    .tag-chip {
      border-radius: 999px;
      border: 1px solid rgba(236,72,153,.14);
      background: rgba(255,255,255,.82);
      padding: 10px 14px;
      font-size: 13px;
      font-weight: 600;
      color: #831843;
      box-shadow: 0 10px 25px rgba(17,24,39,.06);
    }

    .stat-number {
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1;
      letter-spacing: -.05em;
      font-weight: 800;
    }

    .separator-glow {
      height: 1px;
      width: 100%;
      background: linear-gradient(90deg, transparent, rgba(236,72,153,.35), transparent);
    }

    @keyframes floatOrb {
      0%, 100% { transform: translateY(0px) translateX(0px); }
      50% { transform: translateY(-18px) translateX(10px); }
    }

    @keyframes pulseCTA {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.04); }
    }

    @media (max-width: 1024px) {
      .hero-visual {
        min-height: 520px;
      }

      .device-main {
        width: 72%;
        top: 12%;
        right: 8%;
      }

      .device-side {
        width: 48%;
      }
    }

    @media (max-width: 768px) {
      .hero-visual {
        min-height: 480px;
      }

      .device-main {
        width: 80%;
        right: 10%;
        top: 14%;
        transform: rotate(3deg);
      }

      .device-side {
        width: 50%;
        left: 4%;
        bottom: 10%;
        transform: rotate(-5deg);
      }

      .floating-whatsapp {
        right: 14px;
        left: 14px;
        text-align: center;
      }
    }
    
    
    .map-miss-pinky{
            border:0; 
         min-height: 420px; 
         border-radius: 22px;
    }
    
    .map-miss-pinky {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 22px;
}
.floating-whatsapp {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
}

@media (min-width: 768px) {
  .floating-whatsapp {
    left: auto;
    right: 24px;
    bottom: 24px;
  }
}
.gallery-grid-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding-bottom: 130px;
}

.gallery-item-full {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(251, 207, 232, 0.9);
  background: #fff;
  box-shadow: 0 14px 35px rgba(236, 72, 153, 0.10);
}

.gallery-item-full img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-full:hover img {
  transform: scale(1.04);
}

@media (min-width: 768px) {
  .gallery-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .gallery-grid-full {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}