/* =============== RESET & BASE STYLES =============== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== COLOR & TYPOGRAPHY VARIABLES ===== */
:root {
  --brand-primary: #4A0080;
  --brand-light: #E6D5F5;
  --off-white: #FCFAFF;
  --text-dark: #1A1A1A;
  --text-muted: #555555;
  --card-bg: #FFFFFF;
  --border-light: #E6D5F5;
  --whatsapp-green: #25D366;
  --shadow-sm: 0 4px 12px rgba(74, 0, 128, 0.1);
  --shadow-md: 0 8px 20px rgba(74, 0, 128, 0.12);
  --shadow-lg: 0 16px 32px rgba(74, 0, 128, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.4s ease;
}

/* ===== GLOBAL FONT: Poppins + Inter ===== */
html, body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--off-white);
  scroll-behavior: smooth;
}

/* ===== BODY OFFSET FOR FIXED NAVBAR ===== */
body {
  padding-top: 80px; /* Prevents content from hiding under fixed navbar */
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.subtitle {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

.section-desc {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--brand-primary);
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 0 10px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-primary);
  padding: 14px 30px;
  border: 2px solid var(--brand-primary);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #3a0066;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--brand-light);
  transform: translateY(-3px);
  border-color: var(--brand-primary);
}

/* ===== HIGHLIGHT TEXT ===== */
.highlight {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.5em;
  background: linear-gradient(90deg, var(--brand-primary), #8A5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============== NAVBAR STYLES =============== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 14px 0;
  transition: background 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo .logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-primary);
}

/* ===== DROPDOWN MENU ===== */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  padding: 14px 0;
  list-style: none;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
  border-radius: 6px;
  padding: 10px 22px;
}

.whatsapp-link {
  margin-top: 10px;
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--whatsapp-green) !important;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-whatsapp i {
  font-size: 1.1rem;
  color: var(--whatsapp-green);
}

/* =============== HERO SECTION (Fixed) =============== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  min-height: 55vh;
  background: radial-gradient(circle at top right, #4A008010 0%, transparent 40%),
              radial-gradient(circle at bottom left, #E6D5F5 0%, transparent 40%);
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sticker-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.sticker {
  position: absolute;
  max-width: 60px;
  opacity: 0.85;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.sticker:hover {
  transform: scale(1.1);
}

/* Sticker Positions */
.sticker.cheers   { top: 50px; left: 40px; }
.sticker.dancing  { top: 100px; right: 60px; }
.sticker.disco    { bottom: 70px; left: 100px; }
.sticker.ticket   { bottom: 90px; right: 90px; }
.sticker.garland  { top: 50%; right: 30px; transform: translateY(-50%); }
.sticker.health   { top: 50%; left: 30px; transform: translateY(-50%); }
.sticker.payment  { top: 60px; right: 160px; }
/* =============== STICKER POSITIONS =============== */
.sticker.crocodile   { top: 30px; left: 80px; }
.sticker.gift-box    { top: 120px; right: 120px; }
.sticker.cats        { bottom: 100px; left: 60px; }
.sticker.fox         { top: 50%; left: 20px; transform: translateY(-50%); }

/* Make all stickers hoverable and scale up */
.sticker:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.btn-secondary {
  border: 2px solid var(--brand-primary);
}

/* =============== LOVED BY ====== */
.loved-by {
  padding: 24px 0;
  background: var(--brand-primary);
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =============== FEATURES GRID =============== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(74, 0, 128, 0.08);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
}

/* =============== SECTION STYLES =============== */
section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

section p.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
}

/* =============== GENERIC SECTION SHELL =============== */
.section {
  padding: 80px 20px;
}

.section-alt {
  background: var(--brand-light);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .kicker {
  display: inline-block;
  font-weight: 600;
  color: var(--brand-primary);
  background: var(--brand-light);
  border: 1px solid var(--brand-primary);
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.section-header h2 {
  font-size: clamp(1.9rem, 1.2rem + 2vw, 2.6rem);
  margin: 6px 0 10px;
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* =============== FEATURE GRID (You Choose How to Reward) =============== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 22px;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 8px 28px rgba(16, 24, 40, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.10);
  border-color: var(--brand-primary);
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  margin-bottom: 14px;
}

.feature-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.feature-card h3 {
  font-size: 1.05rem;
  margin: 6px 0 6px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* =============== OCCASION GRID =============== */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 18px;
  list-style: none;
  padding-left: 0;
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .occasion-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .occasion-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .occasion-grid {
    grid-template-columns: 1fr;
  }
}

.occasion {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  font-weight: 600;
  color: #2a2f38;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.occasion:hover {
  transform: translateY(-4px);
  border-color: var(--brand-primary);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.12);
}

.occasion-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  box-shadow: inset 0 0 0 1px rgba(74, 0, 128, 0.22);
}

.occasion-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

/* =============== SOLUTIONS GRID (Enhanced) =============== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.solutions-grid li {
  background: var(--card-bg);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.solutions-grid li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-color: var(--brand-primary);
}

.solutions-grid li a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.solutions-grid li a:hover {
  color: var(--brand-primary);
}

/* =============== TALK TO US BUTTON (WhatsApp Green) =============== */
.btn-whatsapp-inline {
  background: var(--whatsapp-green);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  margin: 30px auto 0;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  min-width: 280px;
  justify-content: center;
}

.btn-whatsapp-inline:hover {
  background: #1da854;
  transform: translateY(-2px);
}

.btn-whatsapp-inline i {
  font-size: 1.3rem;
}

