/* =========================================================
   Fantasy Facez — Master Stylesheet
   Bubbly · Fresh · Colourful · Elegant
   Palette: Purple · Peach · Yellow · Cyan · Green
   Light theme — inspired by the Fantasy Facez logo gradient
   ========================================================= */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  /* Brand Colours — from Fantasy Facez logo */
  --purple:        #7B3FE4;
  --purple-dark:   #5E1FC8;
  --purple-soft:   #B08AFF;
  --purple-light:  #EDE4FF;
  --peach:         #FF8C69;
  --peach-dark:    #E86040;
  --peach-light:   #FFE8DF;
  --yellow:        #FFD700;
  --yellow-light:  #FFF9CC;
  --cyan:          #00D4E8;
  --cyan-light:    #D0F8FF;
  --green:         #4ADE80;
  --rose:          #FF4B8C;
  --gold:          #FFD700;

  /* Page backgrounds — warm white / light pastels */
  --bg:            #FFFAF8;
  --bg-purple:     #F5F0FF;
  --bg-peach:      #FFF2EC;
  --bg-yellow:     #FFFBEE;
  --bg-card:       #FFFFFF;

  /* Dark anchor (footer, buttons) */
  --dark:          #1A0A2E;
  --dark-2:        #2D1B4E;

  /* Card & border */
  --card-border:   rgba(123, 63, 228, 0.14);
  --card-shadow:   0 4px 24px rgba(123, 63, 228, 0.09);
  --dark-border:   rgba(123, 63, 228, 0.14);  /* alias used by shared components */
  --dark-surface:  rgba(123, 63, 228, 0.04);
  --dark-card:     rgba(123, 63, 228, 0.04);

  /* Text */
  --white:         #FFFFFF;
  --text:          #1A0A2E;    /* headings */
  --text-body:     #3D2655;    /* body copy */
  --text-muted:    #7B6899;    /* placeholders, captions */
  --text-light:    #EDE4FF;    /* for dark section text */

  /* Gradients */
  --g-brand:    linear-gradient(135deg, #7B3FE4 0%, #FF8C69 100%);
  --g-hot:      linear-gradient(135deg, #FF4B8C 0%, #7B3FE4 100%);
  --g-cool:     linear-gradient(135deg, #00D4E8 0%, #7B3FE4 100%);
  --g-warm:     linear-gradient(135deg, #FF8C69 0%, #FFD700 100%);
  --g-hero:     linear-gradient(135deg, #F0E7FF 0%, #FFE8DF 60%, #FFF9CC 100%);
  --g-section:  linear-gradient(160deg, #F5F0FF 0%, #EDE4FF 100%);  /* section-dark */
  --g-section-peach: linear-gradient(160deg, #FFF2EC 0%, #FFE0D0 100%);
  --g-dark:     linear-gradient(160deg, #1A0A2E 0%, #2D1B4E 100%);
  --g-video:    linear-gradient(135deg, #7B3FE4 0%, #FF4B8C 50%, #FF8C69 100%);

  /* Shadows */
  --shadow-purple: 0 8px 40px rgba(123, 63, 228, 0.2);
  --shadow-peach:  0 8px 40px rgba(255, 140, 105, 0.2);
  --shadow-card:   0 8px 40px rgba(123, 63, 228, 0.12);
  --shadow-lime:   0 8px 40px rgba(123, 63, 228, 0.2);   /* alias */
  --shadow-yellow: 0 8px 40px rgba(255, 140, 105, 0.18); /* alias */
  --shadow-btn:    0 8px 30px rgba(123, 63, 228, 0.35);

  /* Radius — generously rounded for bubbly feel */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-full: 9999px;

  --section-gap: 6rem;
  --container:   1280px;

  --t-fast: 0.2s ease;
  --t-mid:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-purple); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: var(--r-full); }
::selection { background: var(--purple); color: var(--white); }

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

/* Purple → Peach */
.gradient-text {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.1em;
}

/* Rose → Purple */
.gradient-text-2 {
  background: var(--g-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.1em;
}

/* Yellow → White: for dark/gradient backgrounds */
.gradient-text-light {
  background: linear-gradient(135deg, #FFE600 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  padding-bottom: 0.1em;
}

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: var(--section-gap) 0; }

/* Light lavender background for "dark" sections */
.section-dark {
  background: var(--g-section);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

/* Process / How It Works — solid deep dark background */
.section-process {
  background: #1A0A2E;
}

.section-process .section-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-process .section-title { color: #fff; }
.section-process .section-subtitle { color: rgba(255, 255, 255, 0.7); }

/* Video / CTA section — solid deep purple */
.section-gradient {
  background: #5E1FC8;
  position: relative;
  overflow: hidden;
}

.section-gradient::before {
  content: '';
  position: absolute;
  top: -40%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.section-gradient::after {
  content: '';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Override text colours inside gradient (dark) section */
.section-gradient .section-tag {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}
.section-gradient .section-title { color: var(--white); }
.section-gradient .section-subtitle { color: rgba(255, 255, 255, 0.85); }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(123, 63, 228, 0.08);
  border: 1px solid rgba(123, 63, 228, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--t-mid);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

/* Primary: purple-peach gradient, light text */
.btn-primary {
  background: var(--g-brand);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(123, 63, 228, 0.5);
  filter: brightness(1.08);
}

.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: rgba(123, 63, 228, 0.4);
}

.btn-outline:hover {
  background: rgba(123, 63, 228, 0.06);
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-3px);
}

/* Light outline — for use on dark/gradient backgrounds */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}

/* Gold/accent variant */
.btn-gold {
  background: var(--g-warm);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(255, 140, 105, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(255, 140, 105, 0.5);
  filter: brightness(1.08);
}

/* ─── Navigation ─────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--t-mid);
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(123, 63, 228, 0.12);
  box-shadow: 0 4px 30px rgba(123, 63, 228, 0.1);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Logo Image ─────────────────────────────────────────── */
.logo-img-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
  transition: var(--t-mid);
  filter: drop-shadow(0 2px 8px rgba(123, 63, 228, 0.2));
}

.logo-img:hover {
  transform: translateY(-2px) scale(1.03);
  filter: drop-shadow(0 4px 16px rgba(123, 63, 228, 0.4));
}

.logo-img-footer {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(123, 63, 228, 0.3));
}

/* Keep text logo for any fallback references */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.9rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.logo-fantasy { color: var(--text); }
.logo-facez {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-star {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--purple);
  -webkit-text-fill-color: var(--purple);
  margin-left: 0.2rem;
  animation: sparkle 2s ease infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
  50%       { opacity: 0.7; transform: scale(1.3) rotate(20deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--r-full);
  transition: var(--t-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2.5px;
  background: var(--g-brand);
  border-radius: var(--r-full);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--purple); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 70%; }

.btn-nav {
  background: var(--g-brand);
  color: var(--white);
  padding: 0.65rem 1.6rem;
  border-radius: var(--r-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--t-fast);
  box-shadow: var(--shadow-btn);
}

.btn-nav:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 12px 30px rgba(123, 63, 228, 0.5);
  filter: brightness(1.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: var(--r-full);
  transition: var(--t-mid);
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 250, 248, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--t-mid);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  transition: var(--t-fast);
  display: block;
}

.mobile-menu a:hover { color: var(--purple); }

.btn-mobile {
  margin-top: 1rem;
  background: var(--g-brand) !important;
  color: var(--white) !important;
  padding: 0.8rem 2.5rem;
  border-radius: var(--r-full);
  font-family: 'Poppins', sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-btn);
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  overflow: hidden;
}

/* Decorative background blobs */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.bg-blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(123, 63, 228, 0.22), transparent);
  top: -200px; left: -150px;
}

.bg-blob-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 105, 0.22), transparent);
  bottom: -200px; right: -100px;
}

.bg-blob-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.28), transparent);
  top: 30%; right: 28%;
}

