:root {
  --bg: #f9f4ff;
  --accent: #c59bff;
  --accent-dark: #7c4edc;
  --text: #2b2333;
  --muted: #7a6f85;
  --card-bg: #ffffff;
  --pink-light: #ffe3f2;
  --pink-soft: #fff0f6;
  --flame-orange: #ff6b35;
  --flame-yellow: #ffc107;
  --heart-pink: #ff4d6d;
  --candy-pink: #ff85a2;
  --candy-blue: #85d4ff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffe9f0 0, var(--bg) 40%, #f3ebff 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

main {
  overflow-x: hidden;
  width: 100%;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   FLOATING DECORATIONS (Global)
   ============================================ */
.floating-gift,
.floating-heart-deco {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
  animation: floatDecoration 8s ease-in-out infinite;
}

@keyframes floatDecoration {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-5px) rotate(-3deg); }
  75% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatDeco {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  25% { transform: translateY(-20px) rotate(10deg) scale(1.1); }
  50% { transform: translateY(-10px) rotate(-5deg) scale(0.9); }
  75% { transform: translateY(-25px) rotate(5deg) scale(1.05); }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  padding: 1rem 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 250, 0.98) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(124, 78, 220, 0.12);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 2px solid rgba(197, 155, 255, 0.15);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.6rem 0;
  box-shadow: 0 6px 35px rgba(124, 78, 220, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.02);
}

.logo-img-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 15px rgba(197, 155, 255, 0.4);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.logo-container:hover .logo-img-wrapper {
  transform: scale(1.05);
}