/* =============== ANIMATIONS =============== */
@keyframes floatInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card, .occasion {
  animation: floatInUp 0.5s ease both;
}

.feature-card:nth-child(2) { animation-delay: 0.06s; }
.feature-card:nth-child(3) { animation-delay: 0.12s; }
.feature-card:nth-child(4) { animation-delay: 0.18s; }

.occasion:nth-child(2) { animation-delay: 0.04s; }
.occasion:nth-child(3) { animation-delay: 0.08s; }
.occasion:nth-child(4) { animation-delay: 0.12s; }
.occasion:nth-child(5) { animation-delay: 0.16s; }
.occasion:nth-child(6) { animation-delay: 0.20s; }
.occasion:nth-child(7) { animation-delay: 0.24s; }
.occasion:nth-child(8) { animation-delay: 0.28s; }

/* =============== TESTIMONIAL + CTA SECTION =============== */
.testimonial-cta {
  background: #f8f9fc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.testimonial-card {
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  border: 2px solid #e5e7eb;
}

.testimonial-card .section-title {
  font-size: 2rem;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
  color: #111;
}

.testimonial {
  background: #fafafa;
  border-left: 6px solid #25d366;
  margin: 20px auto;
  padding: 20px;
  border-radius: 12px;
  text-align: left;
}

.testimonial .quote {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.testimonial .author {
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
}

.cta {
  margin-top: 40px;
}

.cta h3 {
  font-size: 1.5rem;
  color: #111;
}

.cta p {
  margin: 10px 0 20px;
  font-size: 1rem;
  color: #444;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-btn i {
  font-size: 1.2rem;
}

.whatsapp-btn:hover {
  background: #20b954;
}

/* =============== FOOTER ======== */
footer {
  background: #111827;
  color: #f3f4f6;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-info p,
.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 12px 0;
}

.footer-links ul li a {
  color: #f3f4f6;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--whatsapp-green);
  text-decoration: underline;
}

.footer-contact p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #d1d5db;
  margin: 0;
}

.footer-contact strong {
  color: #fff;
}

.footer-whatsapp {
  margin-top: 24px;
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp-green);
  color: white !important;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.3s ease;
}

.btn-whatsapp-footer:hover {
  background: #1da856;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.social-links {
  margin-top: 16px;
  display: flex;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--whatsapp-green);
  transform: scale(1.12);
}

footer .container.text-center {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer .container.text-center p {
  font-size: 0.95rem;
  color: #9ca3af;
  letter-spacing: 0.3px;
}

/* =============== POSTCARDS GRID =============== */
.postcards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.postcard {
  background: var(--card-bg);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(74, 0, 128, 0.08);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.postcard:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(74, 0, 128, 0.15);
  border-color: var(--brand-primary);
}

.postcard-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.postcard-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.postcard h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 600;
}

.postcard p {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Center WhatsApp Button */
.text-center {
  text-align: center;
  margin-top: 30px;
}

.btn-whatsapp-inline {
  background: var(--whatsapp-green);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  min-width: 280px;
  justify-content: center;
}

.btn-whatsapp-inline:hover {
  background: #1da854;
  transform: translateY(-2px);
}

.btn-whatsapp-inline i {
  font-size: 1.3rem;
}

/* =============== FLOATING WHATSAPP BUTTON =============== */
.floating-whatsapp-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp-green);
  color: white;
  padding: 12px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}

.status-dot {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 12px;
  height: 12px;
  background: #4cd964;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  }
}

.floating-whatsapp-btn {
  animation: pulse 2s infinite;
}

/* =========================
   NAVBAR RESPONSIVE
========================= */
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #c00;
  margin-left: 15px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    width: 220px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 10px;
  }

  .nav-logo .logo-img {
    width: 40px;
    height: auto;
  }
}

/* =========================
   HERO RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero .subtitle {
    font-size: 1rem;
    margin: 15px 0;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sticker {
    max-width: 40px;
    opacity: 0.8;
  }

  .sticker.cheers   { top: 20px; left: 10px; }
  .sticker.dancing  { top: 60px; right: 20px; }
  .sticker.disco    { bottom: 40px; left: 20px; }
  .sticker.ticket   { bottom: 50px; right: 30px; }
  .sticker.garland,
  .sticker.health,
  .sticker.payment,
  .sticker.crocodile,
  .sticker.gift-box,
  .sticker.cats,
  .sticker.fox {
    display: none;
  }
}

/* HERO RESPONSIVE FIX */
@media (max-width: 768px) {
  .sticker {
    max-width: 40px;
    opacity: 0.8;
  }

  .sticker.cheers   { top: 20px; left: 10px; }
  .sticker.dancing  { top: 60px; right: 20px; }
  .sticker.disco    { bottom: 40px; left: 20px; }
  .sticker.ticket   { bottom: 50px; right: 30px; }
  .sticker.garland,
  .sticker.health,
  .sticker.payment,
  .sticker.crocodile,
  .sticker.gift-box,
  .sticker.cats,
  .sticker.fox {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
}

/* SOLUTIONS GRID RESPONSIVE FIX */
@media (max-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* NAVBAR MOBILE */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: white;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
  }

  .nav-list.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* =============== RESPONSIVE MEDIA QUERIES =============== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .hero {
    min-height: 50vh;
    padding: 80px 20px;
  }
  .btn-primary, .btn-secondary {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .nav-list {
    gap: 16px;
    font-size: 0.95rem;
  }
  .dropdown-menu {
    left: -10px;
    width: 260px;
  }
  .loved-by {
    font-size: 1.2rem;
    padding: 20px 0;
  }
}