.bg-blob-4 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(0, 212, 232, 0.18), transparent);
  bottom: 20%; left: 10%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 4rem;
}

/* ─── Hero circles cluster ───────────────────────────────── */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circles-cluster {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 100%;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 7px solid var(--white);
  box-shadow: 0 16px 48px rgba(123, 63, 228, 0.22);
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Main large circle — centred */
.hc-main {
  width: clamp(220px, 30vw, 290px);
  height: clamp(220px, 30vw, 290px);
  top: 50%; left: 50%;
  transform: translate(-46%, -50%);
  z-index: 3;
  animation: heroFloat 6s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(123, 63, 228, 0.28);
}

/* Upper-right circle */
.hc-secondary {
  width: clamp(160px, 22vw, 210px);
  height: clamp(160px, 22vw, 210px);
  top: 10px; right: 0;
  z-index: 2;
  animation: heroFloat 7.5s ease-in-out infinite;
  animation-delay: -2.5s;
  border-color: var(--peach);
  box-shadow: 0 12px 36px rgba(255, 140, 105, 0.3);
}

/* Lower-left circle */
.hc-tertiary {
  width: clamp(130px, 17vw, 175px);
  height: clamp(130px, 17vw, 175px);
  bottom: 20px; left: 0;
  z-index: 2;
  animation: heroFloat 9s ease-in-out infinite;
  animation-delay: -5s;
  border-color: var(--purple);
  box-shadow: 0 10px 30px rgba(123, 63, 228, 0.3);
}

@keyframes heroFloat {
  0%, 100% { transform: translate(-46%, -50%); }
  50%       { transform: translate(-46%, calc(-50% - 16px)); }
}

/* float without translate for secondary/tertiary */
.hc-secondary, .hc-tertiary {
  animation-name: heroFloatSimple;
}

@keyframes heroFloatSimple {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Decorative dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: heroFloatSimple 6s ease-in-out infinite;
}

.hd-1 {
  width: 58px; height: 58px;
  background: var(--g-brand);
  opacity: 0.75;
  top: 20px; left: 50px;
  animation-delay: -1s;
}

.hd-2 {
  width: 44px; height: 44px;
  background: var(--yellow);
  opacity: 0.85;
  bottom: 90px; right: 10px;
  animation-delay: -3s;
}

.hd-3 {
  width: 34px; height: 34px;
  background: var(--cyan);
  opacity: 0.75;
  top: 55%; right: 5px;
  animation-delay: -4.5s;
}

.hero-star {
  position: absolute;
  font-size: 1.6rem;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: sparkle 3s ease infinite;
  z-index: 4;
  font-weight: 700;
}

.hds-1 { top: 25px; left: 12px; font-size: 2.2rem; animation-delay: -0.5s; }
.hds-2 { bottom: 45px; right: 55px; font-size: 1.3rem; animation-delay: -2s; }

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(123, 63, 228, 0.08);
  border: 1.5px solid rgba(123, 63, 228, 0.25);
  padding: 0.4rem 1.2rem;
  border-radius: var(--r-full);
  width: fit-content;
  animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 63, 228, 0); }
  50%       { box-shadow: 0 0 0 8px rgba(123, 63, 228, 0.07); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.8;
  max-width: 520px;
  opacity: 0;
  animation: slideUp 0.7s ease 1.1s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.7s ease 1.3s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1.5px solid rgba(123, 63, 228, 0.15);
  opacity: 0;
  animation: slideUp 0.7s ease 1.5s forwards;
}