.logo {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.logo span {
  color: var(--accent-dark);
}

.tagline {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tagline .icon {
  font-size: 0.85rem;
}

/* Menu Toggle Button */
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, #fff 0%, #fff0f6 50%, #f5f0ff 100%);
  border: 2px solid rgba(197, 155, 255, 0.4);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  box-shadow: 0 4px 15px rgba(124, 78, 220, 0.15);
}

.menu-toggle .menu-icon-open {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-toggle .menu-icon-close {
  display: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.menu-toggle.active .menu-icon-open {
  display: none;
}

.menu-toggle.active .menu-icon-close {
  display: flex;
}

.menu-toggle:hover,
.menu-toggle:active,
.menu-toggle.active {
  background: linear-gradient(135deg, #fff 0%, #ffe3f2 50%, #e5d5ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(197, 155, 255, 0.35);
  border-color: var(--accent);
}

.menu-toggle::before {
  display: none;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.menu-gift-icon {
  font-size: 1.3rem;
  animation: bounceGiftMenu 2s ease-in-out infinite;
}

@keyframes bounceGiftMenu {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  25% { transform: translateY(-3px) scale(1.1) rotate(-5deg); }
  50% { transform: translateY(0) scale(1) rotate(0deg); }
  75% { transform: translateY(-2px) scale(1.05) rotate(5deg); }
}

.menu-text {
  font-family: 'Quicksand', 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--heart-pink) 50%, var(--accent-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s linear infinite;
}

@keyframes gradientText {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.nav-links {
  display: none;
  gap: 0.5rem;
  font-size: 0.9rem;
  align-items: center;
  position: absolute;
  top: calc(100% + 10px);
  right: 5%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 252, 0.98) 100%);
  backdrop-filter: blur(15px);
  flex-direction: column;
  padding: 1.2rem 1rem;
  border-radius: 1.2rem;
  box-shadow: 0 15px 50px rgba(124, 78, 220, 0.2), 0 0 0 1px rgba(197, 155, 255, 0.2);
  border: 2px solid rgba(197, 155, 255, 0.25);
  min-width: 200px;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav Close Button - Removed, using menu toggle for close */
.nav-close-btn {
  display: none !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: var(--muted);
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  width: 100%;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  font-weight: 500;
  background: transparent;
}

.nav-links a .nav-icon {
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a:active {
  color: var(--accent-dark);
  background: linear-gradient(135deg, rgba(197, 155, 255, 0.15) 0%, rgba(255, 227, 242, 0.2) 100%);
  transform: translateX(3px);
}

.nav-links a.active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  box-shadow: 0 4px 15px rgba(124, 78, 220, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 85px;
  margin-top: -85px;
}

/* Candy Background */
.candy-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.candy {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.08;
  animation: floatCandy 15s ease-in-out infinite;
}

.candy-1 { top: 10%; left: 5%; animation-delay: 0s; }
.candy-2 { top: 20%; right: 8%; animation-delay: 2s; font-size: 1.8rem; }
.candy-3 { top: 50%; left: 3%; animation-delay: 4s; }
.candy-4 { top: 70%; right: 5%; animation-delay: 6s; font-size: 2rem; }
.candy-5 { bottom: 15%; left: 10%; animation-delay: 8s; }
.candy-6 { top: 35%; right: 3%; animation-delay: 1s; font-size: 1.3rem; }
.candy-7 { bottom: 30%; right: 10%; animation-delay: 3s; }
.candy-8 { top: 60%; left: 8%; animation-delay: 5s; font-size: 1.6rem; }

@keyframes floatCandy {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  25% { transform: translateY(-20px) rotate(10deg); opacity: 0.12; }
  50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.1; }
  75% { transform: translateY(-25px) rotate(5deg); opacity: 0.08; }
}

.hero {
  padding: 3rem 0 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.9rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0, var(--accent-dark) 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.hero h1 span {
  color: var(--accent-dark);
  position: relative;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(197, 155, 255, 0.3);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.4rem;
  max-width: 32rem;
  font-size: 0.98rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-primary,
.btn-ghost {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(124, 78, 220, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(124, 78, 220, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-dark);
  border: 2px solid rgba(197, 155, 255, 0.5);
}

.btn-ghost:hover {
  background: #fff;
  transform: translateY(-2px);
  border-color: var(--accent-dark);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0, #128c7e 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0, #075e54 100%);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.45);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-note span {
  font-weight: 600;
  color: var(--accent-dark);
}

/* HERO IMAGE SIDE */
.hero-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.8rem;
  padding: 1.4rem;
  box-shadow: 0 28px 60px rgba(55, 35, 90, 0.14);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffe6f5 0, transparent 60%);
  top: -50px;
  right: -40px;
  opacity: 0.7;
}

.hero-card::after {
  content: "🎁";
  position: absolute;
  font-size: 4rem;
  opacity: 0.08;
  bottom: -10px;
  right: -10px;
}

.hero-card-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.mini-tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5f0ff 0, #fff0f6 100%);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.stat {
  background: linear-gradient(135deg, #fdfbff 0, #fff0f6 100%);
  border-radius: 1rem;
  padding: 0.6rem 0.8rem;
  flex: 1;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

/* ============================================
   BUSINESS INFO SECTION
   ============================================ */
.business-info {
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

/* Animated floating decorations for sections */
.business-info::before {
  content: '🎁';
  position: absolute;
  top: 20%;
  left: 2%;
  font-size: 2rem;
  opacity: 0.1;
  animation: floatGiftBox 6s ease-in-out infinite;
}

.business-info::after {
  content: '💝';
  position: absolute;
  bottom: 20%;
  right: 3%;
  font-size: 1.8rem;
  opacity: 0.1;
  animation: floatHeart 5s ease-in-out infinite 1s;
}

@keyframes floatGiftBox {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes floatHeart {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

.business-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 252, 0.98) 50%, rgba(248, 245, 255, 0.98) 100%);
  border-radius: 1.8rem;
  padding: 2.2rem 2.5rem;
  box-shadow: 0 25px 60px rgba(124, 78, 220, 0.12), 0 0 0 1px rgba(197, 155, 255, 0.15);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(197, 155, 255, 0.2);
}

.business-card::before {
  content: "🎁";
  position: absolute;
  font-size: 6rem;
  opacity: 0.06;
  top: -20px;
  left: -20px;
}

.business-card::after {
  content: "🍫";
  position: absolute;
  font-size: 4rem;
  opacity: 0.06;
  bottom: -10px;
  right: 20px;
}

.business-header {
  text-align: center;
  margin-bottom: 2rem;
}

.business-header h2 {
  font-size: 1.6rem;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.business-header p {
  color: var(--muted);
  font-size: 1rem;
}

.business-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}

.business-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(197, 155, 255, 0.1);
}

.business-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(124, 78, 220, 0.1);
  border-color: rgba(197, 155, 255, 0.25);
}

.business-icon {
  font-size: 1.6rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-light) 0%, #f5f0ff 100%);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(197, 155, 255, 0.2);
}

.business-text h4 {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.business-text p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.business-whatsapp {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px dashed rgba(197, 155, 255, 0.4);
}

.business-whatsapp a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: linear-gradient(135deg, #25d366 0, #128c7e 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.business-whatsapp a:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}

/* ============================================
   SECTION GENERIC
   ============================================ */
section {
  padding: 3rem 0;
  overflow: hidden;
  width: 100%;
  position: relative;
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
  text-align: center;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

section h2 .icon {
  margin-right: 0.5rem;
}

section p.section-intro {
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  position: relative;
}

#about::before {
  content: '💝';
  position: absolute;
  top: 30%;
  right: 5%;
  font-size: 2rem;
  opacity: 0.08;
  animation: floatHeart 5s ease-in-out infinite;
}

.about {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 248, 252, 0.9) 100%);
  border-radius: 1.8rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(197, 155, 255, 0.1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(197, 155, 255, 0.12);
}

.about::before {
  content: "✨";
  position: absolute;
  font-size: 3rem;
  opacity: 0.1;
  top: 10px;
  right: 20px;
  animation: sparkleFloat 4s ease-in-out infinite;
}

@keyframes sparkleFloat {
  0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.1; }
  50% { transform: rotate(15deg) scale(1.1); opacity: 0.15; }
}

.about p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================================
   SERVICES / CARDS
   ============================================ */
#services {
  position: relative;
}

#services::before {
  content: '🎁';
  position: absolute;
  top: 20%;
  left: 3%;
  font-size: 1.8rem;
  opacity: 0.08;
  animation: floatGiftBox 6s ease-in-out infinite;
}

#services::after {
  content: '🎀';
  position: absolute;
  bottom: 15%;
  right: 4%;
  font-size: 1.5rem;
  opacity: 0.08;
  animation: floatHeart 5s ease-in-out infinite 2s;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  background: linear-gradient(145deg, #ffffff 0%, #fff8fc 50%, #fdfaff 100%);
  border-radius: 1.5rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 15px 40px rgba(55, 35, 90, 0.08), 0 0 0 1px rgba(197, 155, 255, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(197, 155, 255, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(55, 35, 90, 0.15);
  border-color: rgba(197, 155, 255, 0.25);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent) 0, var(--accent-dark) 100%);
  border-radius: 1.3rem 1.3rem 0 0;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   WHY US
   ============================================ */
#why {
  position: relative;
}

#why::before {
  content: '🎈';
  position: absolute;
  top: 15%;
  left: 3%;
  font-size: 1.8rem;
  opacity: 0.08;
  animation: floatGiftBox 7s ease-in-out infinite;
}

#why::after {
  content: '💝';
  position: absolute;
  bottom: 20%;
  right: 4%;
  font-size: 1.6rem;
  opacity: 0.08;
  animation: floatHeart 5s ease-in-out infinite 2s;
}

