/* ============================================================
   GILBERT ICE CREAM — main.css
   Premium Modern Ice Cream Brand Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── 1. CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Brand Colors */
  --pink:         #F9D2DC;
  --blue:         #8AD6F1;
  --mint:         #BEE5E6;
  --purple:       #DD98C3;

  /* Dark Variants */
  --pink-dark:    #e8a0b8;
  --blue-dark:    #4bbfe0;
  --mint-dark:    #7dc8cb;
  --purple-dark:  #c06fa8;

  /* Extra Dark */
  --pink-xdark:   #c0607e;
  --blue-xdark:   #2a9fc4;
  --purple-xdark: #9e448a;

  /* Light Variants */
  --pink-light:   #fef0f4;
  --blue-light:   #d8f3fc;
  --mint-light:   #e8f9f9;
  --purple-light: #f5e4f0;

  /* Neutrals */
  --white:        #ffffff;
  --off-white:    #fdfcff;
  --gray-50:      #f9f9fb;
  --gray-100:     #f2f2f6;
  --gray-200:     #e4e4ec;
  --gray-400:     #9898b0;
  --text-dark:    #1e1e2e;
  --text-med:     #4e4e6a;
  --text-light:   #8a8aa8;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #F9D2DC 0%, #DD98C3 45%, #8AD6F1 100%);
  --grad-pink:    linear-gradient(135deg, #F9D2DC, #DD98C3);
  --grad-blue:    linear-gradient(135deg, #8AD6F1, #BEE5E6);
  --grad-warm:    linear-gradient(135deg, #fce4ec, #DD98C3);
  --grad-cool:    linear-gradient(135deg, #8AD6F1, #BEE5E6);
  --grad-btn:     linear-gradient(135deg, #DD98C3 0%, #8AD6F1 100%);
  --grad-btn-rev: linear-gradient(135deg, #8AD6F1 0%, #DD98C3 100%);
  --grad-mesh:    linear-gradient(-45deg, #F9D2DC, #DD98C3, #8AD6F1, #BEE5E6);
  --grad-text:    linear-gradient(135deg, #DD98C3 0%, #8AD6F1 100%);
  --grad-card:    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(249,210,220,0.1));

  /* Shadows */
  --shadow-xs:    0 2px 8px rgba(221,152,195,0.12);
  --shadow-sm:    0 4px 16px rgba(221,152,195,0.18);
  --shadow-md:    0 8px 32px rgba(221,152,195,0.22);
  --shadow-lg:    0 16px 56px rgba(221,152,195,0.28);
  --shadow-xl:    0 24px 80px rgba(221,152,195,0.35);
  --shadow-glow:  0 0 40px rgba(221,152,195,0.50);
  --shadow-blue:  0 8px 32px rgba(138,214,241,0.30);
  --shadow-inner: inset 0 2px 12px rgba(221,152,195,0.12);

  /* Border Radius */
  --r-xs:   8px;
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-2xl:  60px;
  --r-full: 9999px;

  /* Spacing */
  --s-xs:   8px;
  --s-sm:   16px;
  --s-md:   24px;
  --s-lg:   40px;
  --s-xl:   64px;
  --s-2xl:  96px;
  --s-3xl:  128px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-med:    0.35s ease;
  --t-slow:   0.60s cubic-bezier(0.16, 1, 0.3, 1);
  --t-bounce: 0.50s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --max-w: 1280px;
  --gutter: clamp(16px, 5vw, 40px);
}

/* ── 2. RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }
input, textarea, select { outline: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka One', 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-pink   { color: var(--purple-dark); }
.text-blue   { color: var(--blue-dark); }
.text-mint   { color: var(--mint-dark); }
.text-center { text-align: center; }
.text-light  { color: var(--text-light); }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-med);
  font-weight: 400;
  line-height: 1.75;
}

/* ── 4. LAYOUT UTILITIES ────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(60px, 8vw, 110px) 0; }
.section-sm { padding: clamp(40px, 5vw, 70px) 0; }
.section-lg { padding: clamp(80px, 10vw, 140px) 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--s-xl);
}

.section-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-light);
  color: var(--purple-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  border: 1px solid var(--pink);
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-med); font-size: 1.05rem; }

.grid { display: grid; gap: var(--s-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: var(--s-sm); }
.gap-md { gap: var(--s-md); }

/* ── 5. BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::before { transform: translateX(100%); }

.btn-primary {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(221,152,195,0);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), 0 0 30px rgba(221,152,195,0.5);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--r-full);
  background: var(--grad-btn);
  z-index: -1;
}
.btn-outline:hover {
  background: var(--grad-btn);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: var(--white);
  color: var(--purple-dark);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  background: var(--pink-light);
}

.btn-lg { padding: 17px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.btn-group { display: flex; gap: var(--s-sm); flex-wrap: wrap; align-items: center; }

/* ── 6. NAVIGATION ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 30px rgba(221,152,195,0.15);
  border-bottom: 1px solid rgba(249,210,220,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-md);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-bounce);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-8deg) scale(1.1); }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text .brand { font-family: 'Fredoka One', sans-serif; font-size: 1.2rem; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-logo-text .sub   { font-size: 0.65rem; color: var(--text-light); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

.navbar.scrolled .nav-logo-text .brand { -webkit-text-fill-color: unset; background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: all var(--t-fast);
  position: relative;
}

.navbar:not(.scrolled) .nav-link { color: var(--text-dark); }

.nav-link:hover,
.nav-link.active {
  background: var(--pink-light);
  color: var(--purple-dark);
}

.nav-link.active {
  background: var(--grad-btn);
  color: var(--white);
  box-shadow: var(--shadow-xs);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: var(--pink-light);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

.nav-mobile-cta-item { display: none; }

/* ── 7. HERO SECTION ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.30) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.20) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-text { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 1.08;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.hero-title .accent {
  display: block;
  background: linear-gradient(135deg, #DD98C3 0%, #8AD6F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-med);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-actions { margin-bottom: 48px; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
  margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }

.hero-social-text small {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
}
.hero-social-text strong { font-size: 0.88rem; color: var(--text-dark); }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-truck-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.hero-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(221,152,195,0.4), transparent 70%);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  z-index: 0;
}

.hero-truck-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(221,152,195,0.4));
  animation: float 4s ease-in-out infinite;
}

/* Floating decorations */
.float-el {
  position: absolute;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
  font-size: 2rem;
}

.float-el:nth-child(1)  { top: 5%;  right: 10%; animation-delay: 0s;    font-size: 2.4rem; }
.float-el:nth-child(2)  { top: 20%; right: 0%;  animation-delay: 0.5s;  font-size: 1.6rem; }
.float-el:nth-child(3)  { bottom: 25%; right: 5%; animation-delay: 1s;  font-size: 2rem; }
.float-el:nth-child(4)  { top: 40%; left: 3%;   animation-delay: 1.5s; font-size: 1.4rem; }
.float-el:nth-child(5)  { bottom: 10%; left: 8%; animation-delay: 0.8s; font-size: 2.2rem; }

.hero-scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-med);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 28px; height: 28px;
  border: 2px solid rgba(78,78,106,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 1.6s ease-in-out infinite;
}

/* ── 8. STATS SECTION ────────────────────────────────────────── */
.stats-section {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: -30px;
}

.stat-item {
  padding: 36px 24px;
  text-align: center;
  background: var(--white);
  position: relative;
  transition: all var(--t-med);
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--gray-200);
}
.stat-item:last-child::after { display: none; }

.stat-item:hover {
  background: var(--grad-btn);
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label,
.stat-item:hover .stat-icon { color: white; }

.stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  transition: color var(--t-fast);
  display: block;
}

.stat-number {
  font-family: 'Fredoka One', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple-dark);
  line-height: 1;
  margin-bottom: 6px;
  transition: color var(--t-fast);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  transition: color var(--t-fast);
}

/* ── 9. FEATURED PRODUCTS SECTION ───────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
  position: relative;
  cursor: pointer;
  border: 1px solid var(--gray-100);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img .emoji-main {
  font-size: 5rem;
  z-index: 2;
  position: relative;
  transition: transform var(--t-bounce);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

.product-card:hover .emoji-main {
  transform: scale(1.2) rotate(-5deg);
}

.product-card-img-bg {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: transform var(--t-slow);
}
.product-card:hover .product-card-img-bg { transform: scale(1.05); }

.product-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card:hover .product-card-photo { transform: scale(1.05); }

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: var(--r-full);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-card-body {
  padding: 20px 22px;
}

.product-category {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--purple-dark);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-med);
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
}

.product-price {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.45rem;
  color: var(--purple-dark);
}

.product-price span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.product-add {
  width: 38px; height: 38px;
  background: var(--grad-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-bounce);
}

.product-add:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: var(--shadow-md);
}

/* ── 10. FEATURE CARDS (Why Choose Us) ──────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: all var(--t-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-btn);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: transform var(--t-bounce);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }

.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-med);
  line-height: 1.65;
}

/* ── 11. TESTIMONIALS SECTION ───────────────────────────────── */
.testimonials-section {
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(249,210,220,0.5), transparent 70%);
  z-index: 0;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(138,214,241,0.4), transparent 70%);
  z-index: 0;
}

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

.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  min-width: calc(33.333% - 19px);
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 900px) {
  .testimonial-card { min-width: calc(50% - 14px); }
}
@media (max-width: 600px) {
  .testimonial-card { min-width: 100%; }
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span { color: #ffc107; font-size: 1rem; }

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-med);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  font-weight: 700;
  color: white;
}