.stat { display: flex; flex-direction: column; gap: 0.1rem; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-number + span {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.stat-divider {
  width: 1.5px; height: 40px;
  background: rgba(123, 63, 228, 0.18);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 24px; height: 40px;
  border: 2px solid rgba(123, 63, 228, 0.35);
  border-radius: var(--r-full);
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  width: 4px; height: 8px;
  background: var(--purple);
  border-radius: var(--r-full);
  transform: translateX(-50%);
  animation: scrollDot 2s ease infinite;
}

@keyframes scrollDot {
  0%   { top: 5px; opacity: 1; }
  80%  { top: 18px; opacity: 0; }
  100% { top: 5px; opacity: 0; }
}

/* ─── Services (event types) ─────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  transition: var(--t-mid);
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-brand);
  opacity: 0;
  transition: var(--t-mid);
  border-radius: inherit;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 63, 228, 0.35);
  box-shadow: 0 20px 60px rgba(123, 63, 228, 0.18);
}

.service-card:hover::before { opacity: 0.04; }

.service-card.featured {
  border-color: rgba(123, 63, 228, 0.3);
  background: linear-gradient(135deg, rgba(123, 63, 228, 0.06), rgba(255, 140, 105, 0.04));
}

.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--g-brand);
  color: var(--white);
  padding: 0.25rem 0.7rem;
  border-radius: var(--r-full);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(123, 63, 228, 0.3));
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  position: relative;
  z-index: 1;
}

.service-features li {
  font-size: 0.82rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features li::before {
  content: '✦';
  color: var(--purple);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── About Preview ──────────────────────────────────────── */
.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
  padding-bottom: 3rem;
}

.about-img-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--card-border);
}

.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-main:hover img { transform: scale(1.04); }

.about-img-float {
  position: absolute;
  bottom: 0; right: -2rem;
  width: 45%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}

.about-img-float img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.about-badge-float {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--g-brand);
  border-radius: var(--r-lg);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  box-shadow: 0 8px 30px rgba(123, 63, 228, 0.4);
}

.about-badge-float span:first-child { font-size: 1.5rem; }

.about-badge-float span:nth-child(2) {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-badge-float span:last-child {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content .section-title { margin-bottom: 0; }

.about-content p {
  color: var(--text-body);
  line-height: 1.9;
  font-size: 0.95rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(123, 63, 228, 0.05);
  border: 1.5px solid rgba(123, 63, 228, 0.15);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-body);
  font-weight: 600;
  transition: var(--t-fast);
}

.value-item:hover {
  border-color: rgba(123, 63, 228, 0.4);
  background: rgba(123, 63, 228, 0.08);
  color: var(--purple);
}

.value-icon { font-size: 1.1rem; }

/* ─── Gallery ────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1.5px solid var(--card-border);
  box-shadow: var(--card-shadow);
}

.gallery-item.large { grid-row: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 63, 228, 0.65), rgba(255, 75, 140, 0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--t-mid);
}

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

.gallery-icon {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.5) rotate(-20deg);
  transition: var(--t-mid);
  font-weight: bold;
}

.gallery-item:hover .gallery-icon { transform: scale(1) rotate(0deg); }

/* ─── Video ──────────────────────────────────────────────── */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.2);
  position: relative;
}