.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.why-item {
  background: linear-gradient(135deg, #f8f5ff 0%, #fff0f6 100%);
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent-dark);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(197, 155, 255, 0.15);
  font-weight: 500;
}

.why-item:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 78, 220, 0.15);
  border-color: rgba(197, 155, 255, 0.3);
}

/* CTA STRIP */
.cta-strip {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffe3f2 0%, #e5d5ff 50%, #fff0f6 100%);
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 20px 50px rgba(124, 78, 220, 0.18);
  border: 2px solid rgba(197, 155, 255, 0.15);
}

.cta-strip p {
  margin-bottom: 0.8rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 2.5rem 0;
  position: relative;
}

.gallery-section::before {
  content: '🎁';
  position: absolute;
  top: 10%;
  left: 2%;
  font-size: 2rem;
  opacity: 0.08;
  animation: floatGiftBox 7s ease-in-out infinite;
}

.gallery-section::after {
  content: '💖';
  position: absolute;
  bottom: 10%;
  right: 3%;
  font-size: 1.8rem;
  opacity: 0.08;
  animation: floatHeart 6s ease-in-out infinite 1s;
}

.gallery-section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 
    0 8px 25px rgba(55, 35, 90, 0.1),
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 15px rgba(147, 197, 253, 0.3),
    0 0 15px rgba(249, 168, 212, 0.3);
  transition: transform 0.3s ease, box-shadow 0.4s ease;
  background: linear-gradient(135deg, #93c5fd 0%, #f9a8d4 100%);
  padding: 3px;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 3px;
  background: linear-gradient(135deg, #93c5fd, #c4b5fd, #f9a8d4, #93c5fd);
  background-size: 300% 300%;
  animation: borderGlow 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 
    0 12px 35px rgba(55, 35, 90, 0.15),
    0 0 0 3px rgba(255, 255, 255, 1),
    0 0 25px rgba(147, 197, 253, 0.5),
    0 0 25px rgba(249, 168, 212, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 0.85rem;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Gallery Like Button - Instagram Style */
.gallery-like-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  -webkit-tap-highlight-color: transparent;
}

.gallery-like-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.gallery-like-btn .heart-icon {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.gallery-like-btn.liked .heart-icon {
  animation: heartBeatLike 0.6s ease-in-out;
}

.gallery-like-btn.liked {
  background: linear-gradient(135deg, #ff4d6d 0%, #ff6b8a 100%);
}

@keyframes heartBeatLike {
  0% { transform: scale(1); }
  15% { transform: scale(1.3); }
  30% { transform: scale(0.9); }
  45% { transform: scale(1.2); }
  60% { transform: scale(0.95); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(124, 78, 220, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: rotate(90deg);
}

/* ============================================
   HAPPY CUSTOMERS SECTION
   ============================================ */
/* ============================================
   HAPPY CUSTOMERS SECTION - CUTE HEART THEME
   ============================================ */
.happy-customers {
  padding: 1.8rem 0;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.1) 0%, rgba(255, 240, 246, 0.15) 50%, rgba(245, 240, 255, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.happy-customers::before {
  content: "💖";
  position: absolute;
  font-size: 5rem;
  opacity: 0.06;
  top: -15px;
  left: -15px;
  animation: gentlePulse 3s ease-in-out infinite;
}

.happy-customers::after {
  content: "💕";
  position: absolute;
  font-size: 4rem;
  opacity: 0.06;
  bottom: -10px;
  right: -10px;
  animation: gentlePulse 3s ease-in-out infinite 1.5s;
}

@keyframes gentlePulse {
  0%, 100% { transform: scale(1); opacity: 0.06; }
  50% { transform: scale(1.1); opacity: 0.1; }
}

.happy-customers h2 {
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.4rem;
}

.love-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: linear-gradient(135deg, #ff69b4 0%, var(--accent) 50%, var(--accent-dark) 100%);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  animation: loveGlow 2s ease-in-out infinite;
}

@keyframes loveGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 105, 180, 0.4); }
  50% { box-shadow: 0 0 15px rgba(255, 105, 180, 0.6), 0 0 25px rgba(197, 155, 255, 0.3); }
}

.video-container {
  max-width: 400px;
  margin: 1rem auto 0;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(255, 105, 180, 0.2);
  position: relative;
  background: #000;
}

.video-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.2rem;
  padding: 3px;
  background: linear-gradient(135deg, #ff69b4, var(--accent), #ff69b4, var(--accent-dark));
  background-size: 300% 300%;
  animation: gradientBorder 4s ease infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.video-container video {
  width: 100%;
  display: block;
}

.video-caption {
  text-align: center;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Floating animated hearts */
.floating-heart {
  position: absolute;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  animation: floatUp 6s ease-in-out infinite;
}

.heart-1 {
  left: 10%;
  bottom: 20%;
  animation-delay: 0s;
}

.heart-2 {
  right: 15%;
  bottom: 30%;
  animation-delay: 1.5s;
}

.heart-3 {
  left: 20%;
  bottom: 40%;
  animation-delay: 3s;
  font-size: 1rem;
}

.heart-4 {
  right: 25%;
  bottom: 25%;
  animation-delay: 4.5s;
  font-size: 0.9rem;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5) rotate(0deg);
  }
  10% {
    opacity: 0.8;
    transform: translateY(-10px) scale(1) rotate(5deg);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-40px) scale(0.9) rotate(-5deg);
  }
  90% {
    opacity: 0.3;
    transform: translateY(-70px) scale(0.7) rotate(10deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-80px) scale(0.5) rotate(0deg);
  }
}

/* ============================================
   CONTACT
   ============================================ */
#contact {
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(245, 240, 255, 0.3) 100%);
}

#contact::before {
  content: '🎁';
  position: absolute;
  top: 15%;
  left: 2%;
  font-size: 2rem;
  opacity: 0.08;
  animation: floatGiftBox 6s ease-in-out infinite;
}