.testimonial-info .name {
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-info .role {
  font-size: 0.78rem;
  color: var(--text-light);
}

.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark);
  font-size: 1rem;
  transition: all var(--t-fast);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--grad-btn);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all var(--t-med);
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--grad-btn);
  width: 24px;
  border-radius: 4px;
}

/* ── 12. SERVICE CARDS ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all var(--t-slow);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-bg {
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card-bg { transform: scale(1.05); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,46,0.85) 0%, rgba(30,30,46,0.20) 60%, transparent 100%);
  transition: all var(--t-med);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(30,30,46,0.90) 0%, rgba(30,30,46,0.40) 70%, transparent 100%);
}

.service-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: white;
  transform: translateY(8px);
  transition: transform var(--t-slow);
}
.service-card:hover .service-card-content { transform: translateY(0); }

.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  margin-bottom: 0;
}
.service-card:hover p {
  max-height: 120px;
  opacity: 1;
  margin-bottom: 16px;
}

.service-card-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ── 13. CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--grad-btn);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 60%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.88); margin-bottom: 32px; font-size: 1.05rem; }

/* ── 14. FAQ SECTION ─────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: box-shadow var(--t-med);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--purple-dark); }

.faq-question.active { color: var(--purple-dark); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--t-med);
}

.faq-question.active .faq-icon {
  background: var(--grad-btn);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-med);
  line-height: 1.75;
}

/* ── 15. ABOUT PAGE ──────────────────────────────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-mesh);
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
  opacity: 0.6;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--purple-dark); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span.sep { color: var(--gray-400); }

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

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

.about-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--grad-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
}

.about-img-badge .num {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;
  color: var(--purple-dark);
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-text .section-header { text-align: left; margin: 0 0 24px; }
.about-text .section-header h2 { margin-bottom: 16px; }

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.value-pill {
  background: var(--pink-light);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--pink);
  transition: all var(--t-med);
}

.value-pill:hover {
  background: var(--grad-btn);
  border-color: transparent;
}

.value-pill:hover .value-emoji,
.value-pill:hover .value-text { color: white; }

.value-emoji { font-size: 1.8rem; margin-bottom: 8px; }
.value-text { font-size: 0.8rem; font-weight: 600; color: var(--purple-dark); transition: color var(--t-fast); }

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-btn);
  transform: translateX(-50%);
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  align-items: flex-start;
}

.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--t-slow);
}

.timeline-content:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.timeline-year {
  flex: 0 0 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
}

.timeline-year span {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.1rem;
  color: white;
  background: var(--grad-btn);
  padding: 6px 14px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--white);
  border: 3px solid var(--purple);
  border-radius: 50%;
  z-index: 2;
  transition: all var(--t-med);
}
.timeline-item:hover .timeline-dot {
  background: var(--purple);
  transform: translateX(-50%) scale(1.3);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: all var(--t-slow);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--grad-btn);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-bounce);
}
.team-card:hover .team-avatar { transform: scale(1.1) rotate(-5deg); }

.team-card h4 { font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--purple-dark); font-weight: 600; margin-bottom: 10px; }
.team-bio  { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; }

/* ── 16. GALLERY PAGE ───────────────────────────────────────── */
.gallery-grid {
  columns: 4 260px;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,46,0.8), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-dark);
  font-size: 1.1rem;
  transition: all var(--t-med);
}
.gallery-item:hover .gallery-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,20,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--r-lg);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--t-fast);
  backdrop-filter: blur(10px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); transform: scale(1.1); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--t-fast);
  backdrop-filter: blur(10px);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 24px;
  border-radius: var(--r-full);
  color: white;
  font-size: 0.88rem;
  white-space: nowrap;
}

