/* ============================================
   POPSHOT PARTY CO LLC
   Party Rentals & Event Planning
   Fort Pierce, FL

   Palette:
     --pink:      #FF8FAB  (cotton candy pink)
     --blue:      #A8D8EA  (sky blue)
     --lavender:  #C4B5F0  (lavender)
     --mint:      #B8F0D0  (mint green)
     --yellow:    #FFE066  (sunshine yellow)
     --orange:    #FFB347  (tangerine)
     --dark:      #2B3A67  (deep navy for text/footer)
     --dark-mid:  #3d4f7a
     --bg:        #FFFBF7  (warm white)
     --bg-alt:    #FFF5EE  (peachy cream)

   Fonts:
     Display: Fredoka (rounded, playful)
     Body:    Nunito (friendly, readable)
     Accent:  Caveat (handwritten)
   ============================================ */

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

:root {
  --pink: #FF8FAB;
  --pink-light: rgba(255, 143, 171, 0.12);
  --blue: #A8D8EA;
  --blue-light: rgba(168, 216, 234, 0.12);
  --lavender: #C4B5F0;
  --lavender-light: rgba(196, 181, 240, 0.12);
  --mint: #B8F0D0;
  --mint-light: rgba(184, 240, 208, 0.12);
  --yellow: #FFE066;
  --yellow-light: rgba(255, 224, 102, 0.12);
  --orange: #FFB347;
  --orange-light: rgba(255, 179, 71, 0.12);
  --dark: #2B3A67;
  --dark-mid: #3d4f7a;
  --dark-light: #5a6a94;
  --bg: #FFFBF7;
  --bg-alt: #FFF5EE;
  --text: #2B3A67;
  --text-muted: #6b7aaa;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(43, 58, 103, 0.08);
  --shadow-lg: 0 12px 48px rgba(43, 58, 103, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Caveat', cursive;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

em {
  font-style: normal;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* --- Scroll Reveal --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .confetti,
  .hero__orb,
  .hero__balloon,
  .hero__sparkle,
  .hero__scroll-dot {
    animation: none !important;
  }
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 143, 171, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 143, 171, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--lavender);
}

.btn--outline:hover {
  background: var(--lavender-light);
  border-color: var(--lavender);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--lg {
  font-size: 17px;
  padding: 14px 32px;
}

.btn:focus-visible {
  outline: 3px solid var(--lavender);
  outline-offset: 3px;
}


/* --- Section Common --- */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}

.section-description {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 251, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 181, 240, 0.15);
  transition: all var(--transition);
  height: 72px;
}

.nav--scrolled {
  height: 64px;
  box-shadow: 0 2px 20px rgba(43, 58, 103, 0.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

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

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-pop {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--pink);
}

.nav__logo-shot {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--lavender);
}

.nav__logo-party {
  font-family: var(--font-accent);
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 14px;
  padding: 10px 24px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav__hamburger-line {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}


/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: var(--white);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(43, 58, 103, 0.15);
  overflow-y: auto;
}

.mobile-menu.is-active {
  right: 0;
}

.mobile-menu__inner {
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-alt);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  transition: all var(--transition);
}

.mobile-menu__close:hover {
  background: var(--pink-light);
  color: var(--pink);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(196, 181, 240, 0.15);
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--pink);
}

.mobile-menu__cta {
  margin-top: 24px;
  text-align: center;
  justify-content: center;
}

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 58, 103, 0.3);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 0;
  overflow: hidden;
  background: linear-gradient(180deg,
    var(--bg) 0%,
    rgba(255, 143, 171, 0.04) 30%,
    rgba(196, 181, 240, 0.06) 60%,
    rgba(168, 216, 234, 0.04) 100%
  );
}

/* Floating gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  will-change: transform;
}

.hero__orb--1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 143, 171, 0.2) 0%, transparent 70%);
  top: 10%;
  left: -5%;
}

.hero__orb--2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 216, 234, 0.2) 0%, transparent 70%);
  top: 20%;
  right: -3%;
}

.hero__orb--3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 181, 240, 0.2) 0%, transparent 70%);
  bottom: 25%;
  left: 10%;
}

.hero__orb--4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 224, 102, 0.15) 0%, transparent 70%);
  bottom: 15%;
  right: 15%;
}


/* Floating confetti */
.confetti-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti {
  position: absolute;
  border-radius: 2px;
  animation: confettiFall var(--dur, 8s) linear var(--delay, 0s) infinite;
  opacity: 0.5;
}

