/* ===== CSS Variables ===== */
:root {
  --primary: #c62828;
  --primary-dark: #a01c1c;
  --primary-light: #e65100;
  --primary-bg: #fff5f5;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --white: #ffffff;
  --cream: #fdf8f4;
  --gray-50: #fafaf9;
  --gray-100: #f5f5f4;
  --gray-200: #e7e5e4;
  --gray-300: #d6d3d1;
  --gray-400: #a8a29e;
  --gray-500: #78716c;
  --gray-600: #57534e;
  --gray-700: #44403c;
  --gray-800: #292524;
  --gray-900: #1c1917;
  --font-body: 'Outfit', sans-serif;
  --font-heading: 'Fraunces', serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.14);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Reset ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--gray-600);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(198, 40, 40, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}

.btn-full { width: 100%; }

/* ===== Section Styling ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gray-900);
  margin-bottom: 18px;
  line-height: 1.15;
  font-weight: 900;
  font-optical-sizing: auto;
}

.section-title span {
  color: var(--primary);
  font-style: italic;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== Navbar - Modern Glassmorphic Design ===== */
.navbar {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: navbar-float 3s ease-in-out infinite;
}

@keyframes navbar-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.navbar.topbar-hidden { top: 0; }

/* Enhanced glassmorphic effect */
.navbar.scrolled {
  background: rgba(253, 248, 244, 0.7);
  backdrop-filter: blur(32px) saturate(200%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.2),
    0 8px 32px rgba(0,0,0,0.08),
    inset 0 1px 1px rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  animation: none;
}

/* Navbar glow effect */
.nav-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  filter: blur(20px);
}

.navbar.scrolled .nav-glow {
  opacity: 1;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.navbar.scrolled .nav-container {
  padding: 14px 32px;
}

/* Logo with magnetic hover */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 10;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  padding: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar.scrolled .logo-icon {
  background: rgba(198, 40, 40, 0.08);
  border-color: rgba(198, 40, 40, 0.1);
  box-shadow: 0 4px 16px rgba(198, 40, 40, 0.12);
}

.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.25);
}

/* Logo shine effect */
.logo-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.logo:hover .logo-shine {
  transform: translateX(100%);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.logo-text {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.navbar.scrolled .logo-text {
  color: var(--gray-900);
  text-shadow: none;
}

.logo-highlight {
  color: var(--accent-light);
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.navbar.scrolled .logo-highlight { color: var(--primary); }

/* Nav links with magnetic effect */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.4px;
  padding: 8px 4px;
  text-transform: capitalize;
}

.nav-link span {
  position: relative;
  z-index: 1;
}

/* Gradient animated underline */
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.nav-link::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  padding: 8px 4px;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
  transform: scaleX(1);
  animation: gradient-shift 2s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.nav-link:hover::after {
  opacity: 0.2;
  transform: translateY(0);
}

.navbar.scrolled .nav-link {
  color: var(--gray-600);
  text-shadow: none;
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(198, 40, 40, 0.3);
}

.navbar.scrolled .nav-link::before {
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.4);
}

.navbar.scrolled .nav-link::after {
  color: var(--primary);
}

/* Nav actions wrapper */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Social icons with hover effect */
.nav-social {
  display: flex;
  gap: 12px;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.navbar.scrolled .nav-social {
  border-color: rgba(0,0,0,0.08);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-icon:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
}

.social-icon:hover::before {
  opacity: 1;
}

.navbar.scrolled .social-icon {
  color: var(--gray-500);
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}

.navbar.scrolled .social-icon:hover {
  color: var(--primary);
  background: rgba(198, 40, 40, 0.08);
  border-color: rgba(198, 40, 40, 0.15);
  box-shadow: 0 8px 16px rgba(198, 40, 40, 0.2);
}

.navbar.scrolled .social-icon::before {
  background: radial-gradient(circle, rgba(198, 40, 40, 0.15), transparent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 8px;
  margin: -8px;
  -webkit-tap-highlight-color: transparent;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar.scrolled .hamburger span { background: var(--gray-700); }

/* Mobile menu backdrop overlay */
.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.active {
  display: block;
  opacity: 1;
}

/* ===== Hero - Modern Kinetic Design ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(245,158,11,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(251,191,36,0.1) 0%, transparent 40%),
    linear-gradient(145deg, #6b1010 0%, #991b1b 25%, #c62828 50%, #e65100 80%, #bf360c 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Noise texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

/* Animated gradient mesh background */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orb-float 20s ease-in-out infinite;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.6), transparent 70%);
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent 70%);
  animation-delay: 5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 30%;
  background: radial-gradient(circle, rgba(229, 81, 0, 0.4), transparent 70%);
  animation-delay: 10s;
}

.orb-4 {
  width: 550px;
  height: 550px;
  bottom: 10%;
  right: 20%;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.35), transparent 70%);
  animation-delay: 15s;
}

@keyframes orb-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -80px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

/* Floating bubbles */
.hero-bg-bubbles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  animation: float 10s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.1);
}

.b1 { width: 350px; height: 350px; top: -80px; right: -100px; animation-delay: 0s; }
.b2 { width: 220px; height: 220px; bottom: 8%; left: -70px; animation-delay: 2s; }
.b3 { width: 160px; height: 160px; top: 35%; right: 18%; animation-delay: 4s; }
.b4 { width: 90px; height: 90px; top: 55%; left: 12%; animation-delay: 1s; }
.b5 { width: 130px; height: 130px; bottom: 18%; right: 8%; animation-delay: 3s; }
.b6 { width: 70px; height: 70px; top: 22%; left: 28%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-35px) scale(1.04); }
}

/* Sparkle effects */
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,255,255,0.8);
  animation: sparkle 3s ease-in-out infinite;
}

.s1 { top: 20%; left: 15%; animation-delay: 0s; }
.s2 { top: 60%; left: 25%; animation-delay: 0.6s; }
.s3 { top: 40%; right: 20%; animation-delay: 1.2s; }
.s4 { bottom: 30%; right: 35%; animation-delay: 1.8s; }
.s5 { top: 70%; left: 50%; animation-delay: 2.4s; }

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

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 180px 32px 120px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero tag with icons */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(180%);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 1.2px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.12),
    inset 0 1px 1px rgba(255,255,255,0.2);
  text-transform: uppercase;
  animation: tag-glow 3s ease-in-out infinite;
}

@keyframes tag-glow {
  0%, 100% {
    box-shadow:
      0 8px 32px rgba(0,0,0,0.12),
      inset 0 1px 1px rgba(255,255,255,0.2);
  }
  50% {
    box-shadow:
      0 8px 32px rgba(245, 158, 11, 0.3),
      inset 0 1px 1px rgba(255,255,255,0.3);
  }
}

.tag-icon {
  font-size: 0.9rem;
  animation: icon-pulse 2s ease-in-out infinite;
}

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

/* Kinetic typography */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.title-line {
  display: block;
  position: relative;
}

.title-line:nth-child(2) {
  margin-left: 40px;
}

.title-highlight {
  color: var(--accent-light);
  font-style: italic;
  position: relative;
  display: inline-block;
  text-shadow:
    0 0 30px rgba(251, 191, 36, 0.6),
    0 4px 20px rgba(0,0,0,0.3);
}

.title-highlight::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
  filter: blur(12px);
  z-index: -1;
  animation: highlight-glow 2s ease-in-out infinite;
}

@keyframes highlight-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Hero subtitle with decorative lines */
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0.95;
}

.subtitle-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
}

/* Hero description */
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  line-height: 1.8;
  max-width: 540px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* Enhanced buttons */
.hero-btns {
  display: flex;
  gap: 18px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.hero-btns .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 17px 38px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-btns .btn svg {
  transition: transform 0.3s ease;
}

.hero-btns .btn:hover svg {
  transform: translateX(4px);
}

/* Stats with enhanced styling */
.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  padding: 24px 0;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  padding: 0 36px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease;
  position: relative;
}

.stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

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

.stat:hover::before {
  opacity: 1;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Entrance animations */
.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8) rotateY(-15deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
  }
}

/* ===== Hero Visual / 3D Scene ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.scene-3d {
  width: 420px;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-3d-wrapper {
  width: 320px;
  height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
}

/* 3D Glow */
.logo-3d-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245,158,11,0.25) 0%, rgba(198,40,40,0.12) 45%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 0.9; }
}

/* 3D Glass Bottle */
.bottle-3d {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  animation: bottle-float 7s ease-in-out infinite;
}

@keyframes bottle-float {
  0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(1deg); }
  25%  { transform: translateY(-14px) rotateY(6deg) rotateX(-1.5deg); }
  50%  { transform: translateY(-22px) rotateY(0deg) rotateX(1deg); }
  75%  { transform: translateY(-14px) rotateY(-6deg) rotateX(-1.5deg); }
}

.bottle-body {
  position: relative;
  width: 130px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 35px 50px rgba(0,0,0,0.4)) drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Cap */
.bottle-cap {
  width: 34px;
  height: 15px;
  background: linear-gradient(180deg, #e8a915, #d97706, #b45309);
  border-radius: 5px 5px 0 0;
  margin: 0 auto;
  position: relative;
  box-shadow: inset 0 3px 4px rgba(255,255,255,0.35), inset 0 -2px 3px rgba(0,0,0,0.2);
}

.bottle-cap::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
}

.bottle-cap::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: -4px;
  right: -4px;
  height: 5px;
  background: linear-gradient(180deg, #b45309, #92400e);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Neck */
.bottle-neck {
  width: 36px;
  height: 55px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    rgba(200,225,240,0.12) 0%,
    rgba(210,235,250,0.35) 18%,
    rgba(240,250,255,0.6) 32%,
    rgba(255,255,255,0.7) 40%,
    rgba(240,250,255,0.5) 52%,
    rgba(210,235,250,0.3) 68%,
    rgba(200,225,240,0.15) 100%
  );
  border-left: 1px solid rgba(255,255,255,0.35);
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
  clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
}

/* Main Body */
.bottle-main {
  width: 130px;
  height: 275px;
  margin: 0 auto;
  background: linear-gradient(90deg,
    rgba(200,225,240,0.1) 0%,
    rgba(210,235,250,0.25) 12%,
    rgba(230,245,255,0.45) 26%,
    rgba(245,252,255,0.6) 38%,
    rgba(255,255,255,0.65) 44%,
    rgba(245,252,255,0.55) 52%,
    rgba(230,245,255,0.4) 62%,
    rgba(210,235,250,0.25) 76%,
    rgba(200,225,240,0.12) 100%
  );
  border-radius: 14px 14px 24px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  border-top: none;
}

/* Glass Reflections */
.bottle-reflection {
  position: absolute;
  top: 55px;
  left: 10px;
  width: 16px;
  height: 190px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.2) 40%,
    rgba(255,255,255,0.05) 70%,
    transparent
  );
  border-radius: 10px;
  transform: rotate(1deg);
  z-index: 10;
  pointer-events: none;
}

.bottle-reflection-2 {
  position: absolute;
  top: 75px;
  right: 20px;
  width: 6px;
  height: 100px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}

/* Condensation drops */
.bottle-main::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 18px;
  width: 4px;
  height: 12px;
  background: rgba(255,255,255,0.3);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  z-index: 11;
  box-shadow:
    22px 15px 0 1px rgba(255,255,255,0.2),
    45px 8px 0 0px rgba(255,255,255,0.25),
    65px 22px 0 1px rgba(255,255,255,0.15),
    80px 5px 0 0px rgba(255,255,255,0.2),
    10px 50px 0 0px rgba(255,255,255,0.18),
    55px 45px 0 1px rgba(255,255,255,0.12);
}

/* Liquid */
.bottle-liquid {
  position: absolute;
  bottom: 0;
  left: 5px;
  right: 5px;
  height: 72%;
  background: linear-gradient(180deg,
    rgba(251,191,36,0.45) 0%,
    rgba(245,158,11,0.6) 25%,
    rgba(217,119,6,0.7) 55%,
    rgba(180,83,9,0.8) 100%
  );
  border-radius: 0 0 20px 20px;
  overflow: hidden;
}

.liquid-wave {
  position: absolute;
  top: -10px;
  left: -15%;
  width: 130%;
  height: 24px;
  background: rgba(251,191,36,0.35);
  border-radius: 50%;
  animation: wave 3.5s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-4%) scaleY(1.4); }
}

/* Soda Bubbles */
.soda-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.15));
  animation: rise linear infinite;
  border: 1px solid rgba(255,255,255,0.15);
}

.sb1 { width: 5px; height: 5px; left: 22%; bottom: 10%; animation-duration: 2.8s; }
.sb2 { width: 3px; height: 3px; left: 48%; bottom: 5%; animation-duration: 3.2s; animation-delay: 0.5s; }
.sb3 { width: 7px; height: 7px; left: 68%; bottom: 15%; animation-duration: 2.2s; animation-delay: 1s; }
.sb4 { width: 3px; height: 3px; left: 35%; bottom: 22%; animation-duration: 3.8s; animation-delay: 0.3s; }
.sb5 { width: 4px; height: 4px; left: 58%; bottom: 8%; animation-duration: 3s; animation-delay: 1.5s; }
.sb6 { width: 3px; height: 3px; left: 18%; bottom: 28%; animation-duration: 2.5s; animation-delay: 0.8s; }
.sb7 { width: 6px; height: 6px; left: 78%; bottom: 12%; animation-duration: 3.5s; animation-delay: 2s; }

@keyframes rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 0.7; }
  85%  { opacity: 0.2; }
  100% { transform: translateY(-180px) scale(0.4); opacity: 0; }
}

/* Marble / Goli */
.bottle-marble {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%,
    rgba(255,255,255,0.95),
    rgba(210,235,255,0.7) 35%,
    rgba(160,200,235,0.45) 60%,
    rgba(120,170,210,0.35)
  );
  box-shadow: 0 3px 10px rgba(0,0,0,0.2), inset 0 -3px 6px rgba(0,0,0,0.08);
  z-index: 5;
}

/* Label */
.bottle-label-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottle-label-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.12));
}