/* ── 17. CONTACT PAGE ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-100);
  transition: all var(--t-med);
}

.contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: all var(--t-med);
}
.contact-info-card:hover .contact-icon {
  background: var(--grad-btn);
}

.contact-info-text .label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.contact-info-text .value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-social { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.social-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  transition: all var(--t-bounce);
  box-shadow: var(--shadow-xs);
}
.social-btn:hover { transform: translateY(-4px) scale(1.1); box-shadow: var(--shadow-md); }
.social-btn.instagram { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.social-btn.facebook  { background: #1877f2; }
.social-btn.tiktok    { background: #000; }
.social-btn.twitter   { background: #1da1f2; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-title { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.form-subtitle { font-size: 0.88rem; color: var(--text-med); margin-bottom: 28px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--gray-50);
  transition: all var(--t-fast);
}

.form-control:focus {
  border-color: var(--purple);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(221,152,195,0.12);
}

.form-control::placeholder { color: var(--text-light); font-size: 0.88rem; }

textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

.form-error {
  font-size: 0.76rem;
  color: #e55a5a;
  display: none;
  align-items: center;
  gap: 4px;
}
.form-error.show { display: flex; }

.form-control.error { border-color: #e55a5a; }

.form-success {
  background: linear-gradient(135deg, #d4f7ea, #a8efd0);
  border: 1px solid #5dd6a0;
  border-radius: var(--r-md);
  padding: 20px 24px;
  text-align: center;
  display: none;
  margin-top: 20px;
}

.form-success.show { display: block; }
.form-success h4 { color: #1a7a4f; margin-bottom: 6px; font-size: 1.05rem; }
.form-success p  { color: #2d9b6b; font-size: 0.88rem; margin: 0; }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
  height: 380px;
  border: 3px solid var(--white);
}

.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── 18. FILTER TABS ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-med);
  background: var(--white);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all var(--t-fast);
}

.filter-tab:hover {
  border-color: var(--purple);
  color: var(--purple-dark);
  background: var(--purple-light);
}

.filter-tab.active {
  background: var(--grad-btn);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

/* ── 19. NEWSLETTER SECTION ──────────────────────────────────── */
.newsletter-section {
  background: var(--grad-cool);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.newsletter-section::before {
  content: '🍦';
  position: absolute;
  font-size: 8rem;
  top: -20px;
  left: 40px;
  opacity: 0.12;
}
.newsletter-section::after {
  content: '🍧';
  position: absolute;
  font-size: 8rem;
  bottom: -20px;
  right: 40px;
  opacity: 0.12;
}

.newsletter-section h3 { margin-bottom: 8px; color: var(--text-dark); }
.newsletter-section p  { color: var(--text-med); margin-bottom: 24px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all var(--t-fast);
}
.newsletter-form input:focus { border-color: var(--purple); background: white; }

/* ── 20. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-btn);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text .brand {
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.15rem;
  color: white;
  display: block;
}
.footer-logo-text .sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--t-fast);
}
.footer-social-btn:hover {
  background: var(--grad-btn);
  color: white;
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width var(--t-fast);
}

.footer-links a:hover {
  color: white;
  transform: translateX(6px);
}
.footer-links a:hover::before { width: 12px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--t-fast);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }

/* ── 21. LOADING SCREEN ──────────────────────────────────────── */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--grad-btn);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-logo { font-size: 4rem; animation: loadBounce 0.8s ease-in-out infinite alternate; }