.confetti--1  { width: 8px; height: 8px; background: var(--pink);     left: 5%;  --dur: 9s;  --delay: 0s;   top: -20px; }
.confetti--2  { width: 6px; height: 10px; background: var(--blue);    left: 15%; --dur: 7s;  --delay: 1.5s; top: -20px; border-radius: 50%; }
.confetti--3  { width: 10px; height: 6px; background: var(--yellow);  left: 25%; --dur: 10s; --delay: 3s;   top: -20px; }
.confetti--4  { width: 7px; height: 7px; background: var(--lavender); left: 38%; --dur: 8.5s; --delay: 0.5s; top: -20px; border-radius: 50%; }
.confetti--5  { width: 9px; height: 5px; background: var(--mint);     left: 50%; --dur: 7.5s; --delay: 2s;  top: -20px; }
.confetti--6  { width: 6px; height: 9px; background: var(--orange);   left: 62%; --dur: 9.5s; --delay: 4s;  top: -20px; }
.confetti--7  { width: 8px; height: 8px; background: var(--pink);     left: 72%; --dur: 8s;  --delay: 1s;   top: -20px; border-radius: 50%; }
.confetti--8  { width: 10px; height: 6px; background: var(--blue);    left: 82%; --dur: 7s;  --delay: 3.5s; top: -20px; }
.confetti--9  { width: 7px; height: 7px; background: var(--yellow);   left: 90%; --dur: 10s; --delay: 0.5s; top: -20px; }
.confetti--10 { width: 5px; height: 8px; background: var(--lavender); left: 95%; --dur: 8.5s; --delay: 2.5s; top: -20px; border-radius: 50%; }
.confetti--11 { width: 8px; height: 5px; background: var(--mint);     left: 45%; --dur: 9s;  --delay: 5s;   top: -20px; }
.confetti--12 { width: 6px; height: 6px; background: var(--orange);   left: 30%; --dur: 7.5s; --delay: 6s;  top: -20px; border-radius: 50%; }

@keyframes confettiFall {
  0% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(110vh) rotate(720deg) scale(0.6);
    opacity: 0;
  }
}


.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-light);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
}


/* Hero SVG animations */
.hero__svg-bounce {
  animation: gentleBounce 3s ease-in-out infinite;
}

.hero__svg-roof {
  animation: gentleBounce 3s ease-in-out infinite;
  animation-delay: 0.1s;
}

.hero__svg-photo {
  animation: gentleFloat 4s ease-in-out infinite;
  animation-delay: 0.5s;
}

.hero__balloon {
  animation: balloonFloat var(--dur, 4s) ease-in-out infinite;
}

.hero__balloon--1  { --dur: 3.5s; animation-delay: 0s; }
.hero__balloon--2  { --dur: 4s;   animation-delay: 0.3s; }
.hero__balloon--3  { --dur: 3.8s; animation-delay: 0.6s; }
.hero__balloon--4  { --dur: 4.2s; animation-delay: 0.9s; }
.hero__balloon--5  { --dur: 3.6s; animation-delay: 1.2s; }
.hero__balloon--6  { --dur: 4.5s; animation-delay: 1.5s; }
.hero__balloon--7  { --dur: 3.7s; animation-delay: 0.2s; }
.hero__balloon--8  { --dur: 4.1s; animation-delay: 0.5s; }
.hero__balloon--9  { --dur: 3.9s; animation-delay: 0.8s; }
.hero__balloon--10 { --dur: 4.3s; animation-delay: 1.1s; }
.hero__balloon--11 { --dur: 3.8s; animation-delay: 1.4s; }

.hero__sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

.hero__sparkle--1 { animation-delay: 0s; }
.hero__sparkle--2 { animation-delay: 0.4s; }
.hero__sparkle--3 { animation-delay: 0.8s; }
.hero__sparkle--4 { animation-delay: 1.2s; }
.hero__sparkle--5 { animation-delay: 0.6s; }
.hero__sparkle--6 { animation-delay: 1s; }

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

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

@keyframes balloonFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-5px) rotate(-1deg); }
  75%      { transform: translateY(-3px) rotate(1deg); }
}

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


/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  padding-bottom: 0;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(196, 181, 240, 0.15);
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero__stat-icon {
  color: var(--pink);
  display: flex;
}

.hero__stats-divider {
  width: 1px;
  height: 40px;
  background: rgba(196, 181, 240, 0.25);
}


/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: rgba(196, 181, 240, 0.25);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero__scroll-dot {
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, var(--pink), var(--lavender));
  border-radius: 2px;
  position: absolute;
  top: 0;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%   { top: 0; opacity: 0; }
  30%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { top: 28px; opacity: 0; }
}


/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(196, 181, 240, 0.12);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--card-color, var(--pink)), var(--lavender));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(196, 181, 240, 0.25);
}

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

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg, var(--pink-light));
  color: var(--card-color, var(--pink));
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--card-color, var(--pink));
  color: var(--white);
}

.service-card__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card__description {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card__features {
  list-style: none;
  margin-bottom: 20px;
}

.service-card__features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-color, var(--pink));
  opacity: 0.4;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--card-color, var(--pink));
  transition: gap var(--transition);
}

.service-card__link:hover {
  gap: 10px;
}

/* Featured (wide) card */
.service-card--featured {
  grid-column: 1 / -1;
  padding: 0;
}

.service-card--featured::before {
  display: none;
}

.service-card__featured-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
}

.service-card--featured .service-card__icon {
  margin-bottom: 0;
}

.service-card--featured .service-card__title {
  margin-bottom: 6px;
}

.service-card--featured .service-card__description {
  margin-bottom: 0;
}


/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.about__image {
  position: relative;
}

.about__image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  animation: gentleFloat 5s ease-in-out infinite;
}