#contact::after {
  content: '💌';
  position: absolute;
  bottom: 15%;
  right: 3%;
  font-size: 1.8rem;
  opacity: 0.08;
  animation: floatHeart 5s ease-in-out infinite 1s;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: linear-gradient(145deg, #ffffff 0%, #fff8fc 50%, #f8f5ff 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(55, 35, 90, 0.1), 0 0 0 1px rgba(197, 155, 255, 0.1);
  font-size: 0.95rem;
  overflow: hidden;
  word-wrap: break-word;
  position: relative;
  border: 2px solid rgba(197, 155, 255, 0.15);
}

.contact-card::before {
  content: "✨";
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  opacity: 0.15;
  animation: sparkleFloat 4s ease-in-out infinite;
}

.contact-card p {
  margin-bottom: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.contact-card p .contact-icon {
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(197, 155, 255, 0.1) 0%, rgba(255, 227, 242, 0.2) 100%);
  border-radius: 12px;
}

.contact-card p a {
  color: var(--accent-dark);
  transition: color 0.3s ease;
}

.contact-card p a:hover {
  color: var(--heart-pink);
}

.contact-card strong {
  color: var(--text);
}

.contact-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(197, 155, 255, 0.08) 0%, rgba(255, 227, 242, 0.1) 100%);
  border: 1px dashed rgba(197, 155, 255, 0.3);
  line-height: 1.6;
}