.video-wrapper video {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  display: block;
  background: var(--dark);
}

/* ─── Logo Carousel ──────────────────────────────────────── */
.logos-carousel {
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

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

@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(var(--carousel-shift, -50%)); }
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-md);
  padding: 1rem 2rem;
  height: 88px;
  min-width: 190px;
  transition: var(--t-mid);
  box-shadow: var(--card-shadow);
}

.logo-item:hover {
  border-color: var(--purple);
  transform: scale(1.06) translateY(-3px);
  box-shadow: 0 8px 30px rgba(123, 63, 228, 0.2);
}

.logo-item img {
  max-height: 52px;
  max-width: 155px;
  object-fit: contain;
  filter: none;
  transition: var(--t-mid);
}

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

/* ─── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-md);
  transition: var(--t-fast);
  box-shadow: var(--card-shadow);
}

.contact-item:hover {
  border-color: rgba(123, 63, 228, 0.3);
  box-shadow: 0 8px 30px rgba(123, 63, 228, 0.12);
  transform: translateY(-2px);
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--g-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(123, 63, 228, 0.3);
}

.contact-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
  margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
  font-size: 0.88rem;
  color: var(--text-body);
  transition: color var(--t-fast);
}

.contact-item a:hover { color: var(--purple); }

.social-links {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.social-link {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--t-mid);
  border: 1.5px solid var(--card-border);
}

.social-link.facebook {
  background: rgba(24, 119, 242, 0.08);
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.2);
}

.social-link.facebook:hover {
  background: #1877F2;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 119, 242, 0.35);
  border-color: #1877F2;
}

.social-link.instagram {
  background: rgba(225, 48, 108, 0.08);
  color: #E1306C;
  border-color: rgba(225, 48, 108, 0.2);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.35);
  border-color: transparent;
}

.contact-form-wrapper {
  background: var(--bg-card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 50px rgba(123, 63, 228, 0.1);
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(123, 63, 228, 0.06), transparent);
  pointer-events: none;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid rgba(123, 63, 228, 0.2);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.92rem;
  transition: var(--t-fast);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(61, 38, 85, 0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  background: var(--bg-purple);
  box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.1);
}

.form-group select option { background: #fff; color: var(--text); }
.form-group textarea { resize: vertical; min-height: 110px; }

.form-error { font-size: 0.75rem; color: #e03c3c; min-height: 1rem; }

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon { font-size: 4rem; animation: successBounce 0.6s ease; }

@keyframes successBounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.form-success h3 { font-size: 1.8rem; color: var(--text); }

.form-success p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
}

/* ─── Footer ─────────────────────────────────────────────── */
footer {
  border-top: none;
  background: var(--g-dark);
}

.footer-top { padding: 4rem 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-social { display: flex; gap: 0.75rem; }

.footer-links h4, .footer-contact h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--peach);
  margin-bottom: 1.25rem;
}

.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--peach); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--t-fast);
}

.footer-contact a:hover { color: var(--peach); }
.footer-contact i { color: var(--peach); width: 14px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

.footer-legal a:hover { color: var(--peach); }

/* Social in footer — light colours on dark */
footer .social-link {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

footer .social-link.facebook { color: #6BA3F5; }
footer .social-link.instagram { color: #F78BBD; }

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(26, 10, 46, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  animation: lightboxIn 0.3s ease;
}

@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  transition: var(--t-fast);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}

.lightbox-prev, .lightbox-next {
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 60px;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

/* ─── Scroll Animations ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="zoom-in"]    { transform: scale(0.9); }
[data-animate="scale-in"]   { transform: scale(0.85); }

[data-animate].visible {
  opacity: 1;
  transform: none;
}

/* ─── Page Banner (About / Privacy) ─────────────────────── */
.page-banner {
  padding: 8rem 0 5rem;
  background: var(--g-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-bottom: 1.5px solid var(--card-border);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123, 63, 228, 0.12), transparent);
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 140, 105, 0.12), transparent);
  pointer-events: none;
}

.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; color: var(--text); }

.page-banner p {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: var(--text-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb span { color: var(--purple); }

/* ─── About Page ─────────────────────────────────────────── */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

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

.founder-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow-card);
}

.founder-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.founder-content { display: flex; flex-direction: column; gap: 1.5rem; }

