/*
Theme Name: WeCreateIt
Theme URI: https://www.wecreateit.co.za
Author: WeCreateIt
Author URI: https://www.wecreateit.co.za
Description: A quirky, bold, and joyful theme for WeCreateIt – 17 years of making magic in East Pretoria.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wecreateit
Tags: one-page, creative, custom-colors, custom-logo, featured-images, full-width-template
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --pink:        #E8007D;
  --pink-light:  #FF4DAD;
  --pink-dark:   #B5005F;
  --pink-pale:   #FFF0F7;
  --black:       #1A1A1A;
  --charcoal:    #2D2D2D;
  --white:       #FFFFFF;
  --off-white:   #FDF8FB;
  --grey:        #6B6B6B;
  --grey-light:  #F5F0F3;

  --font-display: 'Pacifico', cursive;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   32px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(232,0,125,0.12);
  --shadow-md: 0 8px 32px rgba(232,0,125,0.18);
  --shadow-lg: 0 20px 60px rgba(232,0,125,0.22);
  --shadow-dark: 0 4px 20px rgba(26,26,26,0.15);

  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: 0.4s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink); text-decoration: none; transition: color var(--transition-smooth); }
a:hover { color: var(--pink-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--black);
}

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

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

/* ============================================================
   SKIP LINK (ACCESSIBILITY)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--pink);
  color: var(--white);
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-family: var(--font-body);
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   SPARKLE CURSOR TRAIL (JS-driven class)
   ============================================================ */
.sparkle-dot {
  position: fixed;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  opacity: 0.8;
  z-index: 9998;
  animation: sparkle-fade 0.6s ease forwards;
}
@keyframes sparkle-fade {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(0); opacity: 0; }
}

/* ============================================================
   SCROLLING TICKER TAPE
   ============================================================ */
.ticker {
  background: var(--pink);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: inline-block;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 32px;
}
.ticker-item .star { color: #FFE566; margin: 0 6px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 3px solid var(--pink);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-smooth);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.site-logo img {
  height: 64px;
  width: auto;
  transition: transform var(--transition);
}
.site-logo img:hover { transform: rotate(-5deg) scale(1.05); }

.site-logo a { display: block; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  display: block;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--black);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-cta a {
  background: var(--pink) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(232,0,125,0.35);
}
.nav-cta a:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(232,0,125,0.45) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--pink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--off-white);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(232,0,125,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232,0,125,0.06) 0%, transparent 50%),
    radial-gradient(circle at 60% 10%, rgba(255,230,102,0.07) 0%, transparent 40%);
  pointer-events: none;
}

.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.confetti-piece {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  animation: confetti-fall linear infinite;
  opacity: 0;
}

@keyframes confetti-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: 0.1s;
}
@keyframes badge-pop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: var(--black);
  margin-bottom: 8px;
  animation: hero-slide-up 0.7s ease both;
  animation-delay: 0.2s;
}
.hero-title .pink { color: var(--pink); }

.hero-subtitle {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--grey);
  margin-bottom: 24px;
  animation: hero-slide-up 0.7s ease both;
  animation-delay: 0.35s;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--charcoal);
  max-width: 500px;
  margin-bottom: 36px;
  animation: hero-slide-up 0.7s ease both;
  animation-delay: 0.5s;
  line-height: 1.8;
}

@keyframes hero-slide-up {
  0%   { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: hero-slide-up 0.7s ease both;
  animation-delay: 0.65s;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-slide-up 0.8s ease both;
  animation-delay: 0.4s;
}

.hero-logo-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(232,0,125,0.3));
  animation: logo-float 4s ease-in-out infinite;
}

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

.hero-starburst {
  position: absolute;
  top: -20px;
  right: -10px;
  width: 100px;
  height: 100px;
  background: #FFE566;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: starburst-spin 8s linear infinite;
}

@keyframes starburst-spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-starburst-text {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 0.65rem;
  color: var(--black);
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  animation: starburst-spin 8s linear infinite reverse;
}

.hero-bubbles {
  position: absolute;
  bottom: -10px;
  left: -20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-bubble {
  background: var(--white);
  border: 2px solid var(--pink);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--pink);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: bubble-slide-in 0.5s ease both;
}
.hero-bubble:nth-child(1) { animation-delay: 0.8s; }
.hero-bubble:nth-child(2) { animation-delay: 1.0s; }
.hero-bubble:nth-child(3) { animation-delay: 1.2s; }