.loading-brand {
  font-family: 'Fredoka One', sans-serif;
  font-size: 2rem;
  color: white;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  height: 100%;
  background: white;
  border-radius: 2px;
  animation: loadBar 1.5s ease forwards;
}

/* ── 22. BLOB DECORATIONS ────────────────────────────────────── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.blob-pink   { background: var(--pink); }
.blob-blue   { background: var(--blue); }
.blob-mint   { background: var(--mint); }
.blob-purple { background: var(--purple); }

/* ── 23. SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── 24. HOW IT WORKS ────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.666% + 20px);
  right: calc(16.666% + 20px);
  height: 2px;
  background: var(--grad-btn);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid transparent;
  background-clip: padding-box;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.8rem;
  color: var(--purple-dark);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-bounce);
}

.step-num::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--grad-btn);
  z-index: -1;
}

.step-card:hover .step-num { transform: scale(1.15); box-shadow: var(--shadow-md); }

.step-card h4 { font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 8px; }
.step-card p  { font-size: 0.88rem; color: var(--text-med); line-height: 1.65; }

/* ── 25. INSTAGRAM SECTION ───────────────────────────────────── */
.instagram-section {
  background: var(--gray-50);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(221,152,195,0.8), rgba(138,214,241,0.8));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--t-fast);
  font-size: 1.5rem;
  color: white;
}
.insta-item:hover img { transform: scale(1.08); }
.insta-item:hover .insta-overlay { opacity: 1; }