.founder-content p {
  color: var(--text-body);
  line-height: 1.9;
  font-size: 0.95rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-lg);
  transition: var(--t-mid);
  box-shadow: var(--card-shadow);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

/* Solid logo colours per card */
.process-step:nth-child(1) { background: #9B5FF4;          border-color: #9B5FF4; }
.process-step:nth-child(2) { background: var(--peach);     border-color: var(--peach); }
.process-step:nth-child(3) { background: var(--rose);      border-color: var(--rose); }
.process-step:nth-child(4) { background: var(--gold);      border-color: var(--gold); }

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Numbers on dark cards (1–3): white, clearly visible */
.process-step:nth-child(1) .step-number,
.process-step:nth-child(2) .step-number,
.process-step:nth-child(3) .step-number {
  background: none;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.55);
}
/* Number on gold card: dark, clearly visible */
.process-step:nth-child(4) .step-number {
  background: none;
  -webkit-text-fill-color: rgba(0, 0, 0, 0.35);
  color: rgba(0, 0, 0, 0.35);
}

/* Heading & body text on coloured cards */
.process-step:nth-child(1) h3,
.process-step:nth-child(2) h3,
.process-step:nth-child(3) h3 { color: #fff; }
.process-step:nth-child(4) h3 { color: #1a1a1a; }

.process-step:nth-child(1) p,
.process-step:nth-child(2) p,
.process-step:nth-child(3) p { color: rgba(255, 255, 255, 0.85); }
.process-step:nth-child(4) p { color: rgba(0, 0, 0, 0.72); }

.process-step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.85rem; line-height: 1.7; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t-mid);
  text-align: center;
  box-shadow: var(--card-shadow);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(123, 63, 228, 0.3);
  box-shadow: 0 16px 50px rgba(123, 63, 228, 0.14);
}

.team-img { width: 100%; height: 250px; object-fit: cover; object-position: center top; }

.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.2rem; color: var(--text); margin-bottom: 0.25rem; }

.team-role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
  display: block;
}

.team-info p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Privacy Policy ─────────────────────────────────────── */
.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--section-gap) 0;
}

.privacy-content h2 {
  font-size: 1.6rem;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1.5px solid var(--card-border);
}

.privacy-content h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.privacy-content p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content li {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 0.4rem;
}

.privacy-content a { color: var(--purple); text-decoration: underline; }
.privacy-content a:hover { color: var(--peach-dark); }

.privacy-updated {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(123, 63, 228, 0.05);
  border: 1.5px solid var(--card-border);
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 2rem;
}

/* ─── Services Offered (Bento Grid) ─────────────────────── */
#services-offered { background: var(--bg); }

.offerings-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  background: var(--bg-card);
  border: 1.5px solid var(--card-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: var(--t-mid);
  position: relative;
  box-shadow: var(--card-shadow);
}

.offering-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-brand);
  opacity: 0;
  transition: var(--t-mid);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

.offering-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 63, 228, 0.4);
  box-shadow: 0 24px 64px rgba(123, 63, 228, 0.2);
}

.offering-card:hover::after { opacity: 0.04; }

/* Featured face-painting card — spans 2 cols */
.offering-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: stretch;
  min-height: 380px;
}

.offering-featured-gallery {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 1;
  height: 100%;
}

.offer-main-img {
  width: 100%;
  flex: 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offering-featured:hover .offer-main-img { transform: scale(1.04); }

.offer-img-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 96px;
  gap: 3px;
  flex-shrink: 0;
}

.offer-img-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.offer-img-strip img:hover { transform: scale(1.1); }

/* Standard single-column card image */
.offering-image {
  height: 210px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.offering-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offering-card:hover .offering-image img { transform: scale(1.1); }

/* Content */
.offering-content {
  padding: 1.6rem;
  position: relative;
  z-index: 1;
}

.offering-featured .offering-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
}

.offering-icon {
  font-size: 2.2rem;
  display: inline-block;
  filter: drop-shadow(0 0 10px rgba(123, 63, 228, 0.4));
  margin-bottom: 0.25rem;
}

.offering-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.offering-featured .offering-content h3 {
  font-size: 1.9rem;
  line-height: 1.2;
}

.offering-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.offering-featured .offering-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.85;
}