.about__quote {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--dark);
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid var(--pink);
  margin-bottom: 24px;
}

.about__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about__value {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__value-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__value span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}


/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: 100px 0;
  background: var(--bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__placeholder span {
  font-family: var(--font-accent);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 58, 103, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover .gallery__placeholder {
  transform: scale(1.05);
}

.gallery__tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-bottom: 4px;
}

.gallery__caption {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}


/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--bg-alt);
}

.process__timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--lavender), var(--blue), var(--mint));
  border-radius: 2px;
}

.process__step {
  display: flex;
  gap: 28px;
  margin-bottom: 48px;
  position: relative;
}

.process__step:last-child {
  margin-bottom: 0;
}

.process__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--lavender);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process__step:hover .process__number {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  border-color: transparent;
  color: var(--white);
}

.process__content {
  padding-top: 10px;
}

.process__title {
  font-size: 20px;
  margin-bottom: 8px;
}

.process__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */
.features {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.features .section-tag {
  color: var(--yellow);
}

.features .section-title {
  color: var(--white);
}

.features .section-title em {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features .section-description {
  color: rgba(255, 255, 255, 0.6);
}

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

.features__intro {
  grid-column: 1 / -1;
  max-width: 560px;
  margin-bottom: 16px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.feature-card__number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
  display: block;
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}


/* Service Area Tags */
.features__areas {
  margin-top: 56px;
  text-align: center;
}

.features__areas-title {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 20px;
}

.features__areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

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


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(196, 181, 240, 0.12);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card--featured {
  background: var(--dark);
  border-color: transparent;
}

.testimonial-card--featured .testimonial-card__text {
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-card--featured .testimonial-card__name {
  color: var(--white);
}

.testimonial-card--featured .testimonial-card__event {
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  display: block;
}

.testimonial-card__event {
  font-size: 13px;
  color: var(--text-muted);
}


/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 50%, var(--blue) 100%);
  text-align: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
}

.cta-banner__title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 32px;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--bg-alt);
}

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

.contact__info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

.contact__info-item strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact__info-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.contact__info-item a {
  color: var(--pink);
  transition: color var(--transition);
}

.contact__info-item a:hover {
  color: var(--yellow);
}

.contact__social-link {
  color: var(--pink) !important;
}

.contact__social-link:hover {
  color: var(--yellow) !important;
}


/* Map Placeholder */
.contact__map {
  margin-top: 24px;
}

.contact__map-placeholder {
  background: rgba(196, 181, 240, 0.08);
  border: 1px dashed rgba(196, 181, 240, 0.2);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}


/* Contact Form */
.contact__form-wrap {
  position: relative;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 181, 240, 0.12);
}

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

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

.form-group label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.required {
  color: var(--pink);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid rgba(196, 181, 240, 0.25);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--dark);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--lavender);
  box-shadow: 0 0 0 4px rgba(196, 181, 240, 0.15);
}

.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
}

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

.form-group select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-error {
  font-size: 12px;
  color: #e74c3c;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #e74c3c;
}

.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  font-size: 16px;
  padding: 16px 32px;
}

.btn__loading {
  display: none;
  animation: spin 1s linear infinite;
}

.contact__submit.is-loading .btn__text {
  opacity: 0.5;
}

.contact__submit.is-loading .btn__loading {
  display: inline-flex;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Success state */
.contact__success {
  display: none;
  text-align: center;
  padding: 60px 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(196, 181, 240, 0.12);
}

.contact__success.is-visible {
  display: block;
  animation: fadeSlideUp 0.5s ease;
}

.contact__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--mint-light);
  color: #65c994;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact__success h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.contact__success p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer__logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--pink);
  color: var(--white);
}

.footer__heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__links li svg {
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.5;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--pink);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.4);
}

.footer__legal a:hover {
  color: var(--pink);
}


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--lavender);
  color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--pink), var(--lavender));
  border-color: transparent;
  color: var(--white);
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


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

/* Tablet */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__illustration {
    max-width: 380px;
    margin: 0 auto;
  }

  .hero__stats-inner {
    gap: 24px;
    padding: 24px 28px;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 32px;
  }

  .hero__badge {
    font-size: 15px;
    padding: 6px 14px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__illustration {
    max-width: 300px;
  }

  .hero__stats-inner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .hero__stats-divider {
    width: 48px;
    height: 1px;
  }

  .hero__scroll {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card__featured-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
  }

  .service-card--featured .service-card__icon {
    margin: 0 auto;
    margin-bottom: 8px;
  }

  .service-card--featured .service-card__link {
    margin: 8px auto 0;
  }

  .about__values {
    flex-direction: column;
    gap: 12px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery__item--tall {
    grid-row: span 1;
  }

  .process__step {
    gap: 20px;
  }

  .process__number {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .process__line {
    left: 23px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .contact__form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 60px 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}


/* --- Print Styles --- */
@media print {
  .nav,
  .hero__orb,
  .confetti-field,
  .hero__scroll,
  .cta-banner,
  .back-to-top,
  .nav__hamburger,
  .mobile-menu {
    display: none !important;
  }

  body {
    background: white;
    color: #333;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}