@keyframes bubble-slide-in {
  0%   { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,0,125,0.4);
}
.btn-primary:hover {
  background: var(--pink-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232,0,125,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2.5px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
}

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

.btn .icon { font-size: 1.1em; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 90px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '✦';
  font-size: 0.6em;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,0,125,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.about-intro-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  margin-top: 24px;
}

.about-intro-cols p {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.85;
}

.about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

/* ── Bento Grid ─────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.bento-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.bento-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-item:nth-child(4) { grid-column: span 2; }
.bento-item:nth-child(7) { grid-column: span 2; }

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.bento-hidden { display: none; }
.bento-grid.expanded .bento-hidden { display: block; }

/* ── Bento video tiles ──────────────────────────────────── */
.bento-video { cursor: pointer; }

.bento-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.bento-video:hover .bento-play { opacity: 0; }

.wci-lb-video {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-sm);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.bento-caption {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
}

.bento-zoom {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
}

/* ── Lightbox ───────────────────────────────────────────── */
.wci-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wci-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.wci-lb-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wci-lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s ease;
}

.wci-lb-caption {
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-top: 12px;
  text-align: center;
}

.wci-lb-caption:empty { display: none; }

.wci-lb-close,
.wci-lb-prev,
.wci-lb-next {
  position: absolute;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s, transform 0.2s;
}

.wci-lb-close {
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
  line-height: 1;
}

.wci-lb-prev,
.wci-lb-next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  padding: 8px;
}

.wci-lb-prev { left: 16px; }
.wci-lb-next { right: 16px; }

.wci-lb-close:hover,
.wci-lb-prev:hover,
.wci-lb-next:hover {
  color: var(--pink-light);
  transform: translateY(-50%) scale(1.15);
}
.wci-lb-close:hover { transform: scale(1.15); }

.wci-lb-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

/* ── Bento responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .about-intro-cols,
  .about-facts {
    grid-template-columns: 1fr;
  }
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .bento-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento-item:nth-child(4) { grid-column: span 1; }
  .bento-item:nth-child(7) { grid-column: span 1; }
  .bento-overlay { opacity: 1; }
  .wci-lb-prev { left: 8px; }
  .wci-lb-next { right: 8px; }
}

.fun-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.fun-fact .fact-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--pink);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item { color: var(--white); }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services { background: var(--white); }

.services-intro {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--pink);
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 22px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: var(--pink);
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--black);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFE566;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* ============================================================
   WHY US / PERSONALITY SECTION
   ============================================================ */
.why-us {
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(232,0,125,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,230,102,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.why-us .section-title { color: var(--white); }
.why-us .section-desc  { color: rgba(255,255,255,0.65); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.why-list { display: flex; flex-direction: column; gap: 20px; }

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition-smooth);
}
.why-item:hover {
  background: rgba(232,0,125,0.12);
  border-color: rgba(232,0,125,0.4);
  transform: translateX(6px);
}

.why-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(232,0,125,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.why-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.why-big-number {
  font-family: var(--font-display);
  font-size: clamp(7rem, 12vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 3px rgba(232,0,125,0.4);
  line-height: 1;
  user-select: none;
  position: relative;
}

.why-big-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(232,0,125,0.5);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--pink-pale);
  position: relative;
  overflow: hidden;
}

.testimonials::after {
  content: '"';
  position: absolute;
  top: -30px;
  right: 5%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(232,0,125,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #FFB800;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pink-pale);
  border: 3px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--pink);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--black);
}
.author-since {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
  margin-top: 50px;
}

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

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

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--pink-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--pink);
  transform: scale(1.1) rotate(-5deg);
}

.contact-item h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--pink); }

.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px solid rgba(232,0,125,0.1);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrap .form-sub {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(232,0,125,0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--transition-smooth);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232,0,125,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand img { height: 70px; width: auto; margin-bottom: 18px; }

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 22px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-4px);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before { content: '→'; color: var(--pink); font-size: 0.75em; }
.footer-col ul li a:hover { color: var(--white); }

.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-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-bottom a { color: var(--pink); }

.footer-heart {
  color: var(--pink);
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 500;
}
#scroll-top.visible { opacity: 1; transform: translateY(0); }
#scroll-top:hover { background: var(--pink-dark); transform: translateY(-3px); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: all var(--transition);
  z-index: 500;
}
.whatsapp-float:hover {
  color: var(--white);
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
}

.whatsapp-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================================
   ANIMATIONS — SCROLL-TRIGGERED
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 900px) {
  .hero-content   { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-visual    { order: -1; }
  .hero-logo-wrap { width: 240px; height: 240px; }
  .hero-actions   { justify-content: center; }
  .hero-desc      { margin: 0 auto 36px; }
  .hero-bubbles   { display: none; }
  .why-grid       { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--pink);
    padding: 16px;
    box-shadow: var(--shadow-dark);
    display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul   { flex-direction: column; gap: 8px; }

  .hero-logo-wrap { width: 180px; height: 180px; }
  .hero-starburst { display: none; }

  .contact-form-wrap { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   WORDPRESS CORE STYLES (keep Gutenberg happy)
   ============================================================ */
.alignwide  { margin-left: -40px; margin-right: -40px; }
.alignfull  { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-block-image { margin-bottom: 1rem; }
.entry-content p:last-child { margin-bottom: 0; }