.offering-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.offering-features li {
  font-size: 0.83rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.offering-features li::before {
  content: '✦';
  color: var(--purple);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .contact-info  { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .contact-item  { flex: 1 1 45%; }
  .social-links  { order: 10; width: 100%; }
}

@media (max-width: 1024px) {
  .hero-content       { grid-template-columns: 1fr; text-align: center; padding: 7rem 2rem 5rem; gap: 3rem; }
  .hero-image-wrapper { order: -1; }
  .hero-circles-cluster { width: 380px; height: 380px; margin: 0 auto; }
  .hc-main            { width: 220px; height: 220px; }
  .hc-secondary       { width: 165px; height: 165px; }
  .hc-tertiary        { width: 130px; height: 130px; }
  .hero-text          { align-items: center; }
  .hero-subtitle      { text-align: center; }
  .hero-cta           { justify-content: center; }
  .hero-stats         { justify-content: center; }
  .about-preview-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images       { max-width: 560px; margin: 0 auto; }
  .founder-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .founder-img img    { height: 350px; }
  .process-grid       { grid-template-columns: repeat(2, 1fr); }
  .offerings-bento    { grid-template-columns: repeat(2, 1fr); }
  .offering-featured  { grid-column: span 2; min-height: 320px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 4rem; }
  .nav-links, .btn-nav { display: none; }
  .hamburger            { display: flex; }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.large   { grid-row: span 1; }
  .contact-info         { flex-direction: column; }
  .contact-item         { flex: 1 1 100%; }
  .form-row             { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .team-grid            { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .about-img-float      { display: none; }
  .about-badge-float    { left: 1rem; }
  .offerings-bento      { grid-template-columns: 1fr; gap: 1rem; }
  .offering-featured    { grid-column: span 1; grid-template-columns: 1fr; min-height: auto; }
  .offering-featured-gallery { height: 260px; }
  .offer-main-img       { height: 72%; }
  .offer-img-strip      { height: 80px; }
  .hero-circles-cluster { width: 300px; height: 300px; }
  .hc-main              { width: 178px; height: 178px; }
  .hc-secondary         { width: 130px; height: 130px; }
  .hc-tertiary          { width: 105px; height: 105px; }
}

@media (max-width: 576px) {
  .container            { padding: 0 1.25rem; }
  .navbar               { padding: 0.75rem 1.25rem; }
  .logo-img             { height: 80px; }
  .hero-title           { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats           { gap: 1.2rem; }
  .services-grid        { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .process-grid         { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
  .about-values         { grid-template-columns: 1fr; }
  .mobile-menu a        { font-size: 1.5rem; }
  .hero-circles-cluster { width: 280px; height: 280px; }
}

/* ==========================================================
   SOLID SECTION COLOURS — drawn directly from the logo
   Purple · Peach · Yellow · Cyan · Green + white neutrals
   ========================================================== */

/* ── Hero — clean white so the photos are the colour ─────── */
#hero {
  background: #FFFFFF;
}

/* ── Services (event types) — solid PURPLE ───────────────── */
#services {
  background: #7B3FE4;
}

#services .section-tag {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
}

#services .section-title  { color: #FFFFFF; }
#services .section-subtitle { color: rgba(255, 255, 255, 0.82); }

/* yellow → white gradient text on purple bg */
#services .gradient-text {
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#services .service-card {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

#services .service-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(-8px);
}

#services .service-card.featured {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
}

#services .service-card h3          { color: #FFFFFF; }
#services .service-card p           { color: rgba(255, 255, 255, 0.84); }
#services .service-features li      { color: rgba(255, 255, 255, 0.9); }
#services .service-features li::before { color: #FFD700; }
#services .service-badge            { background: #FFD700; color: #1A0A2E; }
#services .service-icon             { filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5)); }

/* ── Services Offered — solid PEACH ──────────────────────── */
#services-offered {
  background: #FF8C69;
}

#services-offered .section-tag {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
}

#services-offered .section-title    { color: #1A0A2E; }
#services-offered .section-subtitle { color: rgba(26, 10, 46, 0.72); }

/* purple → dark on peach bg */
#services-offered .gradient-text {
  background: linear-gradient(135deg, #5E1FC8 0%, #1A0A2E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#services-offered .offering-card {
  background: #FFFFFF;
  border-color: rgba(26, 10, 46, 0.1);
  box-shadow: 0 4px 20px rgba(26, 10, 46, 0.1);
}

#services-offered .offering-card:hover {
  border-color: rgba(123, 63, 228, 0.35);
  box-shadow: 0 20px 60px rgba(26, 10, 46, 0.18);
}

#services-offered .offering-card h3    { color: #1A0A2E; }
#services-offered .offering-card p     { color: rgba(26, 10, 46, 0.7); }
#services-offered .offering-features li { color: rgba(26, 10, 46, 0.85); }
#services-offered .offering-features li::before { color: #7B3FE4; }
#services-offered .offering-icon { filter: drop-shadow(0 0 10px rgba(26, 10, 46, 0.2)); }

/* ── About Preview — solid YELLOW ────────────────────────── */
#about-preview {
  background: #FFD700;
  border-top: none;
  border-bottom: none;
}

#about-preview .section-tag {
  color: #1A0A2E;
  background: rgba(26, 10, 46, 0.1);
  border-color: rgba(26, 10, 46, 0.22);
}