.contact-whatsapp-main {
  margin-top: 1.2rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(18, 140, 126, 0.08) 100%);
  border-radius: 1rem;
  border: 2px solid rgba(37, 211, 102, 0.25);
  transition: all 0.3s ease;
}

.contact-whatsapp-main:hover {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.contact-whatsapp-main a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #128c7e;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-whatsapp-main a:hover {
  color: #075e54;
}

/* Contact Social Icons */
.contact-social-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-social-icon.whatsapp-icon {
  color: #25d366;
}

.contact-social-icon.instagram-icon {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: #c13584; /* Improved contrast fallback color */
}

.contact-instagram {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-instagram a {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.1) 0%, rgba(131, 58, 180, 0.1) 100%);
  transition: all 0.3s ease;
}

.contact-instagram a:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(131, 58, 180, 0.2) 100%);
  transform: scale(1.1);
}

.contact-form {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 252, 0.95) 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(55, 35, 90, 0.08), 0 0 0 1px rgba(197, 155, 255, 0.1);
  font-size: 0.9rem;
  border: 2px solid rgba(197, 155, 255, 0.15);
}

.field {
  margin-bottom: 1.2rem;
}

.field label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 2px solid rgba(197, 155, 255, 0.25);
  padding: 0.85rem 1rem;
  font: inherit;
  outline: none;
  background: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(124, 78, 220, 0.15);
  background: #fff;
}

/* Form Validation Styles */
.field input.error,
.field textarea.error {
  border-color: #ff4d6d;
  box-shadow: 0 0 0 3px rgba(255, 77, 109, 0.15);
}