/* ── 26. MISC UTILITIES ─────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }
.rounded { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.overflow-h { overflow: hidden; }
.pos-rel { position: relative; }

/* ── 27. RESPONSIVE BREAKPOINTS ──────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .timeline::before { display: none; }
  .timeline-item { flex-direction: column !important; gap: 12px; }
  .timeline-year { padding-top: 0; justify-content: flex-start; }
  .timeline-dot { display: none; }
}

/* Nav collapses first (wider breakpoint covers Fold 5 inner landscape ~904px) */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 70px);
    overflow-y: auto;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 20px var(--gutter) 28px;
    gap: 4px;
    box-shadow: 0 20px 60px rgba(221,152,195,0.2);
    z-index: 999;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-links.mobile-open .nav-link { padding: 14px 20px; border-radius: var(--r-sm); font-size: 1rem; }
  .nav-links.mobile-open .nav-mobile-cta-item { display: block; margin-top: 12px; padding: 0 4px; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc, .hero-badge { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item::after { display: none; }

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

  .contact-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 680px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); border-radius: var(--r-md); }
  .form-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .gallery-grid { columns: 2 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .about-values-grid { grid-template-columns: 1fr 1fr; }

  .booking-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .booking-banner::before { display: none; }

  .newsletter-section { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(100% - 0px); }
  .gallery-grid { columns: 1; }
  .hero { padding-top: 110px; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .about-values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── 28. PRODUCTS PAGE SEARCH ────────────────────────────────── */
.products-search-wrap {
  max-width: 440px;
  margin: 0 auto 32px;
  position: relative;
}

.products-search-wrap input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.92rem;
  background: var(--white);
  transition: all var(--t-fast);
  box-shadow: var(--shadow-xs);
}

.products-search-wrap input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(221,152,195,0.12);
}

.products-search-wrap i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── 29. BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px; height: 48px;
  background: var(--grad-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-med);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── 30. BOOKING BANNER ──────────────────────────────────────── */
.booking-banner {
  background: var(--grad-pink);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.booking-banner::before {
  content: '🍦';
  position: absolute;
  font-size: 8rem;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.15;
}

.booking-banner-text h3 { margin-bottom: 6px; color: var(--text-dark); }
.booking-banner-text p  { color: var(--text-med); font-size: 0.92rem; margin: 0; }