#about-preview .section-title   { color: #1A0A2E; }
#about-preview .about-content p { color: rgba(26, 10, 46, 0.78); }

/* purple → dark-purple on yellow: high contrast */
#about-preview .gradient-text {
  background: linear-gradient(135deg, #7B3FE4 0%, #2D1B4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#about-preview .about-img-main  { border-color: rgba(26, 10, 46, 0.14); }
#about-preview .about-img-float { border-color: #FFD700; }
#about-preview .about-badge-float { box-shadow: 0 8px 30px rgba(26, 10, 46, 0.22); }

#about-preview .value-item {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(26, 10, 46, 0.15);
  color: #1A0A2E;
  font-weight: 600;
}

#about-preview .value-item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: #7B3FE4;
  color: #7B3FE4;
}

/* ── Gallery — solid CYAN ────────────────────────────────── */
#gallery {
  background: #00D4E8;
}

#gallery .section-tag {
  color: #1A0A2E;
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.5);
}

#gallery .section-title    { color: #1A0A2E; }
#gallery .section-subtitle { color: rgba(26, 10, 46, 0.72); }

/* purple → dark on cyan: clear contrast */
#gallery .gradient-text {
  background: linear-gradient(135deg, #5E1FC8 0%, #1A0A2E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#gallery .gallery-item {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ── Clients — clean white (logos need neutral bg) ───────── */
#clients {
  background: #FFFFFF;
}

/* ── Contact — solid GREEN ───────────────────────────────── */
#contact {
  background: #4ADE80;
  border-top: none;
  border-bottom: none;
}

#contact .section-tag {
  color: #1A0A2E;
  background: rgba(26, 10, 46, 0.09);
  border-color: rgba(26, 10, 46, 0.2);
}

#contact .section-title    { color: #1A0A2E; }
#contact .section-subtitle { color: rgba(26, 10, 46, 0.72); }
#contact .section-subtitle strong { color: #1A0A2E; }

/* purple → dark on green */
#contact .gradient-text {
  background: linear-gradient(135deg, #7B3FE4 0%, #2D1B4E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#contact .contact-form-wrapper {
  background: #FFFFFF;
  border-color: rgba(26, 10, 46, 0.1);
  box-shadow: 0 12px 50px rgba(26, 10, 46, 0.14);
}

#contact .contact-item {
  background: #FFFFFF;
  border-color: rgba(26, 10, 46, 0.1);
}

#contact .contact-item:hover {
  border-color: rgba(123, 63, 228, 0.35);
  box-shadow: 0 8px 30px rgba(26, 10, 46, 0.1);
}

#contact .contact-item h4            { color: #7B3FE4; }
#contact .contact-item p,
#contact .contact-item a             { color: rgba(26, 10, 46, 0.8); }
#contact .contact-item a:hover       { color: #7B3FE4; }
#contact .contact-icon               { color: #FFFFFF; }
#contact .social-link                { background: rgba(255, 255, 255, 0.6); border-color: rgba(26, 10, 46, 0.12); }
#contact .form-group input,
#contact .form-group select,
#contact .form-group textarea        { background: #FFFFFF; }

/* ═══════════════════════════════════════════════════════════
   GALLERY SHOWCASE — Animated Shapes
═══════════════════════════════════════════════════════════ */

@keyframes floatBob {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-14px) rotate(8deg); }
}

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

/* Category wrapper */
.gallery-cat {
  margin-bottom: 4rem;
}
.gallery-cat--last { margin-bottom: 0; }