.field input.success,
.field textarea.success {
  border-color: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.field-error {
  display: block;
  font-size: 0.75rem;
  color: #ff4d6d;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

/* ============================================
   WHATSAPP FLOATING BUTTON - CUTE STYLE
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #25d366 0%, #20c65a 50%, #128c7e 100%);
  border-radius: 50%;
  box-shadow: 
    0 8px 30px rgba(37, 211, 102, 0.5),
    0 0 0 4px rgba(255, 255, 255, 0.9),
    0 0 0 8px rgba(37, 211, 102, 0.2);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  animation: floatBubble 3s ease-in-out infinite;
}

@keyframes floatBubble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(2deg); }
  75% { transform: translateY(-4px) rotate(-2deg); }
}

.whatsapp-float a:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 15px 40px rgba(37, 211, 102, 0.6),
    0 0 0 5px rgba(255, 255, 255, 1),
    0 0 0 10px rgba(37, 211, 102, 0.3),
    0 0 30px rgba(37, 211, 102, 0.4);
  animation: none;
}

.whatsapp-float a::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #fff, #25d366, #ff69b4, #25d366);
  background-size: 400% 400%;
  z-index: -1;
  animation: sparkleRing 3s linear infinite;
  opacity: 0.7;
}

@keyframes sparkleRing {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.whatsapp-float .wa-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  75% { transform: rotate(-10deg); }
}

.whatsapp-float a:hover .wa-icon {
  animation: none;
  transform: scale(1.1);
}

.whatsapp-float .gift-icon {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ff69b4 0%, var(--accent) 50%, var(--accent-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 
    0 4px 15px rgba(255, 105, 180, 0.5),
    0 0 0 2px #fff;
  animation: bounceGift 1.5s ease-in-out infinite, sparkle 2s ease-in-out infinite;
}

@keyframes bounceGift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.1); }
}

@keyframes sparkle {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 105, 180, 0.5), 0 0 0 2px #fff; }
  50% { box-shadow: 0 4px 20px rgba(255, 105, 180, 0.8), 0 0 0 3px #fff, 0 0 15px rgba(255, 105, 180, 0.4); }
}

.whatsapp-tooltip {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ff69b4 0%, var(--accent-dark) 100%);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
  transform: translateY(-50%) translateX(10px) scale(0.9);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

.whatsapp-tooltip::before {
  content: "✨";
  margin-right: 0.3rem;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--accent-dark);
}

/* Cute floating hearts around button */
.whatsapp-float::before,
.whatsapp-float::after {
  content: "💝";
  position: absolute;
  font-size: 1rem;
  opacity: 0;
  animation: floatingHearts 4s ease-in-out infinite;
  pointer-events: none;
}

.whatsapp-float::before {
  top: -10px;
  left: -10px;
  animation-delay: 0s;
}

.whatsapp-float::after {
  content: "💖";
  bottom: -5px;
  left: -15px;
  animation-delay: 2s;
}

@keyframes floatingHearts {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
  20% { opacity: 1; transform: translateY(-10px) scale(1); }
  80% { opacity: 1; transform: translateY(-25px) scale(0.8); }
  100% { opacity: 0; transform: translateY(-35px) scale(0.5); }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 2rem 0 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 245, 252, 0.6) 50%, rgba(248, 245, 255, 0.7) 100%);
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(197, 155, 255, 0.1);
}

footer::before {
  content: '🎁';
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.1;
  animation: floatGiftBox 6s ease-in-out infinite;
}

footer::after {
  content: '💝';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  opacity: 0.1;
  animation: floatHeart 5s ease-in-out infinite;
}

footer p {
  margin-bottom: 0.3rem;
}

footer a {
  color: var(--accent-dark);
  transition: all 0.3s ease;
  font-weight: 500;
}

footer a:hover {
  color: var(--heart-pink);
  text-decoration: underline;
}