/* Bottom */
.bottle-bottom {
  width: 130px;
  height: 14px;
  background: linear-gradient(90deg,
    rgba(150,200,240,0.15),
    rgba(200,230,255,0.3),
    rgba(150,200,240,0.15)
  );
  border-radius: 0 0 24px 24px;
  margin: 0 auto;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Orbiting Rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
  transform-style: preserve-3d;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.ring-1 {
  width: 340px;
  height: 340px;
  border-color: rgba(245,158,11,0.15);
  animation: orbit-1 10s linear infinite;
}

.ring-2 {
  width: 380px;
  height: 380px;
  border-color: rgba(198,40,40,0.1);
  border-style: dashed;
  animation: orbit-2 14s linear infinite reverse;
}

.ring-3 {
  width: 410px;
  height: 410px;
  border-color: rgba(255,255,255,0.05);
  border-width: 1px;
  animation: orbit-3 18s linear infinite;
}

@keyframes orbit-1 {
  from { transform: rotateX(70deg) rotateZ(0deg); }
  to { transform: rotateX(70deg) rotateZ(360deg); }
}
@keyframes orbit-2 {
  from { transform: rotateX(55deg) rotateY(30deg) rotateZ(0deg); }
  to { transform: rotateX(55deg) rotateY(30deg) rotateZ(360deg); }
}
@keyframes orbit-3 {
  from { transform: rotateX(80deg) rotateY(-20deg) rotateZ(0deg); }
  to { transform: rotateX(80deg) rotateY(-20deg) rotateZ(360deg); }
}

/* Floating Particles */
.particle {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.p1 { width: 8px; height: 8px; background: #fbbf24; top: 12%; left: 8%; animation: particle-float 6s ease-in-out infinite; box-shadow: 0 0 12px rgba(251,191,36,0.4); }
.p2 { width: 6px; height: 6px; background: #f87171; top: 72%; right: 6%; animation: particle-float 8s ease-in-out infinite 1s; box-shadow: 0 0 10px rgba(248,113,113,0.4); }
.p3 { width: 10px; height: 10px; background: #fb923c; bottom: 18%; left: 12%; animation: particle-float 7s ease-in-out infinite 0.5s; box-shadow: 0 0 14px rgba(251,146,60,0.35); }
.p4 { width: 5px; height: 5px; background: #fcd34d; top: 28%; right: 12%; animation: particle-float 5s ease-in-out infinite 2s; box-shadow: 0 0 8px rgba(252,211,77,0.4); }
.p5 { width: 7px; height: 7px; background: #ef4444; bottom: 28%; right: 18%; animation: particle-float 9s ease-in-out infinite 1.5s; box-shadow: 0 0 11px rgba(239,68,68,0.35); }
.p6 { width: 4px; height: 4px; background: #fff; top: 48%; left: 4%; animation: particle-float 7s ease-in-out infinite 3s; box-shadow: 0 0 6px rgba(255,255,255,0.35); }

@keyframes particle-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33%  { transform: translate(8px, -22px) scale(1.15); opacity: 0.9; }
  66%  { transform: translate(-6px, -32px) scale(0.85); opacity: 0.5; }
}

/* 3D Tilt Cards */
.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.2s ease-out, box-shadow 0.35s ease;
}

.tilt-card .flavor-icon,
.tilt-card .pairing-emoji,
.tilt-card .stars { transform: translateZ(25px); }
.tilt-card h3 { transform: translateZ(18px); }
.tilt-card p { transform: translateZ(8px); }
.tilt-card .flavor-badge { transform: translateZ(30px); }

.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== About ===== */
.about {
  padding: 110px 0;
  background: var(--cream);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(198,40,40,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-pattern {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(198,40,40,0.1);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about-img-placeholder {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder svg { width: 100%; height: auto; }

.about-text {
  color: var(--gray-500);
  margin-bottom: 18px;
  line-height: 1.8;
  font-size: 1rem;
}

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid rgba(198,40,40,0.08);
}

.feature h4 {
  font-size: 0.95rem;
  color: var(--gray-800);
  margin-bottom: 3px;
  font-weight: 700;
}

.feature p {
  font-size: 0.82rem;
  color: var(--gray-400);
}

/* ===== Flavors ===== */
.flavors {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

/* Subtle dot pattern */
.flavors::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.flavor-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 28px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.04);
}

.flavor-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: var(--transition);
}

.flavor-card:nth-child(1) .flavor-card-bg { background: #fbbf24; }
.flavor-card:nth-child(2) .flavor-card-bg { background: #34d399; }
.flavor-card:nth-child(3) .flavor-card-bg { background: #fb923c; }
.flavor-card:nth-child(4) .flavor-card-bg { background: #f472b6; }
.flavor-card:nth-child(5) .flavor-card-bg { background: #d97706; }
.flavor-card:nth-child(6) .flavor-card-bg { background: #8b5cf6; }

.flavor-card:hover {
  box-shadow: var(--shadow-lg);
}

.flavor-card:hover .flavor-card-bg {
  height: 100%;
  opacity: 0.06;
}

.flavor-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 22px;
}

.flavor-icon svg { width: 100%; height: 100%; }

.flavor-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gray-800);
  margin-bottom: 8px;
  font-weight: 800;
}

.flavor-card p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.flavor-badge {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 16px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.flavor-badge.new {
  background: #ecfdf5;
  color: #059669;
}

/* ===== Pairings ===== */
.pairings {
  padding: 110px 0;
  background: var(--cream);
}

.pairings-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 24px;
  scrollbar-width: none;
}

.pairings-carousel::-webkit-scrollbar { display: none; }

.pairing-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}

.pairing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pairing-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pairing-emoji { font-size: 3.8rem; }

.pairing-info { padding: 24px; }

.pairing-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: 8px;
  font-weight: 700;
}

.pairing-info p {
  font-size: 0.82rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 110px 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(245,158,11,0.08) 0%, transparent 50%),
    linear-gradient(145deg, #5c0e0e 0%, #991b1b 40%, #c62828 100%);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.testimonials .section-tag {
  color: rgba(255,255,255,0.6);
}

.testimonials .section-tag::before,
.testimonials .section-tag::after {
  background: rgba(251,191,36,0.5);
}

.testimonials .section-title { color: var(--white); }
.testimonials .section-title span { color: var(--accent-light); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}

/* Quote decoration */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(251,191,36,0.15);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.stars {
  color: var(--accent-light);
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 3px;
}

.testimonial-card > p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(251,191,36,0.3), rgba(198,40,40,0.3));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}

/* ===== Contact ===== */
.contact {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact-info > p {
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  color: var(--gray-800);
  font-size: 0.85rem;
  margin-bottom: 3px;
}

.contact-item p {
  margin: 0;
  font-size: 0.88rem;
}

.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 22px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { margin-top: 8px; }

/* ===== Contact Map ===== */
.contact-map {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-map iframe {
  display: block;
  width: 100%;
}

/* ===== Service Areas ===== */
.service-areas {
  margin-top: 24px;
}

.service-areas strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-bg);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(198, 40, 40, 0.12);
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Dark Mode - Map & Service Areas */
body.dark-mode .contact-map { border-color: rgba(255,255,255,0.06); }
body.dark-mode .service-areas strong { color: #d6d3d1; }
body.dark-mode .area-tag {
  background: rgba(198, 40, 40, 0.12);
  color: #f87171;
  border-color: rgba(198, 40, 40, 0.2);
}
body.dark-mode .area-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 100000;
  text-decoration: none;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Visually hidden - readable by crawlers & screen readers, invisible on screen */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== FAQ Section ===== */
.faq {
  padding: 80px 0;
  background: var(--gray-50);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(198,40,40,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(198,40,40,0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
  margin: 0;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-bg);
  position: relative;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: var(--white);
}

/* Dark Mode - FAQ */
body.dark-mode .faq { background: #121110; }
body.dark-mode .faq::before { background: radial-gradient(circle at 20% 50%, rgba(245,158,11,0.03) 0%, transparent 60%); }
body.dark-mode .faq-item { background: #1a1816; border-color: rgba(255,255,255,0.06); }
body.dark-mode .faq-item:hover { border-color: rgba(255,255,255,0.1); }
body.dark-mode .faq-item[open] { border-color: var(--primary); box-shadow: 0 4px 20px rgba(198,40,40,0.12); }
body.dark-mode .faq-item summary h3 { color: #e7e5e4; }
body.dark-mode .faq-icon { background: rgba(198,40,40,0.15); }
body.dark-mode .faq-answer { color: #a8a29e; }

/* ===== Footer ===== */
.footer {
  background: #3b1016;
  padding: 64px 0 0;
  position: relative;
}

/* Decorative top edge */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light), var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-top: 18px;
  max-width: 340px;
}

.footer .logo-text { color: var(--white); }

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 26px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--gray-400);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 26px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary-light));
  z-index: 10000;
  transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(198,40,40,0.4);
}

/* ===== Topbar ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.topbar.hidden { transform: translateY(-100%); }

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.topbar-item:hover { color: var(--accent-light); }
.topbar-item svg { opacity: 0.6; flex-shrink: 0; }

.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
}

.topbar-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.5px;
  font-size: 0.72rem;
}

.topbar-social {
  display: flex;
  gap: 10px;
}

.topbar-social a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
}

.topbar-social a:hover {
  color: var(--accent-light);
  transform: scale(1.15);
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5), 0 4px 12px rgba(0,0,0,0.2);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--gray-900);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all 0.25s ease;
  box-shadow: var(--shadow-md);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid var(--gray-900);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

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

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== Benefits / Why Choose Us ===== */
.benefits {
  padding: 100px 0;
  background: linear-gradient(145deg, #6b1010 0%, #991b1b 35%, #b71c1c 65%, #e65100 100%);
  position: relative;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.benefits-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.benefits-shape.s1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  border: 1px solid rgba(255,255,255,0.05);
}

.benefits-shape.s2 {
  width: 350px;
  height: 350px;
  bottom: -150px;
  left: -80px;
  background: rgba(245,158,11,0.06);
}

.benefits::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

.benefits .section-tag { color: rgba(255,255,255,0.6); }
.benefits .section-tag::before,
.benefits .section-tag::after { background: rgba(251,191,36,0.5); }
.benefits .section-title { color: var(--white); }
.benefits .section-title span { color: var(--accent-light); }

.benefits-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.benefit-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-6px);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrap {
  background: rgba(245,158,11,0.2);
  transform: scale(1.08);
}

.benefit-counter {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: inline;
}

.benefit-suffix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-light);
  display: inline;
  vertical-align: top;
  margin-left: 2px;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin: 16px 0 8px;
}

.benefit-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ===== Responsive ===== */

/* --- Large Tablets & Small Laptops (1024px) --- */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .nav-container { padding: 0 24px; }

  /* Hero stacks vertically */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 24px 80px;
    gap: 24px;
  }
  .hero-desc { margin: 0 auto 40px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }

  /* Bottle scales down */
  .scene-3d { width: 320px; height: 400px; }
  .logo-3d-wrapper { width: 240px; height: 370px; }
  .bottle-body { width: 100px; }
  .bottle-cap { width: 28px; height: 13px; }
  .bottle-neck { width: 30px; height: 44px; }
  .bottle-main { width: 100px; height: 215px; }
  .bottle-bottom { width: 100px; }
  .ring-1 { width: 280px; height: 280px; }
  .ring-2 { width: 310px; height: 310px; }
  .ring-3 { width: 330px; height: 330px; }
  .logo-3d-glow { width: 280px; height: 280px; }

  /* Section padding reduces */
  .about { padding: 80px 0; }
  .flavors { padding: 80px 0; }
  .pairings { padding: 80px 0; }
  .testimonials { padding: 80px 0; }
  .contact { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }

  /* Grid layouts */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Benefits */
  .benefits { padding: 80px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-container { padding: 150px 24px 80px; }
}

/* --- Navbar Breakpoint (968px) --- */
@media (max-width: 968px) {
  /* Mobile navigation drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 82vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(32px) saturate(200%);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 48px 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    border-left: 1px solid rgba(0,0,0,0.06);
  }

  .nav-links.open { right: 0; }

  .nav-link {
    color: var(--gray-700) !important;
    font-size: 1.2rem !important;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    text-shadow: none !important;
  }

  .nav-link::before,
  .nav-link::after { display: none; }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary) !important;
    border-bottom-color: var(--primary);
    transform: translateX(4px);
  }

  .nav-actions {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 80px;
    flex-direction: row-reverse;
    gap: 12px;
  }

  .nav-social {
    padding-right: 0;
    border-right: none;
    gap: 10px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.08);
    color: var(--gray-600);
  }

  .hamburger { display: flex; }
}

/* --- Tablets Portrait (768px) --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }


  /* Hero */
  .hero-container {
    padding: 130px 20px 80px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    order: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-title {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }

  .title-line:nth-child(2) {
    margin-left: 0;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    letter-spacing: 3px;
    gap: 12px;
  }

  .hero-desc {
    font-size: 0.98rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 10px 20px;
    gap: 8px;
  }

  .hero-stats {
    padding: 20px 16px;
    gap: 0;
    width: 100%;
  }

  .stat {
    padding: 0 24px;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .hero-btns {
    margin-bottom: 48px;
    justify-content: center;
  }

  /* Reduce gradient orbs on mobile */
  .gradient-orb {
    filter: blur(60px);
    opacity: 0.3;
  }

  .orb-1 { width: 400px; height: 400px; }
  .orb-2 { width: 350px; height: 350px; }
  .orb-3 { display: none; }
  .orb-4 { width: 400px; height: 400px; }

  /* Bottle scales smaller */
  .scene-3d { width: 260px; height: 340px; }
  .logo-3d-wrapper { width: 200px; height: 310px; }
  .bottle-body { width: 85px; }
  .bottle-cap { width: 24px; height: 11px; }
  .bottle-neck { width: 26px; height: 38px; }
  .bottle-main { width: 85px; height: 180px; }
  .bottle-bottom { width: 85px; height: 12px; }
  .ring-1 { width: 230px; height: 230px; }
  .ring-2 { width: 260px; height: 260px; }
  .ring-3 { width: 280px; height: 280px; }
  .logo-3d-glow { width: 230px; height: 230px; }
  .bottle-reflection { height: 130px; left: 8px; width: 12px; }
  .bottle-reflection-2 { height: 70px; right: 14px; width: 5px; }
  .bottle-marble { width: 18px; height: 18px; }

  /* Sections */
  .about { padding: 64px 0; }
  .flavors { padding: 64px 0; }
  .pairings { padding: 64px 0; }
  .testimonials { padding: 64px 0; }
  .contact { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-tag { font-size: 0.72rem; letter-spacing: 2px; }

  /* Flavor grid - 2 cols on tablets */
  .flavor-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .flavor-card { padding: 36px 22px 28px; }
  .flavor-icon { width: 68px; height: 68px; margin-bottom: 18px; }

  /* Pairings */
  .pairing-card { flex: 0 0 260px; }
  .pairing-visual { height: 150px; }
  .pairing-emoji { font-size: 3rem; }
  .pairing-info { padding: 20px; }
  .pairing-info h3 { font-size: 0.92rem; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonial-card:last-child { grid-column: auto; max-width: none; }
  .testimonial-card { padding: 28px 24px; }

  /* Contact */
  .contact-grid { gap: 40px; }
  .contact-form-wrapper { padding: 32px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-social { margin-top: 20px; }
  .footer-links h4 { margin-bottom: 16px; }

  /* About image */
  .about-pattern { top: -10px; left: -10px; }
  .about-img-placeholder img { padding: 20px !important; }

  /* Buttons - full width touch targets */
  .btn { padding: 14px 30px; font-size: 0.85rem; min-height: 48px; }
  .carousel-btn { width: 48px; height: 48px; }

  /* Topbar hides on mobile */
  .topbar { display: none; }
  .navbar { top: 0; }

  /* Hero adjust for no topbar */
  .hero-container { padding: 110px 20px 70px; }

  /* Benefits */
  .benefits { padding: 64px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .benefit-card { padding: 32px 18px; }
  .benefit-counter { font-size: 2.4rem; }
  .benefit-suffix { font-size: 1.4rem; }
  .benefit-icon-wrap { width: 56px; height: 56px; margin-bottom: 18px; border-radius: 14px; }

  /* WhatsApp button smaller */
  .whatsapp-float { width: 54px; height: 54px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .whatsapp-tooltip { display: none; }
}

/* --- Large Phones (600px) --- */
@media (max-width: 600px) {
  .hero-container { padding: 110px 16px 60px; gap: 40px; }
  .hero-title { font-size: 2.2rem; letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.92rem; margin-bottom: 36px; }
  .hero-btns { gap: 12px; flex-direction: column; width: 100%; }
  .hero-btns .btn { padding: 15px 32px; font-size: 0.9rem; width: 100%; justify-content: center; }
  .hero-tag { font-size: 0.68rem; padding: 9px 18px; }
  .hero-subtitle { font-size: 0.78rem; }
  .stat { padding: 0 18px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.62rem; letter-spacing: 1.2px; }

  /* Bottle even smaller */
  .scene-3d { width: 220px; height: 300px; }
  .logo-3d-wrapper { width: 170px; height: 270px; }
  .bottle-body { width: 72px; }
  .bottle-cap { width: 20px; height: 10px; }
  .bottle-neck { width: 22px; height: 32px; }
  .bottle-main { width: 72px; height: 155px; }
  .bottle-bottom { width: 72px; height: 10px; }
  .ring-1 { width: 190px; height: 190px; }
  .ring-2 { width: 215px; height: 215px; }
  .ring-3 { width: 235px; height: 235px; }
  .logo-3d-glow { width: 190px; height: 190px; }
  .bottle-reflection { height: 100px; left: 6px; width: 10px; top: 35px; }
  .bottle-reflection-2 { height: 55px; right: 12px; width: 4px; }
  .bottle-marble { width: 15px; height: 15px; }
  .bottle-label-wrap { width: 82%; }

  /* Flavor grid single column */
  .flavor-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
    gap: 16px;
  }

  /* About features */
  .about-features { gap: 18px; }
  .feature-icon { width: 44px; height: 44px; border-radius: 12px; }
  .feature-icon svg { width: 20px; height: 20px; }

  /* Pairings */
  .pairing-card { flex: 0 0 240px; }
  .pairing-visual { height: 130px; }

  /* Contact */
  .contact-form-wrapper { padding: 24px; }
  .form-group input,
  .form-group textarea { padding: 12px 14px; font-size: 0.85rem; }
  .form-group label { font-size: 0.75rem; }

  /* Bubbles - fewer on mobile for performance */
  .b1 { width: 200px; height: 200px; top: -50px; right: -60px; }
  .b2 { width: 140px; height: 140px; }
  .b3 { width: 100px; height: 100px; }
  .b4 { display: none; }
  .b5 { display: none; }
  .b6 { display: none; }
}

/* FAQ responsive - tablets and below */
@media (max-width: 768px) {
  .faq { padding: 60px 0; }
}

/* --- Small Phones (480px) --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }

  .hero-container { padding: 100px 16px 50px; gap: 36px; }
  .hero-title { font-size: 1.9rem; line-height: 1.12; letter-spacing: -0.3px; }
  .hero-subtitle { font-size: 0.72rem; letter-spacing: 2.5px; gap: 10px; }
  .hero-tag { font-size: 0.65rem; padding: 8px 16px; }
  .hero-desc { font-size: 0.88rem; }
  .hero-stats { padding: 18px 12px; }
  .stat { padding: 0 16px; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 1px; }

  /* Simplify animations on smallest screens */
  .hero-sparkles { display: none; }
  .gradient-orb { display: none; }
  .hero-subtitle { font-size: 0.85rem; letter-spacing: 1.5px; margin-bottom: 14px; }
  .hero-tag { font-size: 0.68rem; padding: 6px 14px; margin-bottom: 20px; }
  .hero-desc { font-size: 0.85rem; line-height: 1.65; margin-bottom: 28px; }

  /* Buttons stack */
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .btn { width: 100%; max-width: 280px; }

  /* Stats stack vertically */
  .hero-stats { flex-direction: column; gap: 14px; align-items: center; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 10px 0; text-align: center; }
  .stat:first-child { padding-top: 0; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
  .stat-num { font-size: 1.5rem; }

  /* Sections tighter */
  .about { padding: 50px 0; }
  .flavors { padding: 50px 0; }
  .pairings { padding: 50px 0; }
  .testimonials { padding: 50px 0; }
  .contact { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { margin-bottom: 12px; }
  .section-desc { font-size: 0.92rem; }

  /* About */
  .about-grid { gap: 36px; }
  .about-text { font-size: 0.9rem; margin-bottom: 14px; }
  .about-pattern { top: -8px; left: -8px; }
  .about-img-placeholder img { padding: 16px !important; }

  /* Flavor cards compact */
  .flavor-grid { max-width: 100%; }
  .flavor-card { padding: 32px 20px 26px; }
  .flavor-icon { width: 60px; height: 60px; margin-bottom: 16px; }
  .flavor-card h3 { font-size: 1.05rem; }
  .flavor-card p { font-size: 0.78rem; }

  /* Pairings tighter */
  .pairing-card { flex: 0 0 220px; }
  .pairing-visual { height: 110px; }
  .pairing-emoji { font-size: 2.5rem; }
  .pairing-info { padding: 16px; }
  .pairing-info h3 { font-size: 0.88rem; margin-bottom: 4px; }
  .pairing-info p { font-size: 0.78rem; }
  .carousel-btn { width: 44px; height: 44px; font-size: 1rem; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }
  .testimonial-card > p { font-size: 0.85rem; margin-bottom: 22px; }
  .testimonial-card::before { font-size: 3rem; top: 10px; right: 16px; }
  .stars { font-size: 0.9rem; margin-bottom: 14px; }
  .author-avatar { width: 38px; height: 38px; font-size: 0.8rem; }
  .testimonial-author strong { font-size: 0.82rem; }
  .testimonial-author span { font-size: 0.7rem; }

  /* Contact */
  .contact-grid { gap: 32px; }
  .contact-info > p { font-size: 0.9rem; margin-bottom: 28px; }
  .contact-item { gap: 14px; }
  .contact-item svg { width: 20px; height: 20px; }
  .contact-item strong { font-size: 0.8rem; }
  .contact-item p { font-size: 0.82rem; }
  .contact-form-wrapper { padding: 20px; border-radius: var(--radius); }
  .form-group { margin-bottom: 18px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { gap: 28px; padding-bottom: 32px; }
  .footer-brand p { font-size: 0.82rem; }
  .footer-links h4 { font-size: 0.85rem; margin-bottom: 14px; }
  .footer-links a { font-size: 0.82rem; }
  .footer-links li { margin-bottom: 10px; }
  .footer-bottom { padding: 20px 0; }
  .footer-bottom p { font-size: 0.72rem; }
  .footer-social a { width: 38px; height: 38px; }

  /* Orbit rings - hide on very small screens for cleanliness */
  .ring-3 { display: none; }
  .particle { display: none; }

  /* Benefits - stack on small phones */
  .benefits { padding: 50px 0; }
  .benefits-header { margin-bottom: 40px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .benefit-card { padding: 28px 14px; }
  .benefit-counter { font-size: 2rem; }
  .benefit-suffix { font-size: 1.2rem; }
  .benefit-icon-wrap { width: 48px; height: 48px; margin-bottom: 14px; border-radius: 12px; }
  .benefit-icon-wrap svg { width: 24px; height: 24px; }
  .benefit-card h3 { font-size: 0.9rem; margin-top: 12px; }
  .benefit-card p { font-size: 0.75rem; }

  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 22px; height: 22px; }
}

/* --- Extra Small Phones (360px) --- */
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .nav-container { padding: 0 12px; }

  .hero-container { padding: 90px 12px 45px; }
  .hero-title { font-size: 1.55rem; }
  .hero-subtitle { font-size: 0.78rem; }
  .hero-tag { font-size: 0.62rem; }
  .hero-desc { font-size: 0.8rem; }

  .scene-3d { width: 190px; height: 260px; }
  .logo-3d-wrapper { width: 150px; height: 240px; }
  .bottle-body { width: 62px; }
  .bottle-cap { width: 18px; height: 9px; }
  .bottle-neck { width: 20px; height: 28px; }
  .bottle-main { width: 62px; height: 135px; }
  .bottle-bottom { width: 62px; height: 8px; }
  .ring-1 { width: 160px; height: 160px; }
  .ring-2 { width: 180px; height: 180px; }
  .logo-3d-glow { width: 160px; height: 160px; }
  .bottle-reflection { height: 80px; width: 8px; left: 5px; }
  .bottle-reflection-2 { display: none; }
  .bottle-marble { width: 12px; height: 12px; }

  .btn { padding: 12px 20px; font-size: 0.8rem; }

  .flavor-card { padding: 28px 16px 22px; }
  .flavor-icon { width: 52px; height: 52px; }

  .testimonial-card { padding: 20px 16px; }
  .testimonial-card::before { display: none; }

  .contact-form-wrapper { padding: 16px; }

  .section-tag::before,
  .section-tag::after { width: 16px; }

  .pairing-card { flex: 0 0 200px; }
  .pairing-visual { height: 95px; }
  .pairing-emoji { font-size: 2.2rem; }

  .logo-icon { width: 36px; height: 36px; }
  .logo-text { font-size: 1.2rem; }
  .navbar { padding: 14px 0; }
  .navbar.scrolled { padding: 8px 0; }
}

/* --- Landscape phones --- */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-container { padding: 90px 24px 60px; grid-template-columns: 1fr 1fr; text-align: left; }
  .hero-visual { order: 0; }
  .hero-btns { justify-content: flex-start; }
  .hero-stats { justify-content: flex-start; }
  .scene-3d { width: 200px; height: 260px; }
  .logo-3d-wrapper { width: 150px; height: 240px; }
  .bottle-body { width: 60px; }
  .bottle-cap { width: 17px; height: 8px; }
  .bottle-neck { width: 19px; height: 26px; }
  .bottle-main { width: 60px; height: 130px; }
  .bottle-bottom { width: 60px; height: 8px; }
  .ring-1 { width: 160px; height: 160px; }
  .ring-2 { width: 180px; height: 180px; }
  .ring-3 { display: none; }
  .logo-3d-glow { width: 160px; height: 160px; }
  .nav-links {
    height: 100vh;
    height: 100dvh;
  }
}

/* --- High DPI / Retina optimizations --- */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .bottle-body { -webkit-backface-visibility: hidden; backface-visibility: hidden; }
}

/* --- Prefers reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .bottle-3d { animation: none; }
  .orbit-ring { animation: none; }
  .particle { animation: none; display: none; }
  .bubble { animation: none; }
  .soda-bubble { animation: none; }
  .liquid-wave { animation: none; }
  .logo-3d-glow { animation: none; }
  .reveal-item { opacity: 1; transform: none; }
}

/* --- Touch device optimizations --- */
@media (hover: none) and (pointer: coarse) {
  .tilt-card { transform: none !important; }
  .btn:hover { transform: none; }
  .flavor-card:hover .flavor-card-bg { height: 4px; opacity: 1; }
  .carousel-btn:hover { transform: none; }
  .footer-social a:hover { transform: none; }
  .nav-social a:hover { transform: none; }
}

/* ===== Scroll Reveal ===== */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Theme Toggle Button ===== */
/* Theme toggle button */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.theme-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px) rotate(15deg) scale(1.05);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.theme-toggle:hover svg {
  transform: rotate(180deg);
}

.navbar.scrolled .theme-toggle {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.04);
  color: var(--gray-600);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.navbar.scrolled .theme-toggle:hover {
  background: rgba(198, 40, 40, 0.08);
  color: var(--primary);
  border-color: rgba(198, 40, 40, 0.15);
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.2);
}

.navbar.scrolled .theme-toggle::before {
  background: radial-gradient(circle, rgba(198, 40, 40, 0.15), transparent);
}

.theme-toggle .moon-icon { display: none; }
body.dark-mode .theme-toggle .sun-icon { display: none; }
body.dark-mode .theme-toggle .moon-icon { display: block; }

/* ===== Dark Mode ===== */
body.dark-mode {
  background: #0e0c0b;
  color: #b8b0a8;
}

body.dark-mode .navbar.scrolled {
  background: rgba(14, 12, 11, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

body.dark-mode .navbar.scrolled .logo-text { color: #f5f5f4; }
body.dark-mode .navbar.scrolled .nav-links a { color: #a8a29e; }
body.dark-mode .navbar.scrolled .nav-links a:hover,
body.dark-mode .navbar.scrolled .nav-links a.active { color: var(--primary-light); }
body.dark-mode .navbar.scrolled .nav-social a { color: #78716c; }
body.dark-mode .navbar.scrolled .nav-social a:hover { color: var(--primary-light); }
body.dark-mode .navbar.scrolled .hamburger span { background: #e7e5e4; }

body.dark-mode .navbar.scrolled .theme-toggle {
  border-color: #292524;
  background: #1c1917;
  color: var(--accent-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

body.dark-mode .navbar.scrolled .theme-toggle:hover {
  background: #292524;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}
body.dark-mode .theme-toggle { color: var(--accent-light); }

/* Dark - About */
body.dark-mode .about { background: #121110; }
body.dark-mode .about::before { background: radial-gradient(circle, rgba(198,40,40,0.03) 0%, transparent 70%); }
body.dark-mode .section-tag { color: var(--primary-light); }
body.dark-mode .section-tag::before,
body.dark-mode .section-tag::after { background: rgba(245,158,11,0.4); }
body.dark-mode .section-title { color: #f5f5f4; }
body.dark-mode .about-text { color: #a8a29e; }
body.dark-mode .about-pattern { border-color: #1c1917; }
body.dark-mode .about-img-placeholder { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
body.dark-mode .about-img-placeholder img { background: #1a1816 !important; }
body.dark-mode .feature-icon { background: #1c1210; color: var(--primary-light); border-color: rgba(198,40,40,0.1); }
body.dark-mode .feature h4 { color: #e7e5e4; }
body.dark-mode .feature p { color: #78716c; }

/* Dark - Topbar */
body.dark-mode .topbar { background: #5c1a1a; }

/* Dark - Benefits */
body.dark-mode .benefits { background: linear-gradient(145deg, #3b0909, #5c0e0e, #7a1010); }

/* Dark - Scroll Progress */
body.dark-mode .scroll-progress {
  box-shadow: 0 0 8px rgba(245,158,11,0.4);
}

/* Dark - Flavors */
body.dark-mode .flavors { background: #0e0c0b; }
body.dark-mode .flavors::before { background-image: radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px); }
body.dark-mode .flavor-card { background: #1a1816; box-shadow: var(--shadow-sm); border-color: rgba(255,255,255,0.04); }
body.dark-mode .flavor-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
body.dark-mode .flavor-card h3 { color: #e7e5e4; }
body.dark-mode .flavor-card p { color: #78716c; }
body.dark-mode .flavor-badge { background: #1c1210; color: var(--primary-light); }
body.dark-mode .flavor-badge.new { background: #052e16; color: #34d399; }
body.dark-mode .section-desc { color: #78716c; }

/* Dark - Pairings */
body.dark-mode .pairings { background: #121110; }
body.dark-mode .pairing-card { background: #1a1816; box-shadow: var(--shadow-sm); border-color: rgba(255,255,255,0.04); }
body.dark-mode .pairing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
body.dark-mode .pairing-info h3 { color: #e7e5e4; }
body.dark-mode .pairing-info p { color: #78716c; }
body.dark-mode .carousel-btn { border-color: #292524; background: #1a1816; color: #a8a29e; }
body.dark-mode .carousel-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Dark - Testimonials */
body.dark-mode .testimonials { background: linear-gradient(145deg, #3b0909, #6b1010, #8a1717); }

/* Dark - Contact */
body.dark-mode .contact { background: #0e0c0b; }
body.dark-mode .contact::before { background: radial-gradient(circle, rgba(245,158,11,0.03) 0%, transparent 70%); }
body.dark-mode .contact-info > p { color: #a8a29e; }
body.dark-mode .contact-item strong { color: #e7e5e4; }
body.dark-mode .contact-item svg { color: var(--primary-light); }
body.dark-mode .contact-form-wrapper { background: #1a1816; box-shadow: var(--shadow-md); border-color: rgba(255,255,255,0.04); }
body.dark-mode .form-group label { color: #d6d3d1; }
body.dark-mode .form-group input,
body.dark-mode .form-group textarea { background: #121110; border-color: #292524; color: #e7e5e4; }
body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus { border-color: var(--primary); background: #0e0c0b; box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.12); }
body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder { color: #57534e; }

/* Dark - Footer */
body.dark-mode .footer { background: #2a0b10; }
body.dark-mode .footer .logo-text { color: #f5f5f4; }
body.dark-mode .footer-brand p { color: #78716c; }
body.dark-mode .footer-grid { border-bottom-color: rgba(255,255,255,0.05); }
body.dark-mode .footer-links h4 { color: #e7e5e4; }
body.dark-mode .footer-links a { color: #78716c; }
body.dark-mode .footer-links a:hover { color: var(--accent-light); }
body.dark-mode .footer-social a { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.06); color: #78716c; }
body.dark-mode .footer-social a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
body.dark-mode .footer-bottom p { color: #57534e; }

/* Dark - Hero wave */
body.dark-mode .hero-wave svg path { fill: #121110; }

/* Dark - Mobile menu */
@media (max-width: 768px) {
  body.dark-mode .nav-links {
    background: #1a1816;
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  body.dark-mode .nav-links a { color: #d6d3d1 !important; }
  body.dark-mode .nav-links a:hover,
  body.dark-mode .nav-links a.active { color: var(--primary-light) !important; }
}
/* ============================================
   CONTACT SECTION - FIZZY RETRO MODERN
   ============================================ */

/* Contact Section - New Design */
.contact-new {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 50%, #fff1f2 100%);
  overflow: hidden;
}

/* Floating Bubbles Background */
.contact-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.bubble-float {
  position: absolute;
  background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.3), rgba(198, 40, 40, 0.2));
  border-radius: 50%;
  animation: float-up 15s infinite ease-in-out;
  opacity: 0.4;
  backdrop-filter: blur(2px);
}

.bubble-float.b1 {
  width: 120px;
  height: 120px;
  left: 10%;
  bottom: -120px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.bubble-float.b2 {
  width: 80px;
  height: 80px;
  left: 70%;
  bottom: -80px;
  animation-delay: 3s;
  animation-duration: 20s;
}

.bubble-float.b3 {
  width: 150px;
  height: 150px;
  left: 50%;
  bottom: -150px;
  animation-delay: 7s;
  animation-duration: 22s;
}

.bubble-float.b4 {
  width: 60px;
  height: 60px;
  left: 25%;
  bottom: -60px;
  animation-delay: 12s;
  animation-duration: 16s;
}

.bubble-float.b5 {
  width: 100px;
  height: 100px;
  left: 85%;
  bottom: -100px;
  animation-delay: 15s;
  animation-duration: 19s;
}

@keyframes float-up {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-120vh) scale(0.5) rotate(180deg);
    opacity: 0;
  }
}

/* Container */
.contact-new .container {
  position: relative;
  z-index: 2;
}

/* Header */
.contact-header-new {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.contact-header-new .section-tag {
  background: linear-gradient(135deg, #c62828, #d32f2f);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 20px rgba(198, 40, 40, 0.3);
}

.contact-header-new .section-title {
  font-size: 56px;
  margin: 20px 0;
  line-height: 1.1;
  font-weight: 900;
  color: #1a1816;
}

.contact-header-new .section-title span {
  background: linear-gradient(135deg, #c62828, #d32f2f, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.contact-subtitle {
  font-size: 20px;
  color: #57534e;
  line-height: 1.6;
  margin-top: 16px;
}

/* Cards Grid */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

/* Base Card Styles */
.contact-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 2px solid transparent;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(198, 40, 40, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(198, 40, 40, 0.15);
  border-color: rgba(198, 40, 40, 0.2);
}

/* Decorative Corners */
.card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid #c62828;
  z-index: 2;
  transition: all 0.4s ease;
}

.card-corner.tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.card-corner.tr {
  top: 12px;
  right: 12px;
  border-left: none;
  border-bottom: none;
}

.card-corner.bl {
  bottom: 12px;
  left: 12px;
  border-right: none;
  border-top: none;
}

.card-corner.br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.contact-card:hover .card-corner {
  border-color: #fbbf24;
  animation: corner-pulse 1.5s infinite;
}

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

/* Card Content */
.card-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.4s ease;
}

.contact-card:hover .card-icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-icon {
  width: 36px;
  height: 36px;
  color: #c62828;
  transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
  color: white;
}

.card-title {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 800;
  color: #1a1816;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-desc {
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #78716c;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #c62828;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #fef3c7, #fed7aa);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card-link:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  transform: scale(1.05);
  border-color: #c62828;
  box-shadow: 0 8px 30px rgba(198, 40, 40, 0.3);
}

/* Individual Card Styles */
.contact-card-phone {
  background: linear-gradient(135deg, #fff 0%, #fef3c7 100%);
}

.contact-card-email {
  background: linear-gradient(135deg, #fff 0%, #dbeafe 100%);
}

.contact-card-email .card-icon-wrapper {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.contact-card-email:hover .card-icon-wrapper {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-card-email .card-icon {
  color: #1e40af;
}

.contact-card-email:hover .card-icon {
  color: white;
}

.contact-card-email .card-link {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
}

.contact-card-email .card-link:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  border-color: #1e40af;
}

.contact-card-whatsapp {
  background: linear-gradient(135deg, #fff 0%, #d1fae5 100%);
}

.contact-card-whatsapp .card-icon-wrapper {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.contact-card-whatsapp:hover .card-icon-wrapper {
  background: linear-gradient(135deg, #10b981, #059669);
}

.contact-card-whatsapp .card-icon {
  color: #065f46;
}

.contact-card-whatsapp:hover .card-icon {
  color: white;
}

.contact-card-whatsapp .card-link {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: #065f46;
}

.contact-card-whatsapp .card-link:hover {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border-color: #065f46;
}

.contact-card-location {
  background: linear-gradient(135deg, #fff 0%, #ede9fe 100%);
}

.contact-card-location .card-icon-wrapper {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}

.contact-card-location:hover .card-icon-wrapper {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-card-location .card-icon {
  color: #6d28d9;
}

.contact-card-location:hover .card-icon {
  color: white;
}

.contact-card-location .card-link {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
  color: #6d28d9;
}

.contact-card-location .card-link:hover {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
  border-color: #6d28d9;
}

/* Map Card - Full Width */
.contact-card-map {
  grid-column: span 2;
  padding: 0;
  height: 400px;
  background: #e7e5e4;
}

.contact-card-map iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Service Areas Card */
.contact-card-areas {
  grid-column: span 3;
  background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
  padding: 48px 40px;
}

.contact-card-areas .card-title {
  font-size: 28px;
  margin-bottom: 32px;
}

.service-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.service-tag {
  display: inline-block;
  padding: 12px 24px;
  background: white;
  color: #44403c;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #e7e5e4;
  transition: all 0.3s ease;
  cursor: default;
}

.service-tag:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border-color: #fbbf24;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.service-tag.highlight {
  background: linear-gradient(135deg, #c62828, #d32f2f);
  color: white;
  border-color: #c62828;
  font-weight: 700;
  animation: highlight-pulse 2s infinite;
}

@keyframes highlight-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 40, 40, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(198, 40, 40, 0);
  }
}

/* Social Card */
.contact-card-social {
  grid-column: span 1;
  background: linear-gradient(135deg, #fff 0%, #ffedd5 100%);
}

.social-links-new {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.social-link-new {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  border: 2px solid #e7e5e4;
  transition: all 0.3s ease;
}

.social-link-new svg {
  width: 24px;
  height: 24px;
  color: #44403c;
  transition: all 0.3s ease;
}

.social-link-new:hover {
  background: linear-gradient(135deg, #c62828, #d32f2f);
  border-color: #c62828;
  transform: translateY(-4px) rotate(360deg);
  box-shadow: 0 12px 30px rgba(198, 40, 40, 0.3);
}

.social-link-new:hover svg {
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .contact-card-map {
    grid-column: span 2;
    height: 350px;
  }

  .contact-card-areas {
    grid-column: span 2;
  }

  .contact-card-social {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .contact-new {
    padding: 80px 0;
  }

  .contact-header-new .section-title {
    font-size: 42px;
  }

  .contact-subtitle {
    font-size: 18px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card-map {
    grid-column: span 1;
    height: 300px;
  }

  .contact-card-areas {
    grid-column: span 1;
  }

  .contact-card-social {
    grid-column: span 1;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .card-title {
    font-size: 22px;
  }

  .service-tags {
    gap: 10px;
  }

  .service-tag {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .contact-header-new .section-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 16px;
  }

  .card-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .card-icon {
    width: 32px;
    height: 32px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-desc {
    font-size: 14px;
  }

  .card-link {
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

body.dark-mode .contact-new {
  background: linear-gradient(135deg, #1a1816 0%, #121110 50%, #1a1816 100%);
}

body.dark-mode .contact-header-new .section-title {
  color: #f5f5f4;
}

body.dark-mode .contact-subtitle {
  color: #a8a29e;
}

body.dark-mode .contact-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .contact-card::before {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(198, 40, 40, 0.05));
}

body.dark-mode .contact-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(198, 40, 40, 0.3);
}

body.dark-mode .card-title {
  color: #f5f5f4;
}

body.dark-mode .card-desc {
  color: #a8a29e;
}

body.dark-mode .service-tag {
  background: rgba(255, 255, 255, 0.05);
  color: #d6d3d1;
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .service-tag:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  border-color: #fbbf24;
}

body.dark-mode .social-link-new {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .social-link-new svg {
  color: #a8a29e;
}

body.dark-mode .social-link-new:hover {
  background: linear-gradient(135deg, #c62828, #d32f2f);
  border-color: #c62828;
}

body.dark-mode .social-link-new:hover svg {
  color: white;
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-card {
  animation: fadeInUp 0.6s ease-out backwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.contact-card:nth-child(4) { animation-delay: 0.4s; }
.contact-card:nth-child(5) { animation-delay: 0.5s; }
.contact-card:nth-child(6) { animation-delay: 0.6s; }
.contact-card:nth-child(7) { animation-delay: 0.7s; }

/* ============================================
   TESTIMONIALS - MAGAZINE EDITORIAL REDESIGN
   ============================================ */

/* Section Base */
.testimonials-new {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 50%, #fef2f2 100%);
  overflow: hidden;
}

/* Background Pattern */
.testimonials-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(198, 40, 40, 0.02) 35px, rgba(198, 40, 40, 0.02) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(251, 191, 36, 0.02) 35px, rgba(251, 191, 36, 0.02) 70px);
  z-index: 0;
}

.testimonials-new .container {
  position: relative;
  z-index: 1;
}

/* Header */
.testimonials-header-new {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.header-badge {
  display: inline-block;
  background: #000;
  color: #fbbf24;
  padding: 10px 28px;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 4px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(198, 40, 40, 0.3);
  margin-bottom: 24px;
  animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-8px); }
}

.testimonials-title-new {
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  color: #1a1816;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
}

.testimonials-title-new .title-pop {
  display: inline-block;
  background: linear-gradient(135deg, #c62828, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transform: rotate(-3deg);
  text-decoration: underline;
  text-decoration-color: #fbbf24;
  text-decoration-thickness: 8px;
  text-underline-offset: -4px;
}

.testimonials-subtitle {
  font-size: 20px;
  color: #57534e;
  font-weight: 500;
  font-style: italic;
}

/* Masonry Grid */
.testimonials-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

/* Base Card */
.testimonial-card-new {
  position: relative;
  background: white;
  padding: 48px 40px 40px;
  border-radius: 0;
  border: 6px solid #1a1816;
  box-shadow: 
    12px 12px 0 rgba(0, 0, 0, 1),
    12px 12px 0 6px rgba(251, 191, 36, 1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
  transform: rotate(0deg);
}

.testimonial-card-new:hover {
  transform: rotate(-1deg) translateY(-12px);
  box-shadow: 
    20px 20px 0 rgba(0, 0, 0, 1),
    20px 20px 0 6px rgba(251, 191, 36, 1);
}

/* Theme Colors */
.testimonial-card-new.lemon-theme {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fbbf24;
}

.testimonial-card-new.lemon-theme:hover {
  box-shadow: 
    20px 20px 0 rgba(0, 0, 0, 1),
    20px 20px 0 6px #fbbf24;
}

.testimonial-card-new.blueberry-theme {
  background: linear-gradient(135deg, #f0fdf4 0%, #d1fae5 100%);
  border-color: #34d399;
}

.testimonial-card-new.blueberry-theme:hover {
  box-shadow: 
    20px 20px 0 rgba(0, 0, 0, 1),
    20px 20px 0 6px #34d399;
}

.testimonial-card-new.restaurant-theme {
  background: linear-gradient(135deg, #fff5f5 0%, #fecaca 100%);
  border-color: #f87171;
}

.testimonial-card-new.restaurant-theme:hover {
  box-shadow: 
    20px 20px 0 rgba(0, 0, 0, 1),
    20px 20px 0 6px #f87171;
}

/* Large Quote Mark */
.quote-mark-large {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 180px;
  font-weight: 900;
  color: rgba(198, 40, 40, 0.15);
  line-height: 1;
  font-family: Georgia, serif;
  z-index: 0;
  pointer-events: none;
}

/* Ribbon Badge */
.testimonial-ribbon {
  position: absolute;
  top: 32px;
  right: -6px;
  background: #c62828;
  color: white;
  padding: 8px 20px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10% 50%);
  z-index: 3;
  animation: ribbon-wave 2s ease-in-out infinite;
}

.testimonial-ribbon.new-badge {
  background: #34d399;
}

.testimonial-ribbon.pro-badge {
  background: #f59e0b;
}

@keyframes ribbon-wave {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-4px); }
}

/* Stars */
.stars-new {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 28px;
}

.star-fizz {
  color: #fbbf24;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-card-new:hover .star-fizz {
  animation: star-pop 0.6s ease-out backwards;
}

.testimonial-card-new:hover .star-fizz:nth-child(1) { animation-delay: 0.05s; }
.testimonial-card-new:hover .star-fizz:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card-new:hover .star-fizz:nth-child(3) { animation-delay: 0.15s; }
.testimonial-card-new:hover .star-fizz:nth-child(4) { animation-delay: 0.2s; }
.testimonial-card-new:hover .star-fizz:nth-child(5) { animation-delay: 0.25s; }

@keyframes star-pop {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.4) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}

/* Quote */
.testimonial-quote-new {
  position: relative;
  z-index: 2;
  font-size: 19px;
  line-height: 1.7;
  color: #292524;
  margin: 0 0 32px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.testimonial-card-new:hover .testimonial-quote-new {
  transform: scale(1.02);
}

.testimonial-quote-new .highlight-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 21px;
}

.testimonial-quote-new em {
  font-style: italic;
  color: #c62828;
  font-weight: 700;
}

/* Footer */
.testimonial-footer-new {
  position: relative;
  z-index: 2;
  padding-top: 24px;
  border-top: 3px solid rgba(0, 0, 0, 0.1);
}

/* Author Info */
.author-info-new {
  display: flex;
  align-items: center;
  gap: 20px;
}

.author-avatar-new {
  position: relative;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #c62828, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: white;
  border: 4px solid #1a1816;
  flex-shrink: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.testimonial-card-new:hover .author-avatar-new {
  transform: rotate(360deg) scale(1.1);
}

.avatar-ring {
  position: absolute;
  inset: -8px;
  border: 3px dashed #fbbf24;
  border-radius: 50%;
  animation: ring-spin 20s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card-new:hover .avatar-ring {
  opacity: 1;
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Author Details */
.author-details-new {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-details-new strong {
  font-size: 20px;
  font-weight: 900;
  color: #1a1816;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.author-details-new span {
  font-size: 14px;
  color: #57534e;
  font-weight: 600;
}

.location-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px !important;
  color: #92400e !important;
  font-weight: 700 !important;
  margin-top: 4px;
}

/* Stats Bar */
.testimonials-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 48px;
  background: white;
  border: 6px solid #1a1816;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 1);
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #c62828;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #c62828, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  font-weight: 700;
  color: #57534e;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 3px;
  height: 60px;
  background: #e7e5e4;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .testimonials-title-new {
    font-size: 52px;
  }

  .testimonials-masonry {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
  }

  .testimonial-card-new {
    padding: 40px 32px 32px;
  }
}

@media (max-width: 768px) {
  .testimonials-new {
    padding: 80px 0;
  }

  .testimonials-header-new {
    margin-bottom: 60px;
  }

  .testimonials-title-new {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .testimonials-subtitle {
    font-size: 18px;
  }

  .testimonials-masonry {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .testimonial-card-new {
    padding: 36px 28px 28px;
    border-width: 4px;
    box-shadow: 
      8px 8px 0 rgba(0, 0, 0, 1),
      8px 8px 0 4px rgba(251, 191, 36, 1);
  }

  .testimonial-card-new:hover {
    box-shadow: 
      12px 12px 0 rgba(0, 0, 0, 1),
      12px 12px 0 4px rgba(251, 191, 36, 1);
  }

  .quote-mark-large {
    font-size: 120px;
    top: -10px;
    left: 20px;
  }

  .testimonial-quote-new {
    font-size: 17px;
  }

  .stars-new {
    font-size: 24px;
    gap: 4px;
  }

  .author-avatar-new {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .author-details-new strong {
    font-size: 18px;
  }

  .testimonials-stats-bar {
    flex-direction: column;
    gap: 32px;
    padding: 36px 24px;
  }

  .stat-divider {
    width: 60px;
    height: 3px;
  }

  .stat-number {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .testimonials-title-new {
    font-size: 36px;
  }

  .header-badge {
    font-size: 11px;
    padding: 8px 20px;
  }

  .testimonial-card-new {
    padding: 32px 24px 24px;
  }

  .testimonial-quote-new {
    font-size: 16px;
  }

  .quote-mark-large {
    font-size: 90px;
  }

  .stat-number {
    font-size: 40px;
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

body.dark-mode .testimonials-new {
  background: linear-gradient(180deg, #1a1816 0%, #121110 50%, #1a1816 100%);
}

body.dark-mode .testimonials-bg-pattern {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(251, 191, 36, 0.05) 35px, rgba(251, 191, 36, 0.05) 70px),
    repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(198, 40, 40, 0.05) 35px, rgba(198, 40, 40, 0.05) 70px);
}

body.dark-mode .testimonials-title-new {
  color: #f5f5f4;
}

body.dark-mode .testimonials-subtitle {
  color: #a8a29e;
}

body.dark-mode .testimonial-card-new {
  background: rgba(255, 255, 255, 0.03);
  border-color: #fbbf24;
}

body.dark-mode .testimonial-card-new.lemon-theme {
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.05) 0%, rgba(254, 243, 199, 0.1) 100%);
}

body.dark-mode .testimonial-card-new.blueberry-theme {
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.05) 0%, rgba(209, 250, 229, 0.1) 100%);
  border-color: #34d399;
}

body.dark-mode .testimonial-card-new.restaurant-theme {
  background: linear-gradient(135deg, rgba(254, 202, 202, 0.05) 0%, rgba(254, 202, 202, 0.1) 100%);
  border-color: #f87171;
}

body.dark-mode .quote-mark-large {
  color: rgba(251, 191, 36, 0.1);
}

body.dark-mode .testimonial-quote-new {
  color: #d6d3d1;
}

body.dark-mode .author-details-new strong {
  color: #f5f5f4;
}

body.dark-mode .author-details-new span {
  color: #a8a29e;
}

body.dark-mode .testimonials-stats-bar {
  background: rgba(255, 255, 255, 0.03);
  border-color: #fbbf24;
}

body.dark-mode .stat-label {
  color: #a8a29e;
}

/* Animation on scroll */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.testimonial-card-new {
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.testimonial-card-new:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card-new:nth-child(2) { animation-delay: 0.25s; }
.testimonial-card-new:nth-child(3) { animation-delay: 0.4s; }

/* ============================================
   REVIEWS MARQUEE - INFINITE SCROLL
   ============================================ */

.reviews-marquee-section {
  /* Full-bleed within container without triggering scrollbar overflow */
  width: calc(100% + 48px);
  margin-left: -24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0 60px;
  /* Edge fade mask */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-row {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
}

.marquee-rtl .marquee-track {
  animation: marquee-rtl 45s linear infinite;
}

.marquee-ltr .marquee-track {
  animation: marquee-ltr 45s linear infinite;
}

.marquee-row:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-ltr {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Marquee Card */
.marquee-card {
  flex-shrink: 0;
  width: 300px;
  border: 4px solid #1a1816;
  box-shadow: 6px 6px 0 #1a1816;
  border-radius: 20px;
  padding: 22px 24px 20px;
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.marquee-card:hover {
  transform: translateY(-6px) rotate(-1.5deg);
  box-shadow: 10px 10px 0 #1a1816;
}

/* Flavor Tag */
.mq-flavor-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1a1816;
  background: rgba(255,255,255,0.6);
  border: 2px solid #1a1816;
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

/* Stars */
.mq-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Quote */
.mq-quote {
  font-size: 13px;
  line-height: 1.6;
  color: #1a1816;
  margin: 0 0 14px;
  font-weight: 500;
  quotes: none;
}

/* Author Row */
.mq-author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mq-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a1816;
  color: #fbbf24;
  font-size: 13px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mq-author strong {
  font-size: 13px;
  font-weight: 800;
  color: #1a1816;
}

.mq-loc {
  font-size: 11px;
  color: #78716c;
  font-weight: 500;
  margin-left: auto;
}

/* Color Themes */
.mq-yellow { background: linear-gradient(135deg, #fef3c7, #fde68a); border-color: #f59e0b; }
.mq-yellow:hover { box-shadow: 10px 10px 0 #f59e0b; }

.mq-blue  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); border-color: #3b82f6; }
.mq-blue:hover  { box-shadow: 10px 10px 0 #3b82f6; }

.mq-orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); border-color: #f97316; }
.mq-orange:hover { box-shadow: 10px 10px 0 #f97316; }

.mq-pink   { background: linear-gradient(135deg, #fce7f3, #fbcfe8); border-color: #ec4899; }
.mq-pink:hover   { box-shadow: 10px 10px 0 #ec4899; }

.mq-amber  { background: linear-gradient(135deg, #fef9c3, #fef08a); border-color: #ca8a04; }
.mq-amber:hover  { box-shadow: 10px 10px 0 #ca8a04; }

.mq-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); border-color: #8b5cf6; }
.mq-purple:hover { box-shadow: 10px 10px 0 #8b5cf6; }

/* ── Marquee Responsive ── */
@media (max-width: 1024px) {
  .reviews-marquee-section {
    width: calc(100% + 32px);
    margin-left: -16px;
  }
}

@media (max-width: 768px) {
  .reviews-marquee-section {
    width: calc(100% + 24px);
    margin-left: -12px;
    gap: 16px;
    padding: 32px 0 48px;
  }
  .marquee-track {
    gap: 14px;
  }
  .marquee-card {
    width: 260px;
    padding: 18px 20px 16px;
    border-radius: 16px;
    border-width: 3px;
    box-shadow: 5px 5px 0 #1a1816;
  }
  .marquee-card:hover {
    box-shadow: 8px 8px 0 #1a1816;
  }
  .mq-quote {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .reviews-marquee-section {
    width: calc(100% + 16px);
    margin-left: -8px;
    gap: 12px;
    padding: 24px 0 40px;
  }
  .marquee-track {
    gap: 12px;
  }
  .marquee-card {
    width: 220px;
    padding: 16px 18px 14px;
    border-radius: 14px;
  }
  .mq-flavor-tag {
    font-size: 10px;
    padding: 3px 10px;
  }
  .mq-stars {
    font-size: 12px;
  }
  .mq-quote {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .mq-avatar {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
  .mq-author strong {
    font-size: 11px;
  }
  .mq-loc {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .marquee-card {
    width: 190px;
    padding: 14px 14px 12px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none !important;
  }
}

/* Dark mode */
body.dark-mode .marquee-card {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 6px 6px 0 rgba(255,255,255,0.1);
}

body.dark-mode .mq-quote,
body.dark-mode .mq-author strong,
body.dark-mode .mq-flavor-tag {
  color: #1a1816;
}

/* ============================================
   PAIRINGS - STREET FOOD MENU BOARD REDESIGN
   ============================================ */

/* Section Base */
.pairings-new {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #78350f 0%, #92400e 50%, #78350f 100%);
  overflow: hidden;
}

/* Menu Board Background */
.menu-board-bg {
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0px,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 40px
    );
  z-index: 0;
}

.board-texture {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(198, 40, 40, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.pairings-new .container {
  position: relative;
  z-index: 1;
}

/* Header */
.pairings-header-new {
  text-align: center;
  margin-bottom: 80px;
}

.menu-stamp {
  display: inline-block;
  background: #fbbf24;
  color: #78350f;
  padding: 12px 32px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 4px dashed #78350f;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  margin-bottom: 32px;
  animation: stamp-pulse 3s ease-in-out infinite;
}

@keyframes stamp-pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.05); }
}

.pairings-title-new {
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.title-line-1 {
  font-size: 48px;
  font-weight: 700;
  color: #fef3c7;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-style: italic;
}

.title-line-2 {
  font-size: 72px;
  font-weight: 900;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: -2px;
  text-shadow: 
    4px 4px 0 rgba(0, 0, 0, 0.3),
    -2px -2px 0 rgba(198, 40, 40, 0.5);
  line-height: 1;
}

.pairings-subtitle {
  font-size: 20px;
  color: #fed7aa;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Menu Grid */
.pairings-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 48px 32px;
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 20px;
}

/* Base Recipe Card */
.pairing-recipe-card {
  position: relative;
  background: #fffbeb;
  border: 5px solid #1a1816;
  border-radius: 20px;
  padding: 48px 32px 32px;
  box-shadow: 
    8px 8px 0 rgba(0, 0, 0, 0.5),
    8px 8px 0 5px #fbbf24;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: visible;
  cursor: pointer;
}

/* Tilt Variations */
.pairing-recipe-card.tilt-right {
  transform: rotate(2deg);
}

.pairing-recipe-card.tilt-left {
  transform: rotate(-2deg);
}

.pairing-recipe-card.tilt-right-alt {
  transform: rotate(3deg);
}

.pairing-recipe-card.tilt-left-alt {
  transform: rotate(-3deg);
}

/* Hover State - Straighten and Lift */
.pairing-recipe-card:hover {
  transform: rotate(0deg) translateY(-16px) scale(1.05);
  box-shadow: 
    16px 16px 0 rgba(0, 0, 0, 0.5),
    16px 16px 0 5px #fbbf24;
  z-index: 10;
}

/* Recipe Number */
.recipe-number {
  position: absolute;
  top: -20px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #c62828, #dc2626);
  color: white;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #1a1816;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 2;
  transition: all 0.4s ease;
}

.pairing-recipe-card:hover .recipe-number {
  transform: rotate(360deg) scale(1.15);
}

/* Recipe Badge */
.recipe-badge {
  position: absolute;
  top: 16px;
  right: -8px;
  background: #1a1816;
  color: #fbbf24;
  padding: 8px 20px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 8% 100%, 0% 50%);
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 2;
  animation: badge-wiggle 2s ease-in-out infinite;
}

.recipe-badge.new-item { background: #10b981; color: white; }
.recipe-badge.hot-pick { background: #f59e0b; color: white; }
.recipe-badge.sweet-treat { background: #ec4899; color: white; }
.recipe-badge.spicy-pick { background: #ef4444; color: white; }

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

/* Washi Tape */
.recipe-tape {
  position: absolute;
  width: 80px;
  height: 24px;
  background: rgba(251, 191, 36, 0.4);
  border-left: 2px dashed rgba(26, 24, 22, 0.2);
  border-right: 2px dashed rgba(26, 24, 22, 0.2);
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.recipe-tape.tape-1 {
  top: -12px;
  left: 30%;
  transform: rotate(-5deg);
}

.recipe-tape.tape-2 {
  top: -12px;
  right: 20%;
  transform: rotate(8deg);
}

/* Visual Section */
.recipe-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.recipe-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.2), transparent 50%);
  pointer-events: none;
}

/* Background Colors */
.lemon-bg { background: linear-gradient(135deg, #fef3c7, #fbbf24); }
.blueberry-bg { background: linear-gradient(135deg, #dbeafe, #60a5fa); }
.pineapple-bg { background: linear-gradient(135deg, #ffedd5, #fb923c); }
.rose-bg { background: linear-gradient(135deg, #fce7f3, #f472b6); }
.ginger-bg { background: linear-gradient(135deg, #fef9c3, #eab308); }

/* Food & Bottle Icons */
.food-emoji,
.bottle-icon {
  font-size: 64px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pairing-recipe-card:hover .food-emoji {
  transform: scale(1.2) rotate(-15deg);
}

.pairing-recipe-card:hover .bottle-icon {
  transform: scale(1.2) rotate(15deg);
}

/* Plus Sign */
.plus-sign {
  font-size: 48px;
  font-weight: 900;
  color: #1a1816;
  position: relative;
  z-index: 1;
  animation: plus-pulse 2s ease-in-out infinite;
}

@keyframes plus-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(90deg); }
}

/* Recipe Content */
.recipe-content {
  text-align: center;
}

.pairing-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.food-name,
.soda-name {
  font-size: 22px;
  font-weight: 900;
  color: #1a1816;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.soda-name {
  background: linear-gradient(135deg, #c62828, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pairing-connector {
  font-size: 28px;
  font-weight: 900;
  color: #c62828;
}

.pairing-reason {
  font-size: 16px;
  line-height: 1.6;
  color: #44403c;
  margin: 0 0 20px;
  font-weight: 600;
  font-style: italic;
}

/* Flavor Tags */
.flavor-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.flavor-tags .tag {
  display: inline-block;
  padding: 6px 14px;
  background: #1a1816;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  border: 2px solid #fbbf24;
  transition: all 0.3s ease;
}

.pairing-recipe-card:hover .flavor-tags .tag {
  background: #fbbf24;
  color: #1a1816;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.flavor-tags .tag:nth-child(1) { transition-delay: 0.05s; }
.flavor-tags .tag:nth-child(2) { transition-delay: 0.1s; }
.flavor-tags .tag:nth-child(3) { transition-delay: 0.15s; }

/* CTA Section */
.pairings-cta {
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 4px dashed #fbbf24;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 0 auto;
}

.cta-text {
  font-size: 28px;
  font-weight: 800;
  color: #fef3c7;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button-new {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1816;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  border: 4px solid #1a1816;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button-new:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #f59e0b, #dc2626);
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .title-line-2 {
    font-size: 60px;
  }

  .pairings-menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px 24px;
  }
}

@media (max-width: 768px) {
  .pairings-new {
    padding: 80px 0;
  }

  .pairings-header-new {
    margin-bottom: 60px;
  }

  .title-line-1 {
    font-size: 36px;
  }

  .title-line-2 {
    font-size: 48px;
  }

  .pairings-subtitle {
    font-size: 18px;
  }

  .pairings-menu-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 10px;
  }

  .pairing-recipe-card {
    padding: 40px 24px 24px;
  }

  .food-emoji,
  .bottle-icon {
    font-size: 52px;
  }

  .plus-sign {
    font-size: 36px;
  }

  .food-name,
  .soda-name {
    font-size: 20px;
  }

  .cta-text {
    font-size: 24px;
  }

  .cta-button-new {
    padding: 16px 36px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .title-line-1 {
    font-size: 28px;
  }

  .title-line-2 {
    font-size: 40px;
  }

  .menu-stamp {
    font-size: 12px;
    padding: 10px 24px;
  }

  .recipe-number {
    width: 48px;
    height: 48px;
    font-size: 24px;
    top: -16px;
  }

  .food-emoji,
  .bottle-icon {
    font-size: 44px;
  }

  .plus-sign {
    font-size: 32px;
  }

  .pairing-items {
    flex-direction: column;
    gap: 8px;
  }

  .pairing-connector {
    transform: rotate(90deg);
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

body.dark-mode .pairings-new {
  background: linear-gradient(135deg, #1a1816 0%, #121110 50%, #1a1816 100%);
}

body.dark-mode .menu-board-bg {
  opacity: 0.3;
}

body.dark-mode .title-line-1 {
  color: #fed7aa;
}

body.dark-mode .title-line-2 {
  color: #fbbf24;
}

body.dark-mode .pairings-subtitle {
  color: #d6d3d1;
}

body.dark-mode .pairing-recipe-card {
  background: rgba(254, 251, 235, 0.05);
  border-color: #fbbf24;
}

body.dark-mode .food-name {
  color: #f5f5f4;
}

body.dark-mode .pairing-reason {
  color: #d6d3d1;
}

body.dark-mode .pairings-cta {
  background: rgba(251, 191, 36, 0.1);
}

body.dark-mode .cta-text {
  color: #fef3c7;
}

/* Animation on scroll */
@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(60px) rotate(0deg);
  }
  to {
    opacity: 1;
  }
}

.pairing-recipe-card {
  animation: cardSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.pairing-recipe-card:nth-child(1) { animation-delay: 0.1s; }
.pairing-recipe-card:nth-child(2) { animation-delay: 0.2s; }
.pairing-recipe-card:nth-child(3) { animation-delay: 0.3s; }
.pairing-recipe-card:nth-child(4) { animation-delay: 0.4s; }
.pairing-recipe-card:nth-child(5) { animation-delay: 0.5s; }

/* ============================================
   FLAVORS - FUNKY REDESIGN
   ============================================ */

.flavors-funky {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #fef9c3 0%, #d1fae5 25%, #fce7f3 50%, #dbeafe 75%, #fef9c3 100%);
  overflow: hidden;
}

/* Background Shapes */
.flavors-funky-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.flv-shape {
  position: absolute;
  opacity: 0.12;
  animation: shape-float 15s ease-in-out infinite;
}

.flv-blob-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, #fbbf24, #f59e0b);
  top: -5%;
  right: 5%;
  animation-delay: 0s;
}

.flv-blob-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #ec4899, #f472b6);
  bottom: 5%;
  left: 3%;
  animation-delay: 5s;
}

.flv-circle-1 {
  width: 150px;
  height: 150px;
  border: 20px solid #10b981;
  border-radius: 50%;
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.flv-dots-1 {
  width: 160px;
  height: 160px;
  background-image: radial-gradient(circle, #c62828 20%, transparent 20%);
  background-size: 30px 30px;
  top: 30%;
  left: 2%;
  animation-delay: 8s;
}

.flv-zigzag-1 {
  width: 200px;
  height: 20px;
  background: repeating-linear-gradient(
    45deg,
    #8b5cf6,
    #8b5cf6 20px,
    transparent 20px,
    transparent 40px
  );
  top: 60%;
  right: 15%;
  animation-delay: 11s;
}

.flavors-funky .container {
  position: relative;
  z-index: 1;
}

/* Header */
.flavors-header-funky {
  text-align: center;
  margin-bottom: 80px;
}

.flavors-funky-badge {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #c62828, #dc2626);
  color: white;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow:
    0 8px 0 #1a1816,
    0 8px 24px rgba(0, 0, 0, 0.3);
  transform: rotate(-2deg);
  margin-bottom: 32px;
  animation: badge-bounce 2s ease-in-out infinite;
  display: inline-block;
}

.flavors-title-funky {
  font-size: 64px;
  font-weight: 900;
  color: #1a1816;
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -2px;
}

.flavors-subtitle-funky {
  font-size: 22px;
  color: #44403c;
  font-weight: 600;
  font-style: italic;
}

/* Flavors Grid */
.flavors-funky-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* Base Flavor Card */
.flavor-funky-card {
  position: relative;
  border-radius: 28px;
  padding: 52px 28px 40px;
  text-align: center;
  border: 5px solid #1a1816;
  box-shadow: 10px 10px 0 #1a1816;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  cursor: pointer;
}

.flavor-funky-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 14px 14px 0 #1a1816;
}

/* Card pattern overlay */
.flv-card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  border-radius: 24px;
}

.flv-pattern-1 {
  background: repeating-linear-gradient(45deg, #000, #000 10px, transparent 10px, transparent 20px);
}

.flv-pattern-2 {
  background: repeating-linear-gradient(-45deg, #000, #000 10px, transparent 10px, transparent 20px);
}

.flv-pattern-3 {
  background-image: radial-gradient(circle, #000 2px, transparent 2px);
  background-size: 20px 20px;
}

.flv-pattern-4 {
  background: repeating-linear-gradient(90deg, #000, #000 8px, transparent 8px, transparent 20px);
}

.flv-pattern-5 {
  background: repeating-linear-gradient(0deg, #000, #000 8px, transparent 8px, transparent 20px);
}

/* Sticker */
.flv-card-sticker {
  position: absolute;
  top: -16px;
  right: 20px;
  font-size: 44px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  animation: sticker-spin 4s ease-in-out infinite;
  z-index: 2;
}

/* Badges */
.flv-best-badge,
.flv-new-badge {
  position: absolute;
  top: 20px;
  left: -8px;
  padding: 6px 20px 6px 16px;
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
  animation: ribbon-shimmer 2s ease-in-out infinite;
}

.flv-best-badge {
  background: linear-gradient(135deg, #c62828, #dc2626);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.5);
}

.flv-new-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

/* Flavor Number */
.flv-number {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #78716c;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Icon */
.flv-icon-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid currentColor;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 1;
}

.flavor-funky-card:hover .flv-icon-wrap {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
}

.flv-icon-wrap svg {
  width: 100%;
  height: 100%;
}

.flv-icon-yellow { color: #f59e0b; }
.flv-icon-blue  { color: #3b82f6; }
.flv-icon-orange { color: #f97316; }
.flv-icon-pink   { color: #ec4899; }
.flv-icon-amber  { color: #ca8a04; }
.flv-icon-purple { color: #8b5cf6; }

/* Flavor Name */
.flv-name {
  font-size: 26px;
  font-weight: 900;
  color: #1a1816;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Flavor Description */
.flv-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #57534e;
  margin: 0 0 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Tags */
.flv-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.flv-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #1a1816;
  color: #1a1816;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.flavor-funky-card:hover .flv-tag {
  background: #1a1816;
  color: white;
}

/* Color Themes */
.flv-yellow { background: linear-gradient(135deg, #fef3c7, #fde68a); border-color: #f59e0b; }
.flv-yellow:hover { box-shadow: 14px 14px 0 #f59e0b; }

.flv-blue  { background: linear-gradient(135deg, #dbeafe, #bfdbfe); border-color: #3b82f6; }
.flv-blue:hover  { box-shadow: 14px 14px 0 #3b82f6; }

.flv-orange { background: linear-gradient(135deg, #ffedd5, #fed7aa); border-color: #f97316; }
.flv-orange:hover { box-shadow: 14px 14px 0 #f97316; }

.flv-pink   { background: linear-gradient(135deg, #fce7f3, #fbcfe8); border-color: #ec4899; }
.flv-pink:hover   { box-shadow: 14px 14px 0 #ec4899; }

.flv-amber  { background: linear-gradient(135deg, #fef9c3, #fef08a); border-color: #ca8a04; }
.flv-amber:hover  { box-shadow: 14px 14px 0 #ca8a04; }

.flv-purple { background: linear-gradient(135deg, #ede9fe, #ddd6fe); border-color: #8b5cf6; }
.flv-purple:hover { box-shadow: 14px 14px 0 #8b5cf6; }

/* Footer */
.flavors-funky-footer {
  text-align: center;
  padding-top: 60px;
}

.footer-fizz-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  animation: sticker-spin 4s ease-in-out infinite;
  display: inline-block;
}

.footer-fizz-text {
  font-size: 22px;
  font-weight: 700;
  color: #44403c;
  margin: 0 0 28px;
  font-style: italic;
}

.btn-try-all {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #c62828, #dc2626);
  color: white;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  border: 4px solid #1a1816;
  box-shadow: 8px 8px 0 #1a1816;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-try-all:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 12px 12px 0 #1a1816;
}

/* Responsive */
@media (max-width: 1024px) {
  .flavors-funky-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flavors-title-funky {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .flavors-funky {
    padding: 100px 0;
  }
  .flavors-header-funky {
    margin-bottom: 60px;
  }
  .flavors-title-funky {
    font-size: 40px;
  }
  .flavors-subtitle-funky {
    font-size: 18px;
  }
  .flavors-funky-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .flv-name {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .flavors-title-funky {
    font-size: 32px;
    letter-spacing: -1px;
  }
  .flavor-funky-card {
    padding: 44px 20px 32px;
  }
  .flv-icon-wrap {
    width: 90px;
    height: 90px;
  }
}

/* Dark Mode */
body.dark-mode .flavors-funky {
  background: linear-gradient(135deg, #1a1900 0%, #001a0d 25%, #1a0010 50%, #00001a 75%, #1a1900 100%);
}

body.dark-mode .flavor-funky-card {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 10px 10px 0 rgba(255, 255, 255, 0.1);
}

body.dark-mode .flv-name {
  color: #f5f5f4;
}

body.dark-mode .flv-desc {
  color: #a8a29e;
}

body.dark-mode .flv-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #e7e5e4;
}

body.dark-mode .flavor-funky-card:hover .flv-tag {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1816;
}

body.dark-mode .footer-fizz-text {
  color: #d6d3d1;
}

/* Animation on scroll */
.flavor-funky-card {
  animation: elegantFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) backwards;
}

@keyframes elegantFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.flavor-funky-card:nth-child(1) { animation-delay: 0.1s; }
.flavor-funky-card:nth-child(2) { animation-delay: 0.2s; }
.flavor-funky-card:nth-child(3) { animation-delay: 0.3s; }
.flavor-funky-card:nth-child(4) { animation-delay: 0.4s; }
.flavor-funky-card:nth-child(5) { animation-delay: 0.5s; }
.flavor-funky-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   WHY CHOOSE US - MODERN DATA VIZ REDESIGN
   ============================================ */

/* Section Base */
.benefits-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1816 50%, #0a0a0a 100%);
  overflow: hidden;
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(251, 191, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(251, 191, 36, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

/* Gradient Orbs */
.gradient-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 10%;
  background: radial-gradient(circle, #fbbf24, transparent);
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  top: 50%;
  right: 10%;
  background: radial-gradient(circle, #c62828, transparent);
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  bottom: 10%;
  left: 50%;
  background: radial-gradient(circle, #34d399, transparent);
  animation-delay: 10s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-30px, 30px); }
}

.benefits-modern .container {
  position: relative;
  z-index: 1;
}

/* Header */
.benefits-header-modern {
  text-align: center;
  margin-bottom: 80px;
}

.header-label {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(198, 40, 40, 0.1));
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  color: #fbbf24;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.benefits-title-modern {
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.title-highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #c62828);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #c62828);
  border-radius: 2px;
  opacity: 0.5;
}

.benefits-subtitle-modern {
  font-size: 22px;
  color: #a8a29e;
  font-weight: 600;
  margin: 0;
}

/* Stats Dashboard Grid */
.stats-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* Base Stat Card */
.stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  cursor: pointer;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover {
  transform: translateY(-12px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 24px 48px rgba(251, 191, 36, 0.15);
}

/* Hero Card (Larger) */
.stat-hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #c62828, #dc2626);
  color: white;
  font-size: 12px;
  font-weight: 900;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Stat Visual */
.stat-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

/* Circular Progress */
.circular-progress {
  position: relative;
}

.progress-ring {
  transform: rotate(0deg);
}

.progress-ring-bg {
  opacity: 0.1;
}

.progress-ring-fill {
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s ease-out;
}

.circular-progress[data-progress="100"] .progress-ring-fill {
  stroke-dashoffset: 0;
  animation: progress-animate 2s ease-out forwards;
}

.circular-progress[data-progress="95"] .progress-ring-fill {
  animation: progress-animate-95 2s ease-out forwards;
}

@keyframes progress-animate {
  from { stroke-dashoffset: 440; }
  to { stroke-dashoffset: 0; }
}

@keyframes progress-animate-95 {
  from { stroke-dashoffset: 565; }
  to { stroke-dashoffset: 28; }
}

.circular-large .progress-ring-fill {
  stroke-dasharray: 565;
  stroke-dashoffset: 565;
}

/* Progress Center */
.progress-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(251, 191, 36, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  transition: all 0.4s ease;
}

.stat-icon-large {
  width: 80px;
  height: 80px;
}

.stat-card:hover .stat-icon {
  background: rgba(251, 191, 36, 0.2);
  transform: scale(1.1) rotate(360deg);
}

/* Stat Content */
.stat-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
  gap: 4px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #d6d3d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-number-huge .stat-number {
  font-size: 72px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-size: 32px;
  font-weight: 700;
  color: #fbbf24;
}

.stat-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-title-large {
  font-size: 28px;
}

.stat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #a8a29e;
  margin: 0 0 20px;
}

/* Stat Bar */
.stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  width: var(--fill, 0%);
  border-radius: 3px;
  transition: width 2s ease-out;
  animation: bar-glow 2s ease-in-out infinite;
}

.stat-bar-green {
  background: linear-gradient(90deg, #34d399, #10b981);
}

.stat-bar-gradient {
  background: linear-gradient(90deg, #c62828, #f59e0b, #fbbf24);
}

.stat-bar-pink {
  background: linear-gradient(90deg, #f472b6, #ec4899);
}

@keyframes bar-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(251, 191, 36, 0); }
  50% { box-shadow: 0 0 12px rgba(251, 191, 36, 0.6); }
}

/* Mini Tags */
.stat-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.mini-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.stat-card:hover .mini-tag {
  background: rgba(251, 191, 36, 0.2);
  transform: translateY(-2px);
}

/* Stats Footer */
.stats-footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-note {
  font-size: 13px;
  color: #78716c;
  font-style: italic;
  margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

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

  .stat-hero {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .benefits-modern {
    padding: 80px 0;
  }

  .benefits-header-modern {
    margin-bottom: 60px;
  }

  .benefits-title-modern {
    font-size: 42px;
  }

  .benefits-subtitle-modern {
    font-size: 18px;
  }

  .stats-dashboard {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-hero {
    grid-column: span 1;
  }

  .stat-card {
    padding: 32px 24px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-number-huge .stat-number {
    font-size: 56px;
  }

  .stat-title {
    font-size: 18px;
  }

  .stat-title-large {
    font-size: 22px;
  }

  .circular-progress svg {
    width: 140px;
    height: 140px;
  }

  .circular-large svg {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .benefits-title-modern {
    font-size: 36px;
  }

  .header-label {
    font-size: 10px;
    padding: 6px 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-number-huge .stat-number {
    font-size: 48px;
  }

  .stat-suffix {
    font-size: 24px;
  }

  .circular-progress svg {
    width: 120px;
    height: 120px;
  }

  .circular-large svg {
    width: 160px;
    height: 160px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
  }

  .stat-icon svg {
    width: 30px;
    height: 30px;
  }
}

/* Animation on scroll */
@keyframes statCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.stat-card {
  animation: statCardFadeIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Number Counter Animation */
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat-number {
  animation: countUp 0.6s ease-out forwards;
}

/* ============================================
   WHY CHOOSE US - FUNKY COLORFUL REDESIGN
   ============================================ */

/* Section Base */
.benefits-funky {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #fef3c7 25%, #dbeafe 50%, #fce7f3 75%, #fff5f5 100%);
  overflow: hidden;
}

/* Funky Shapes Background */
.funky-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.15;
  animation: shape-float 15s ease-in-out infinite;
}

.shape-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, #fbbf24, #f59e0b);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 180px solid #ec4899;
  top: 60%;
  right: 10%;
  animation-delay: 3s;
}

.shape-square {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  transform: rotate(45deg);
  bottom: 15%;
  left: 15%;
  animation-delay: 6s;
}

.shape-zigzag {
  width: 180px;
  height: 20px;
  background: repeating-linear-gradient(
    45deg,
    #10b981,
    #10b981 20px,
    transparent 20px,
    transparent 40px
  );
  top: 30%;
  right: 20%;
  animation-delay: 9s;
}

.shape-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #c62828 20%, transparent 20%);
  background-size: 30px 30px;
  bottom: 25%;
  right: 8%;
  animation-delay: 12s;
}

@keyframes shape-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -40px) rotate(120deg); }
  66% { transform: translate(-40px, 40px) rotate(240deg); }
}

.benefits-funky .container {
  position: relative;
  z-index: 1;
}

/* Header */
.benefits-header-funky {
  text-align: center;
  margin-bottom: 80px;
}

.funky-badge {
  display: inline-block;
  padding: 12px 32px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1816;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 
    0 8px 0 #c62828,
    0 8px 24px rgba(198, 40, 40, 0.4);
  transform: rotate(-3deg);
  margin-bottom: 32px;
  animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}

.benefits-title-funky {
  font-size: 64px;
  font-weight: 900;
  color: #1a1816;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: -2px;
}

.word-pop {
  display: inline-block;
  background: linear-gradient(135deg, #ec4899, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pop-scale 3s ease-in-out infinite;
}

.word-wiggle {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: wiggle-rotate 3s ease-in-out infinite;
}

@keyframes pop-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

.benefits-subtitle-funky {
  font-size: 22px;
  color: #44403c;
  font-weight: 600;
  font-style: italic;
}

/* Funky Stats Grid */
.funky-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

/* Base Funky Card */
.funky-card {
  position: relative;
  background: white;
  border-radius: 32px;
  padding: 48px 32px 40px;
  text-align: center;
  border: 6px solid #1a1816;
  box-shadow: 
    12px 12px 0 #1a1816;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  cursor: pointer;
}

.funky-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 
    16px 16px 0 #1a1816;
}

/* Card Patterns */
.card-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
}

.pattern-1 {
  background: repeating-linear-gradient(
    45deg,
    #fbbf24,
    #fbbf24 10px,
    transparent 10px,
    transparent 20px
  );
}

.pattern-2 {
  background: repeating-linear-gradient(
    -45deg,
    #10b981,
    #10b981 10px,
    transparent 10px,
    transparent 20px
  );
}

.pattern-3 {
  background-image: radial-gradient(circle, #ec4899 2px, transparent 2px);
  background-size: 24px 24px;
}

.pattern-4 {
  background: repeating-linear-gradient(
    90deg,
    #3b82f6,
    #3b82f6 10px,
    transparent 10px,
    transparent 20px
  );
}

/* Card Stickers */
.card-sticker {
  position: absolute;
  top: -16px;
  right: 24px;
  font-size: 48px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
  animation: sticker-spin 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes sticker-spin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* Color Themes */
.card-yellow {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #f59e0b;
}

.card-yellow:hover {
  box-shadow: 16px 16px 0 #f59e0b;
}

.card-green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  border-color: #10b981;
}

.card-green:hover {
  box-shadow: 16px 16px 0 #10b981;
}

.card-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  border-color: #ec4899;
}

.card-pink:hover {
  box-shadow: 16px 16px 0 #ec4899;
}

.card-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-color: #3b82f6;
}

.card-blue:hover {
  box-shadow: 16px 16px 0 #3b82f6;
}

/* Mega Card (Customers) */
.card-mega {
  padding: 48px 32px 40px;
}

.mega-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 28px;
  background: linear-gradient(135deg, #c62828, #dc2626);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(198, 40, 40, 0.4);
  z-index: 3;
  animation: mega-pulse 2s ease-in-out infinite;
}

@keyframes mega-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.05); }
}

/* Funky Icon */
.funky-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid currentColor;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.icon-large {
  width: 120px;
  height: 120px;
}

.icon-yellow { color: #f59e0b; }
.icon-green { color: #10b981; }
.icon-pink { color: #ec4899; }
.icon-blue { color: #3b82f6; }

.funky-card:hover .funky-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.4);
}

.funky-icon svg {
  width: 50px;
  height: 50px;
}

.icon-large svg {
  width: 60px;
  height: 60px;
}

/* Funky Numbers */
.funky-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 20px;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.funky-number {
  font-size: 72px;
  font-weight: 900;
  color: #1a1816;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.number-mega .funky-number {
  font-size: 72px;
}

.funky-plus,
.funky-percent {
  font-size: 40px;
  font-weight: 900;
  color: #c62828;
}

/* Funky Title & Description */
.funky-title {
  font-size: 24px;
  font-weight: 900;
  color: #1a1816;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.title-large {
  font-size: 24px;
}

.funky-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #44403c;
  margin: 0 0 24px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Funky Badge Small */
.funky-badge-sm {
  display: inline-block;
  padding: 8px 20px;
  background: #1a1816;
  color: #fbbf24;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transform: rotate(-2deg);
  position: relative;
  z-index: 1;
}

/* Fun Tags */
.fun-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.fun-tag {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 3px solid #1a1816;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  color: #1a1816;
  transition: all 0.3s ease;
}

.funky-card:hover .fun-tag {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 4px 4px 0 #1a1816;
}

/* Funky Footer */
.funky-footer {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 32px;
  border: 6px solid #1a1816;
  box-shadow: 8px 8px 0 #1a1816;
  transform: rotate(-1deg);
}

.footer-emoji {
  font-size: 48px;
  margin-bottom: 16px;
  animation: emoji-dance 2s ease-in-out infinite;
}

@keyframes emoji-dance {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(-10deg); }
  75% { transform: scale(1.1) rotate(10deg); }
}

.footer-text {
  font-size: 24px;
  font-weight: 900;
  color: #1a1816;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .funky-stats-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .benefits-funky {
    padding: 80px 0;
  }

  .benefits-header-funky {
    margin-bottom: 60px;
  }

  .benefits-title-funky {
    font-size: 42px;
  }

  .benefits-subtitle-funky {
    font-size: 18px;
  }

  .funky-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .funky-card {
    padding: 40px 24px 32px;
  }

  .funky-number {
    font-size: 56px;
  }

  .funky-title {
    font-size: 20px;
  }

  .title-large {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .benefits-title-funky {
    font-size: 36px;
  }

  .funky-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .funky-badge {
    font-size: 12px;
    padding: 10px 24px;
  }

  .funky-icon {
    width: 80px;
    height: 80px;
  }

  .icon-large {
    width: 100px;
    height: 100px;
  }

  .funky-icon svg {
    width: 40px;
    height: 40px;
  }

  .funky-number {
    font-size: 48px;
  }

  .number-mega .funky-number {
    font-size: 64px;
  }

  .funky-plus,
  .funky-percent {
    font-size: 32px;
  }
}

/* ============================================
   DARK MODE SUPPORT
   ============================================ */

body.dark-mode .benefits-funky {
  background: linear-gradient(135deg, #2d1b1e 0%, #2d2311 25%, #1e2d3d 50%, #2d1e2d 75%, #2d1b1e 100%);
}

body.dark-mode .funky-shapes .shape {
  opacity: 0.08;
}

body.dark-mode .benefits-title-funky {
  color: #f5f5f4;
}

body.dark-mode .benefits-subtitle-funky {
  color: #d6d3d1;
}

body.dark-mode .funky-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border-color: currentColor;
}

body.dark-mode .card-yellow { border-color: #fbbf24; }
body.dark-mode .card-green { border-color: #10b981; }
body.dark-mode .card-pink { border-color: #ec4899; }
body.dark-mode .card-blue { border-color: #3b82f6; }

body.dark-mode .funky-number {
  color: #f5f5f4;
}

body.dark-mode .funky-title {
  color: #f5f5f4;
}

body.dark-mode .funky-desc {
  color: #d6d3d1;
}

body.dark-mode .fun-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #f5f5f4;
}

body.dark-mode .funky-footer {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
  border-color: #fbbf24;
}

body.dark-mode .footer-text {
  color: #fbbf24;
}

/* Animation on scroll */
@keyframes funkySlideIn {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.9) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

.funky-card {
  animation: funkySlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.funky-card:nth-child(1) { animation-delay: 0.1s; }
.funky-card:nth-child(2) { animation-delay: 0.2s; }
.funky-card:nth-child(3) { animation-delay: 0.3s; }
.funky-card:nth-child(4) { animation-delay: 0.4s; }
/* ============================================
   VELAVAH HERO SECTION - Funky Fresh Edition
   Matching "Why We Rock" & "Pairings" Aesthetic
   ============================================ */

/* === FUNKY COLOR PALETTE === */
:root {
  --funky-red: #ff5252;
  --funky-orange: #ff6b35;
  --funky-yellow: #fbbf24;
  --funky-green: #10b981;
  --funky-blue: #3b82f6;
  --funky-pink: #ec4899;
  --funky-purple: #a855f7;
  --brand-red: #c62828;
  --brand-orange: #e65100;
  --cream-bg: #fdf8f4;
}

/* === HERO CONTAINER === */
.hero-funky {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5eb 0%, #ffecd1 50%, #fdf8f4 100%);
  overflow: hidden;
  padding: 140px 20px 100px;
}

/* === FUNKY BACKGROUND SHAPES === */
.hero-funky-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.funky-shape {
  position: absolute;
  opacity: 0.15;
}

/* Blobs */
.shape-blob {
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  animation: blobMorph 8s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--funky-red), var(--funky-orange));
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--funky-yellow), var(--funky-orange));
  bottom: -80px;
  right: -80px;
  animation-delay: -3s;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 40% 60% 50% 50% / 60% 30% 70% 40%;
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    border-radius: 50% 50% 40% 60% / 50% 60% 40% 50%;
    transform: rotate(180deg) scale(0.9);
  }
  75% {
    border-radius: 60% 40% 60% 40% / 40% 50% 60% 50%;
    transform: rotate(270deg) scale(1.05);
  }
}

/* Circles */
.shape-circle {
  border-radius: 50%;
  border: 3px dashed;
  animation: spinSlow 20s linear infinite;
}

.circle-1 {
  width: 200px;
  height: 200px;
  border-color: var(--funky-pink);
  top: 15%;
  right: 10%;
}

.circle-2 {
  width: 150px;
  height: 150px;
  border-color: var(--funky-green);
  bottom: 20%;
  left: 8%;
  animation-direction: reverse;
}

/* Squares */
.shape-square {
  width: 100px;
  height: 100px;
  border: 3px solid;
  transform: rotate(45deg);
  animation: spinSlow 15s linear infinite;
}

.square-1 {
  border-color: var(--funky-blue);
  top: 40%;
  left: 5%;
}

/* Stars */
.shape-star {
  font-size: 80px;
  color: var(--funky-yellow);
  animation: twinkle 2s ease-in-out infinite;
}

.star-1 {
  top: 20%;
  left: 15%;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.2); }
}

/* Dots Pattern */
.shape-dots {
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--funky-purple) 2px, transparent 2px);
  background-size: 20px 20px;
  top: 60%;
  right: 15%;
  animation: float 6s ease-in-out infinite;
}

/* Zigzag */
.shape-zigzag {
  width: 100px;
  height: 50px;
  background: linear-gradient(135deg, var(--funky-orange) 25%, transparent 25%) -10px 0,
              linear-gradient(225deg, var(--funky-orange) 25%, transparent 25%) -10px 0,
              linear-gradient(315deg, var(--funky-orange) 25%, transparent 25%),
              linear-gradient(45deg, var(--funky-orange) 25%, transparent 25%);
  background-size: 20px 20px;
  top: 70%;
  left: 20%;
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* === HERO CONTAINER === */
.hero-funky-container {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* === HERO CONTENT === */
.hero-funky-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* === STICKER BADGE === */
.hero-sticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: #fff;
  border: 3px solid var(--brand-red);
  border-radius: 50px;
  box-shadow:
    4px 4px 0 var(--brand-red),
    0 8px 24px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
  width: fit-content;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--brand-red);
  animation: stickerBounce 3s ease-in-out infinite;
}

.sticker-emoji {
  font-size: 20px;
  animation: emojiPulse 2s ease-in-out infinite;
}

@keyframes stickerBounce {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-5px); }
}

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

/* === MAIN TITLE - FUNKY STYLE === */
.hero-funky-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(36px, 9vw, 100px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.title-line {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Animated Words */
.word-bounce {
  display: inline-block;
  color: var(--brand-red);
  animation: wordBounce 2s ease-in-out infinite;
  text-shadow: 4px 4px 0 rgba(198, 40, 40, 0.2);
}

.word-pop {
  display: inline-block;
  color: var(--funky-orange);
  animation: wordPop 2s ease-in-out infinite 0.2s;
  text-shadow: 3px 3px 0 rgba(255, 107, 53, 0.3);
}

.word-wiggle {
  display: inline-block;
  color: var(--funky-yellow);
  animation: wordWiggle 2s ease-in-out infinite 0.4s;
  text-shadow: 3px 3px 0 rgba(251, 191, 36, 0.3);
}

.word-spin {
  display: inline-block;
  color: var(--funky-green);
  animation: wordSpin 3s ease-in-out infinite 0.6s;
  text-shadow: 3px 3px 0 rgba(16, 185, 129, 0.3);
}

.word-rainbow {
  display: inline-block;
  background: linear-gradient(135deg,
    var(--funky-red) 0%,
    var(--funky-orange) 20%,
    var(--funky-yellow) 40%,
    var(--funky-green) 60%,
    var(--funky-blue) 80%,
    var(--funky-purple) 100%
  );
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowShift 3s linear infinite;
  text-shadow: none;
}

.emoji-float {
  display: inline-block;
  font-size: 0.9em;
  animation: emojiFloat 3s ease-in-out infinite;
}

@keyframes wordBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes wordPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

@keyframes wordSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg); }
}

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

@keyframes emojiFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-10deg); }
  75% { transform: translateY(-5px) rotate(10deg); }
}

/* === SUBTITLE === */
.hero-funky-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: #44403c;
  margin: 0;
  max-width: 550px;
}

.hero-funky-subtitle strong {
  color: var(--brand-red);
  font-weight: 800;
}

.hero-funky-subtitle em {
  color: var(--funky-orange);
  font-style: normal;
  font-weight: 700;
}

.highlight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fff5eb, #ffecd1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 2px solid var(--funky-yellow);
  font-weight: 700;
  color: var(--brand-orange);
  margin-left: 4px;
  font-size: 0.9em;
}

/* === CTA BUTTONS === */
.hero-funky-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-funky {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: visible;
}

.btn-funky-primary {
  background: var(--brand-red);
  color: #fff;
  border: 3px solid var(--brand-red);
  box-shadow:
    0 6px 0 var(--brand-orange),
    0 10px 20px rgba(198, 40, 40, 0.3);
}

.btn-funky-primary:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 0 var(--brand-orange),
    0 16px 30px rgba(198, 40, 40, 0.4);
}

.btn-funky-primary:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 0 var(--brand-orange),
    0 4px 10px rgba(198, 40, 40, 0.3);
}

.btn-funky-outline {
  background: #fff;
  color: var(--brand-red);
  border: 3px solid var(--brand-red);
  box-shadow: 0 6px 0 rgba(198, 40, 40, 0.2);
}

.btn-funky-outline:hover {
  transform: translateY(-4px);
  background: #fff5eb;
  box-shadow: 0 10px 0 rgba(198, 40, 40, 0.3);
}

.btn-funky-outline:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(198, 40, 40, 0.2);
}

.btn-emoji {
  font-size: 20px;
  animation: emojiPulse 2s ease-in-out infinite;
}

.btn-arrow {
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.3s ease;
}

.btn-funky:hover .btn-arrow {
  transform: translateX(4px);
}

/* === MINI STATS === */
.hero-mini-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mini-stat {
  position: relative;
  background: #fff;
  border: 3px solid;
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 4px 0 currentColor;
  min-width: 100px;
  text-align: center;
  transform: rotate(-1deg);
  transition: all 0.3s ease;
}

.mini-stat:hover {
  transform: rotate(-1deg) translateY(-4px);
  box-shadow: 0 8px 0 currentColor;
}

.stat-red {
  border-color: var(--funky-red);
  color: var(--funky-red);
}

.stat-orange {
  border-color: var(--funky-orange);
  color: var(--funky-orange);
  transform: rotate(1deg);
}

.stat-yellow {
  border-color: var(--funky-yellow);
  color: var(--funky-yellow);
  transform: rotate(-2deg);
}

.mini-stat-sticker {
  position: absolute;
  top: -12px;
  right: -12px;
  font-size: 24px;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  animation: stickerBounce 2s ease-in-out infinite;
}

.mini-stat-num {
  font-family: 'Impact', sans-serif;
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.mini-stat-label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #78716c;
}

/* === HERO VISUAL === */
.hero-funky-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

/* === BOTTLE CARD === */
.hero-bottle-card {
  position: relative;
  background: #fff;
  border: 4px solid var(--brand-red);
  border-radius: 32px;
  padding: 40px;
  box-shadow:
    8px 8px 0 var(--brand-orange),
    0 20px 50px rgba(0, 0, 0, 0.15);
  transform: rotate(2deg);
  animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-20px); }
}

/* Washi Tape */
.washi-tape {
  position: absolute;
  left: -10px;
  right: -10px;
  height: 30px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 107, 53, 0.3),
    rgba(255, 107, 53, 0.3) 10px,
    rgba(251, 191, 36, 0.3) 10px,
    rgba(251, 191, 36, 0.3) 20px
  );
  border: 2px solid rgba(198, 40, 40, 0.3);
  transform: rotate(-1deg);
  z-index: 10;
}

.tape-top {
  top: 40px;
}

.tape-bottom {
  bottom: 40px;
  transform: rotate(1deg);
}

/* Floating Stickers */
.floating-sticker {
  position: absolute;
  font-size: 48px;
  animation: stickerFloat 4s ease-in-out infinite;
  z-index: 20;
}

.sticker-1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.sticker-2 {
  top: -10px;
  right: -20px;
  animation-delay: -1.5s;
}

.sticker-3 {
  bottom: -20px;
  left: -10px;
  animation-delay: -3s;
}

@keyframes stickerFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(-10deg); }
  75% { transform: translateY(-5px) rotate(10deg); }
}

/* Corner Badges */
.corner-badge {
  position: absolute;
  padding: 8px 20px;
  background: #fff;
  border: 3px solid;
  border-radius: 20px;
  font-family: 'Impact', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0 currentColor;
  transform: rotate(-8deg);
  z-index: 15;
}

.badge-top-left {
  top: -15px;
  left: 20px;
  border-color: var(--funky-green);
  color: var(--funky-green);
}

.badge-top-right {
  top: -15px;
  right: 20px;
  border-color: var(--funky-red);
  color: var(--funky-red);
  transform: rotate(8deg);
}

/* Bottle Wrapper */
.bottle-wrapper {
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.bottle-shine-effect {
  position: absolute;
  top: 10%;
  left: 10%;
  right: 40%;
  height: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-bottle-img {
  width: 100%;
  height: auto;
  max-width: 350px;
  display: block;
  animation: bottleWiggle 4s ease-in-out infinite;
}

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

/* Bottom Badge */
.hero-badge-bottom {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: 4px solid #fff;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: 'Impact', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  z-index: 20;
}

.badge-emoji {
  font-size: 20px;
  animation: emojiPulse 2s ease-in-out infinite;
}

/* Decorative Elements */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 4px dashed;
  animation: spinSlow 20s linear infinite;
}

.deco-1 {
  width: 150px;
  height: 150px;
  border-color: var(--funky-pink);
  top: -30px;
  right: -40px;
  opacity: 0.3;
}

.deco-2 {
  width: 100px;
  height: 100px;
  border-color: var(--funky-blue);
  bottom: -20px;
  left: -30px;
  opacity: 0.3;
  animation-direction: reverse;
}

.deco-star {
  position: absolute;
  font-size: 40px;
  color: var(--funky-yellow);
  animation: twinkle 2s ease-in-out infinite;
}

.deco-3 {
  top: 50px;
  left: -50px;
}

.deco-4 {
  bottom: 60px;
  right: -50px;
  animation-delay: -1s;
}

/* === WAVE DIVIDER === */
.hero-wave-funky {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 5;
}

.hero-wave-funky svg {
  width: 100%;
  height: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .hero-funky-container {
    gap: 60px;
  }

  .hero-funky-title {
    font-size: clamp(44px, 8vw, 80px);
  }
}

@media (max-width: 968px) {
  .hero-funky {
    padding: 120px 20px 80px;
  }

  .hero-funky-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-funky-content {
    align-items: center;
  }

  .hero-sticker-badge {
    align-self: center;
  }

  .title-line {
    justify-content: center;
  }

  .hero-funky-subtitle {
    text-align: center;
  }

  .hero-funky-btns {
    justify-content: center;
  }

  .hero-mini-stats {
    justify-content: center;
  }

  .hero-funky-visual {
    min-height: 500px;
  }

  .hero-bottle-card {
    padding: 30px;
  }

  .corner-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
}

@media (max-width: 768px) {
  .hero-funky {
    padding: 100px 16px 60px;
  }

  .hero-funky-title {
    font-size: clamp(36px, 10vw, 60px);
    line-height: 1.25;
    gap: 6px;
  }

  .hero-funky-subtitle {
    font-size: 16px;
  }

  .btn-funky {
    padding: 14px 28px;
    font-size: 14px;
  }

  .hero-mini-stats {
    gap: 12px;
  }

  .mini-stat {
    min-width: 90px;
    padding: 12px 20px;
  }

  .mini-stat-num {
    font-size: 32px;
  }

  .hero-bottle-card {
    padding: 20px;
    box-shadow:
      6px 6px 0 var(--brand-orange),
      0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .washi-tape {
    height: 20px;
  }

  .floating-sticker {
    font-size: 32px;
  }

  .hero-bottle-img {
    max-width: 280px;
  }

  .deco-circle,
  .deco-star {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-funky-title {
    font-size: clamp(26px, 8vw, 32px);
    line-height: 1.3;
    gap: 4px;
  }

  .title-line {
    gap: 6px;
  }

  .hero-funky-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-funky {
    width: 100%;
    justify-content: center;
  }

  .hero-mini-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .mini-stat {
    flex: unset;
    min-width: unset;
    padding: 14px 8px;
  }

  .mini-stat-sticker {
    width: 28px;
    height: 28px;
    font-size: 18px;
    top: -10px;
    right: -8px;
  }

  .hero-bottle-img {
    max-width: 240px;
  }

  .hero-badge-bottom {
    font-size: 13px;
    padding: 10px 20px;
  }
}

/* ── 360px catch-all for hero-funky ── */
@media (max-width: 360px) {
  .hero-funky {
    padding: 90px 12px 50px;
  }
  .hero-funky-title {
    font-size: 24px;
    letter-spacing: -0.01em;
    line-height: 1.35;
    gap: 2px;
  }
  .hero-sticker-badge {
    font-size: 12px;
    padding: 8px 16px;
  }
  .hero-funky-subtitle {
    font-size: 14px;
  }
  .hero-mini-stats {
    gap: 6px;
  }
  .mini-stat {
    padding: 10px 6px;
  }
  .mini-stat-num {
    font-size: 16px;
  }
  .mini-stat-label {
    font-size: 9px;
  }
  .mini-stat-sticker {
    display: none;
  }
  .hero-bottle-img {
    max-width: 200px;
  }
  .highlight-badge {
    font-size: 12px;
    padding: 4px 10px;
  }
  /* Flavors */
  .flavors-title-funky {
    font-size: 28px;
  }
  .flavors-funky-badge {
    font-size: 12px;
    padding: 8px 20px;
  }
  .flavors-subtitle-funky {
    font-size: 16px;
  }
  .flavor-funky-card {
    padding: 36px 16px 28px;
  }
  /* Benefits */
  .benefits-title-funky {
    font-size: 30px;
  }
  .funky-number {
    font-size: 40px;
  }
  .funky-card {
    padding: 36px 20px 28px;
  }
  /* Testimonials */
  .testimonials-title-new {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .testimonial-card-new {
    padding: 28px 18px 20px;
  }
  .quote-mark-large {
    font-size: 80px;
  }
  /* Quote mark responsive */
  .quote-mark-large {
    font-size: 80px;
  }
  /* FAQ */
  .faq-funky-title {
    font-size: 26px;
  }
  .faq-card {
    padding: 16px;
  }
  /* Contact */
  .section-title {
    font-size: 28px;
  }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
  }
}

/* ============================================
   ABOUT SECTION - Funky Fresh Edition
   ============================================ */

.about-funky {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff5eb 0%, #ffecd1 50%, #fdf8f4 100%);
  overflow: hidden;
}

/* === BACKGROUND SHAPES === */
.about-funky-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.about-blob-1 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 82, 82, 0.1), rgba(255, 107, 53, 0.1));
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  position: absolute;
  top: -80px;
  right: -80px;
  animation: blobMorph 10s ease-in-out infinite;
}

.about-blob-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(245, 158, 11, 0.1));
  border-radius: 50% 50% 40% 60% / 60% 30% 70% 40%;
  position: absolute;
  bottom: -60px;
  left: -60px;
  animation: blobMorph 12s ease-in-out infinite -3s;
}

.about-circle-1 {
  width: 180px;
  height: 180px;
  border: 3px dashed var(--funky-pink);
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: 5%;
  opacity: 0.15;
  animation: spinSlow 20s linear infinite;
}

.about-star-1,
.about-star-2 {
  position: absolute;
  font-size: 60px;
  color: var(--funky-yellow);
  opacity: 0.15;
  animation: twinkle 3s ease-in-out infinite;
}

.about-star-1 {
  top: 15%;
  right: 10%;
}

.about-star-2 {
  bottom: 20%;
  right: 15%;
  animation-delay: -1.5s;
}

/* === HEADER === */
.about-funky-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #fff;
  border: 3px solid var(--brand-orange);
  border-radius: 50px;
  font-family: 'Impact', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--brand-orange);
  box-shadow: 4px 4px 0 var(--brand-orange);
  transform: rotate(-2deg);
  margin-bottom: 24px;
  animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-5px); }
}

.about-funky-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(32px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--gray-900);
}

.about-funky-title .emoji-pop {
  display: inline-block;
  font-size: 0.9em;
  animation: emojiPulse 2s ease-in-out infinite;
}

/* === GRID === */
.about-funky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 10;
}

/* === PHOTO CARD === */
.about-funky-visual {
  position: relative;
}

.about-photo-card {
  position: relative;
  background: #fff;
  border: 4px solid var(--brand-red);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    8px 8px 0 var(--brand-orange),
    0 20px 50px rgba(0, 0, 0, 0.12);
  transform: rotate(-2deg);
  animation: cardFloat 6s ease-in-out infinite;
}

/* Washi Tape */
.about-tape {
  position: absolute;
  width: 60px;
  height: 25px;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 107, 53, 0.4),
    rgba(255, 107, 53, 0.4) 8px,
    rgba(251, 191, 36, 0.4) 8px,
    rgba(251, 191, 36, 0.4) 16px
  );
  border: 2px solid rgba(198, 40, 40, 0.3);
  z-index: 20;
}

.tape-tl {
  top: -12px;
  left: 20px;
  transform: rotate(-12deg);
}

.tape-tr {
  top: -12px;
  right: 20px;
  transform: rotate(12deg);
}

.tape-bl {
  bottom: -12px;
  left: 30px;
  transform: rotate(8deg);
}

.tape-br {
  bottom: -12px;
  right: 30px;
  transform: rotate(-8deg);
}

/* Stickers */
.about-sticker {
  position: absolute;
  font-size: 40px;
  animation: stickerFloat 4s ease-in-out infinite;
  z-index: 25;
}

.sticker-tl {
  top: -15px;
  left: -15px;
}

.sticker-tr {
  top: -20px;
  right: -15px;
  animation-delay: -1.5s;
}

.sticker-bl {
  bottom: -15px;
  left: -10px;
  animation-delay: -3s;
}

/* Corner Badge */
.about-corner-badge {
  position: absolute;
  top: -15px;
  right: 80px;
  padding: 8px 20px;
  background: var(--funky-green);
  border: 3px solid #fff;
  border-radius: 20px;
  font-family: 'Impact', sans-serif;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  transform: rotate(-8deg);
  z-index: 25;
}

/* Image */
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, #fef2f2, #fff5eb);
  padding: 30px;
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.about-photo-card:hover .about-img {
  transform: scale(1.05);
}

/* Bottom Badge */
.about-bottom-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--funky-red), var(--funky-orange));
  border: 4px solid #fff;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: 'Impact', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  z-index: 25;
}

/* === CONTENT === */
.about-funky-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Story Cards */
.about-story-card {
  background: #fff;
  border: 3px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.about-story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--brand-orange);
}

.story-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.story-emoji {
  font-size: 32px;
  animation: emojiPulse 2s ease-in-out infinite;
}

.story-title {
  font-family: 'Impact', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

.story-text strong {
  color: var(--brand-red);
  font-weight: 800;
}

.story-text em {
  color: var(--funky-orange);
  font-style: normal;
  font-weight: 700;
}

/* === FEATURE CARDS === */
.about-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.feature-card {
  position: relative;
  background: #fff;
  border: 3px solid;
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 4px 0 currentColor;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-card:hover {
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 10px 0 currentColor;
}

.card-red {
  border-color: var(--funky-red);
  color: var(--funky-red);
}

.card-orange {
  border-color: var(--funky-orange);
  color: var(--funky-orange);
}

.card-yellow {
  border-color: var(--funky-yellow);
  color: var(--funky-yellow);
}

.feature-card-sticker {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 28px;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  animation: stickerBounce 2s ease-in-out infinite;
}

.feature-card-icon {
  margin: 0 auto 16px;
  width: fit-content;
}

.feature-card-icon svg {
  stroke: currentColor;
}

.feature-card-title {
  font-family: 'Impact', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: currentColor;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-card-desc {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-600);
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
  .about-funky-grid {
    gap: 60px;
  }

  .about-feature-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 968px) {
  .about-funky {
    padding: 80px 20px;
  }

  .about-funky-header {
    margin-bottom: 60px;
  }

  .about-funky-title {
    font-size: clamp(36px, 8vw, 60px);
  }

  .about-funky-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-photo-card {
    padding: 30px;
    box-shadow:
      6px 6px 0 var(--brand-orange),
      0 15px 40px rgba(0, 0, 0, 0.12);
  }

  .about-feature-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-funky {
    padding: 60px 16px;
  }

  .about-funky-title {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.3;
  }

  .about-photo-card {
    padding: 20px;
  }

  .about-tape {
    width: 50px;
    height: 20px;
  }

  .about-sticker {
    font-size: 32px;
  }

  .about-corner-badge {
    font-size: 10px;
    padding: 6px 16px;
  }

  .about-img-wrap {
    padding: 20px;
  }

  .about-bottom-badge {
    font-size: 12px;
    padding: 10px 20px;
  }

  .about-story-card {
    padding: 20px;
  }

  .story-title {
    font-size: 18px;
  }

  .story-text {
    font-size: 15px;
  }

  .feature-card {
    padding: 20px 16px;
  }
}

@media (max-width: 480px) {
  .about-funky-title {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.35;
  }

  .about-badge {
    font-size: 12px;
    padding: 8px 20px;
  }

  .about-sticker {
    display: none;
  }

  .about-tape {
    display: none;
  }
}

/* ============================================
   FAQ SECTION - Funky Fresh Edition
   ============================================ */

.faq-funky {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #fdf8f4 0%, #fff5eb 50%, #ffecd1 100%);
  overflow: hidden;
}

/* === BACKGROUND SHAPES === */
.faq-funky-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.faq-blob-1 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(168, 85, 247, 0.08));
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  position: absolute;
  top: -100px;
  left: -100px;
  animation: blobMorph 11s ease-in-out infinite;
}

.faq-blob-2 {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(245, 158, 11, 0.08));
  border-radius: 50% 50% 40% 60% / 60% 30% 70% 40%;
  position: absolute;
  bottom: -80px;
  right: -80px;
  animation: blobMorph 13s ease-in-out infinite -4s;
}

.faq-circle-1 {
  width: 160px;
  height: 160px;
  border: 3px dashed var(--funky-green);
  border-radius: 50%;
  position: absolute;
  bottom: 25%;
  left: 8%;
  opacity: 0.12;
  animation: spinSlow 25s linear infinite;
}

.faq-star-1,
.faq-star-2 {
  position: absolute;
  font-size: 70px;
  color: var(--funky-orange);
  opacity: 0.12;
  animation: twinkle 3.5s ease-in-out infinite;
}

.faq-star-1 {
  top: 18%;
  right: 12%;
}

.faq-star-2 {
  bottom: 15%;
  left: 10%;
  animation-delay: -1.8s;
}

/* === HEADER === */
.faq-funky-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 10;
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #fff;
  border: 3px solid var(--funky-blue);
  border-radius: 50px;
  font-family: 'Impact', sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--funky-blue);
  box-shadow: 4px 4px 0 var(--funky-blue);
  transform: rotate(-2deg);
  margin-bottom: 24px;
  animation: badgeBounce 3s ease-in-out infinite;
}

.faq-funky-title {
  font-family: 'Impact', 'Arial Black', sans-serif;
  font-size: clamp(40px, 7vw, 68px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--gray-900);
}

.faq-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* === FAQ CARDS GRID === */
.faq-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
  align-items: start;
}

/* === FAQ CARD === */
.faq-card {
  position: relative;
  background: #fff;
  border: 3px solid;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 6px 0 currentColor;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: rotate(-1deg);
}

.faq-card:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow: 0 12px 0 currentColor;
}

.faq-card.card-red {
  border-color: var(--funky-red);
  color: var(--funky-red);
}

.faq-card.card-orange {
  border-color: var(--funky-orange);
  color: var(--funky-orange);
  transform: rotate(1deg);
}

.faq-card.card-yellow {
  border-color: var(--funky-yellow);
  color: var(--funky-yellow);
  transform: rotate(-2deg);
}

.faq-card.card-green {
  border-color: var(--funky-green);
  color: var(--funky-green);
  transform: rotate(1.5deg);
}

.faq-card.card-blue {
  border-color: var(--funky-blue);
  color: var(--funky-blue);
  transform: rotate(-1.5deg);
}

.faq-card.card-pink {
  border-color: var(--funky-pink);
  color: var(--funky-pink);
  transform: rotate(2deg);
}

/* Sticker */
.faq-card-sticker {
  position: absolute;
  top: -18px;
  right: -18px;
  font-size: 32px;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  animation: stickerBounce 2s ease-in-out infinite;
  z-index: 10;
}

/* Number */
.faq-card-number {
  position: absolute;
  top: -24px;
  left: 20px;
  font-family: 'Impact', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: currentColor;
  background: #fff;
  padding: 6px 16px;
  border: 2px solid currentColor;
  border-radius: 20px;
  z-index: 10;
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.faq-q-text {
  font-family: 'Impact', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 900;
  color: var(--gray-900);
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}

.faq-toggle {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 3px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Impact', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: currentColor;
  transition: all 0.3s ease;
  background: #fff;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg);
  background: currentColor;
  color: #fff;
}

/* Remove native details marker */
.faq-card summary { list-style: none; }
.faq-card summary::-webkit-details-marker { display: none; }

/* Answer */
.faq-answer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px dashed currentColor;
}

.faq-answer p {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

.faq-answer strong {
  color: var(--gray-900);
  font-weight: 800;
}

.faq-answer em {
  color: var(--brand-red);
  font-style: normal;
  font-weight: 700;
}

.faq-answer a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faq-answer a:hover {
  color: var(--brand-orange);
}

/* === CTA === */
.faq-cta {
  text-align: center;
  position: relative;
  z-index: 10;
}

.faq-cta-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--gray-700);
  margin: 0 0 24px;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .faq-funky {
    padding: 80px 20px;
  }

  .faq-funky-header {
    margin-bottom: 60px;
  }

  .faq-funky-title {
    font-size: clamp(36px, 8vw, 56px);
  }

  .faq-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-card {
    padding: 24px;
  }

  .faq-q-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .faq-funky {
    padding: 60px 16px;
  }

  .faq-funky-title {
    font-size: 32px;
  }

  .faq-badge {
    font-size: 12px;
    padding: 8px 20px;
  }

  .faq-card {
    padding: 20px;
  }

  .faq-card-sticker {
    font-size: 28px;
    width: 44px;
    height: 44px;
    top: -14px;
    right: -14px;
  }

  .faq-card-number {
    font-size: 16px;
    padding: 5px 14px;
  }

  .faq-q-text {
    font-size: 17px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-cta-text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .faq-funky-title {
    font-size: 28px;
  }

  .faq-card {
    padding: 18px;
  }

  .faq-q-text {
    font-size: 16px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}
/* ============================================
   VELAVAH UI FIXES - Enhanced Navbar Visibility
   ============================================ */

/* === NAVBAR DEPTH & VISIBILITY ENHANCEMENT === */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  box-shadow:
    0 2px 20px rgba(198, 40, 40, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(198, 40, 40, 0.1) !important;
  border-bottom: 1px solid rgba(198, 40, 40, 0.15);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow:
    0 4px 30px rgba(198, 40, 40, 0.12),
    0 2px 10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
  border-bottom: 2px solid rgba(198, 40, 40, 0.2);
}

.topbar {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-orange) 100%) !important;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* Make topbar text white for better contrast */
.topbar-item,
.topbar-tagline {
  color: rgba(255, 255, 255, 0.95) !important;
}

.topbar-item:hover {
  color: #fff !important;
}

.topbar-divider {
  background: rgba(255, 255, 255, 0.3) !important;
}

.topbar-social a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.topbar-social a:hover {
  color: #fff !important;
}

/* === LOGO VISIBILITY === */
.logo-text {
  color: var(--brand-red) !important;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(198, 40, 40, 0.1);
}

.logo-icon {
  background: rgba(198, 40, 40, 0.1) !important;
  border: 2px solid rgba(198, 40, 40, 0.2) !important;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.15);
}

/* === NAV LINKS VISIBILITY === */
.nav-link {
  color: var(--gray-700) !important;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red) !important;
}

/* === THEME TOGGLE & SOCIAL ICONS === */
.theme-toggle,
.social-icon {
  background: rgba(198, 40, 40, 0.08);
  border-radius: 8px;
  padding: 8px;
}

.theme-toggle:hover,
.social-icon:hover {
  background: rgba(198, 40, 40, 0.15);
}

/* === HAMBURGER VISIBILITY === */
.hamburger {
  background: var(--brand-red);
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.3);
}

.hamburger span {
  background: #fff;
}

/* === MOBILE MENU === */
@media (max-width: 968px) {
  .nav-links {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  }

  .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(198, 40, 40, 0.1);
  }
}

/* === SECTION SPACING === */
.hero-funky,
#home {
  padding-top: 140px;
  min-height: 100vh;
}

@media (max-width: 968px) {
  .hero-funky,
  #home {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .hero-funky,
  #home {
    padding-top: 100px;
  }
}

/* === SMOOTH SCROLLING === */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

/* === BUTTON FIXES === */
.btn-funky-primary .btn-text {
  color: #fff !important;
}

.btn-funky-outline .btn-text {
  color: var(--brand-red) !important;
}

/* === FAQ LINKS === */
.faq-answer a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--brand-orange);
}

/* === CARD SPACING ON MOBILE === */
@media (max-width: 968px) {
  .faq-card,
  .feature-card {
    transform: rotate(0deg) !important;
    margin: 12px 0;
  }
}

/* === ACCESSIBILITY: FOCUS STATES === */
.btn-funky:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 4px;
}

/* === TEXT SELECTION === */
::selection {
  background: var(--brand-red);
  color: #fff;
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === PERFORMANCE: GPU ACCELERATION === */
.hero-bottle-card,
.about-photo-card,
.faq-card,
.navbar {
  transform: translateZ(0);
  will-change: auto;
}

/* === PREVENT HORIZONTAL SCROLL === */
body {
  overflow-x: hidden;
}

/* === IMAGE LOADING === */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === EMOJI RENDERING === */
.emoji-float,
.emoji-pop,
.badge-emoji,
.sticker-emoji,
.btn-emoji {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