/* ── Category label banner ── */
.gallery-cat-label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.4rem 2.5rem;
  border-radius: var(--r-xl);
  margin-bottom: 2.5rem;
  overflow: hidden;
}
.gc-purple { background: #7B3FE4; }
.gc-yellow { background: #FFD700; }
.gc-peach  { background: #FF8C69; }

.gc-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.gc-emoji {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.gc-inner h3 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}
.gc-inner p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  opacity: 0.82;
}
.gc-purple .gc-inner h3,
.gc-purple .gc-inner p { color: #FFFFFF; }
.gc-yellow .gc-inner h3,
.gc-yellow .gc-inner p { color: #1A0A2E; }
.gc-peach  .gc-inner h3,
.gc-peach  .gc-inner p { color: #1A0A2E; }

/* Decorative floating chars inside banner */
.gc-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  font-size: 1.6rem;
  font-weight: 900;
}
.gc-deco-1 { left:  4%;  top: 12%;    animation: floatBob 3.4s ease-in-out infinite alternate; }
.gc-deco-2 { left: 14%;  bottom: 12%; animation: floatBob 4.1s ease-in-out infinite alternate-reverse; }
.gc-deco-3 { right: 14%; top: 10%;    animation: floatBob 3.8s ease-in-out infinite alternate; }
.gc-deco-4 { right:  4%; bottom: 12%; animation: floatBob 4.6s ease-in-out infinite alternate-reverse; }
.gc-purple .gc-deco { color: #FFD700;  opacity: 0.55; }
.gc-yellow .gc-deco { color: #7B3FE4;  opacity: 0.5; }
.gc-peach  .gc-deco { color: #7B3FE4;  opacity: 0.45; }

/* ── Shape grid ── */
.gs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
  align-items: center;
}
.gs-grid--glitter {
  align-items: center;
  gap: 2.5rem;
}

/* ── Base item ── */
.gs-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.38s ease;
}
.gs-item:hover  { transform: scale(1.07) translateY(-5px); }
.gs-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gs-item:hover img { transform: scale(1.13); }

/* ── Shape variants ── */
.gs-round { border-radius: 50%; }
.gs-hex   { clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); }
.gs-blob  { border-radius: 42% 58% 68% 32% / 44% 46% 54% 56%; }

/* Hex: box-shadow is clipped, use filter instead */
.gs-hex:hover { filter: drop-shadow(0 8px 24px rgba(123, 63, 228, 0.55)); }

/* ── Size variants ── */
.gs-md   { width: 200px; height: 200px; }
.gs-lg   { width: 260px; height: 260px; }
.gs-xl   { width: 310px; height: 310px; }
.gs-hero {
  width:  520px;
  height: 380px;
  border-radius: 40% 60% 62% 38% / 42% 44% 56% 58% !important;
}

/* Round & blob get a visible glow on hover */
.gs-round:hover { box-shadow: 0 10px 40px rgba(123, 63, 228, 0.45); }
.gs-blob:hover  { box-shadow: 0 10px 40px rgba(123, 63, 228, 0.38); }

/* Per-category glow colours */
.gc-overlay-yellow ~ .gs-round:hover,
.gs-grid:has(.gc-overlay-yellow) .gs-round:hover,
.gs-grid:has(.gc-overlay-yellow) .gs-blob:hover  {
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.55);
}
.gs-grid:has(.gc-overlay-yellow) .gs-hex:hover {
  filter: drop-shadow(0 8px 24px rgba(255, 215, 0, 0.6));
}
.gs-grid:has(.gc-overlay-peach) .gs-blob:hover {
  box-shadow: 0 10px 40px rgba(255, 140, 105, 0.5);
}

/* ── Overlay ── */
.gs-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gs-item:hover .gs-overlay { opacity: 1; }

.gc-overlay-purple { background: rgba(123, 63, 228, 0.62); }
.gc-overlay-yellow { background: rgba(200, 160, 0,   0.62); }
.gc-overlay-peach  { background: rgba(255, 100, 60,  0.58); }

.gs-icon {
  font-size: 2.6rem;
  color: #FFFFFF;
  transform: scale(0.3) rotate(-30deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.gs-item:hover .gs-icon { transform: scale(1) rotate(0deg); }

/* ── Glitter sparks ── */
.gs-glitter-sparks {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}
.gsp {
  font-size: 2rem;
  display: block;
  animation: glitterPulse 2.4s ease-in-out infinite;
}
.gsp-1 { color: #7B3FE4; font-size: 2.6rem; animation-delay: 0s; }
.gsp-2 { color: #FFD700; font-size: 1.8rem; animation-delay: 0.4s; }
.gsp-3 { color: #FF8C69; font-size: 2rem;   animation-delay: 0.8s; }
.gsp-4 { color: #00D4E8; font-size: 1.6rem; animation-delay: 0.2s; }
.gsp-5 { color: #4ADE80; font-size: 2.2rem; animation-delay: 0.6s; }
.gsp-6 { color: #FF4B8C; font-size: 1.9rem; animation-delay: 1s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gs-xl   { width: 270px; height: 270px; }
  .gs-hero { width: 440px; height: 320px; }
}
@media (max-width: 768px) {
  .gs-xl   { width: 220px; height: 220px; }
  .gs-lg   { width: 180px; height: 180px; }
  .gs-md   { width: 150px; height: 150px; }
  .gs-hero { width: 320px; height: 250px; }
  .gs-grid { gap: 1.25rem; }
  .gallery-cat-label { padding: 1.1rem 1.5rem; gap: 0.75rem; }
  .gc-deco-1, .gc-deco-2 { display: none; }
}
@media (max-width: 480px) {
  .gs-xl   { width: 190px; height: 190px; }
  .gs-lg   { width: 155px; height: 155px; }
  .gs-md   { width: 130px; height: 130px; }
  .gs-hero { width: 260px; height: 200px; }
  .gs-grid { gap: 0.9rem; }
  .gc-inner { gap: 0.5rem; }
  .gc-inner p { display: none; }
  .gc-deco { display: none; }
}