.footer-credits {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.footer-powered {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 901px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 5%;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-card {
    order: -1;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .business-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links {
    right: 5%;
    left: auto;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  main {
    overflow-x: hidden;
    width: 100%;
  }
  
  .container {
    width: 92%;
    max-width: 100%;
  }
  
  header {
    padding: 0.8rem 0;
  }
  
  .hero-section {
    padding-top: 75px;
    margin-top: -75px;
  }
  
  .nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
  }
  
  .logo-container {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  
  .menu-toggle {
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 1002;
    padding: 0.6rem 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 75px;
    bottom: auto;
    right: 4%;
    left: auto;
    z-index: 1003;
    max-width: 200px;
    width: auto;
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 252, 0.98) 100%);
    backdrop-filter: blur(15px);
    padding: 1rem;
    border-radius: 1.2rem;
    box-shadow: 0 15px 50px rgba(124, 78, 220, 0.25);
    border: 2px solid rgba(197, 155, 255, 0.25);
  }
  
  .nav-links.active {
    display: flex !important;
  }
  
  .logo-img-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
  }
  
  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .tagline {
    display: none;
  }
  
  .hero {
    padding-top: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
  
  .hero h1 {
    font-size: 1.6rem;
    word-wrap: break-word;
  }
  
  .hero p {
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.7rem;
  }
  
  .cards {
    grid-template-columns: 1fr;
  }
  
  .business-content {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .hero-card {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 1rem;
  }
  
  .mini-tags {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .mini-tag {
    font-size: 0.7rem;
    white-space: nowrap;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .stat {
    width: 100%;
  }
  
  .business-card {
    padding: 1.2rem;
  }
  
  .whatsapp-float a {
    width: 58px;
    height: 58px;
  }
  .whatsapp-float .wa-icon {
    width: 28px;
    height: 28px;
  }
  .whatsapp-float .gift-icon {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    top: -6px;
    right: -6px;
  }
  .whatsapp-tooltip {
    display: none;
  }
  
  /* Hide candy decorations on mobile for cleaner look */
  .candy {
    display: none;
  }
  
  .floating-deco {
    display: none !important;
  }
  
  footer::before,
  footer::after {
    display: none;
  }
  
  .business-info::before,
  .business-info::after {
    display: none;
  }
  
  #about::before,
  #services::before,
  #services::after,
  #why::before,
  #why::after,
  #contact::before,
  #contact::after,
  .gallery-section::before,
  .gallery-section::after {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn-primary {
    width: 100%;
    justify-content: center;
  }
  
  .menu-gift-icon {
    font-size: 1.1rem;
  }
  
  .menu-text {
    font-size: 0.75rem;
  }
  
  .why-list {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .why-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    white-space: normal;
    text-align: center;
  }
  
  .cta-strip {
    padding: 1rem;
  }
  
  .about {
    padding: 1.2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-card {
    padding: 1.2rem;
  }
  
  .contact-form {
    padding: 1.2rem;
  }
  
  .contact-whatsapp-main a {
    font-size: 0.95rem;
    flex-wrap: wrap;
  }
  
  footer {
    padding: 1rem 0 1.5rem;
  }
}

@media (max-width: 400px) {
  .container {
    width: 94%;
  }
  
  .nav {
    gap: 0.3rem;
  }
  
  .hero h1 {
    font-size: 1.4rem;
  }
  
  .hero p {
    font-size: 0.85rem;
  }
  
  .btn-primary {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .gallery-grid {
    gap: 0.5rem;
  }
  
  .contact-card,
  .contact-form {
    padding: 0.9rem;
  }
  
  section h2 {
    font-size: 1.3rem;
  }
  
  .hero-card {
    padding: 0.9rem;
  }
  
  .logo {
    font-size: 0.95rem;
  }
  
  .logo-img-wrapper {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
  
  .logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
  
  .hero-card-title {
    font-size: 0.85rem;
  }
  
  .hero-card-sub {
    font-size: 0.75rem;
  }
  
  .menu-toggle {
    padding: 0.4rem 0.8rem;
  }
  
  .menu-gift-icon {
    font-size: 1rem;
  }
  
  .menu-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  
  .mini-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
  
  .stat strong {
    font-size: 1rem;
  }
  
  .stat {
    font-size: 0.75rem;
    padding: 0.6rem;
  }
  
  .hero-badge {
    font-size: 0.65rem;
  }
  
  .card {
    padding: 1rem 0.8rem;
  }
  
  .card-icon {
    font-size: 1.6rem;
  }
  
  .card h3 {
    font-size: 0.9rem;
  }
  
  .card p {
    font-size: 0.8rem;
  }
  
  .why-item {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
  }
  
  .business-item {
    padding: 0.6rem;
  }
  
  .business-icon {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  
  .business-text h4 {
    font-size: 0.8rem;
  }
  
  .business-text p {
    font-size: 0.75rem;
  }
}
