/* ===================================
   Candy's Face Paint — Styles
   =================================== */

/* --- CSS Custom Properties --- */
:root {
  --pink: #E91E8C;
  --pink-light: #FF6BB5;
  --pink-pale: #FFB8E0;
  --pink-bg: #FFF0F7;
  --purple: #7B2D8E;
  --purple-light: #C77DFF;
  --purple-pale: #E8D5F5;
  --lavender: #E8D5F5;
  --teal: #00C9A7;
  --teal-light: #00E4BF;
  --yellow: #FFD93D;
  --yellow-light: #FFED8A;
  --coral: #FF6B6B;
  --blue: #3D5AF1;
  --white: #FFFFFF;
  --off-white: #FEFAFC;
  --gray-50: #FAF5F8;
  --gray-100: #F5EDF2;
  --gray-200: #E8DCE5;
  --gray-300: #D4C4D0;
  --gray-400: #A8929F;
  --gray-500: #7C6974;
  --gray-600: #5C4D55;
  --gray-700: #3D3242;
  --gray-800: #2A1F2E;
  --gray-900: #1A1020;

  --font-display: 'Pacifico', cursive;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Dancing Script', cursive;

  --shadow-sm: 0 2px 8px rgba(233, 30, 140, 0.08);
  --shadow-md: 0 4px 20px rgba(233, 30, 140, 0.12);
  --shadow-lg: 0 8px 40px rgba(233, 30, 140, 0.16);
  --shadow-xl: 0 16px 60px rgba(123, 45, 142, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--gray-800);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

/* --- Floating Paint Splashes --- */
.paint-splash {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  filter: blur(60px);
}

.splash-1 {
  width: 500px;
  height: 500px;
  background: var(--pink);
  top: -100px;
  right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.splash-2 {
  width: 400px;
  height: 400px;
  background: var(--purple);
  bottom: 20%;
  left: -100px;
  animation: float-slow 25s ease-in-out infinite reverse;
}

.splash-3 {
  width: 300px;
  height: 300px;
  background: var(--teal);
  top: 50%;
  right: -50px;
  animation: float-slow 18s ease-in-out infinite 5s;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(123, 45, 142, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  transition: color var(--transition);
}

.navbar.scrolled .nav-logo {
  color: var(--purple);
}

.logo-icon {
  font-size: 1.6rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

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

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .nav-link:hover {
  color: var(--pink);
  background: var(--pink-bg);
}

.nav-cta {
  background: var(--white) !important;
  color: var(--pink) !important;
  font-weight: 600 !important;
}

.navbar.scrolled .nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
  color: var(--white) !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 50%, var(--pink-light) 100%);
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 45, 142, 0.7) 0%,
    rgba(233, 30, 140, 0.6) 50%,
    rgba(255, 107, 181, 0.5) 100%
  );
}

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

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -10%;
  right: -5%;
  animation: blob-float 12s ease-in-out infinite;
}

.blob-2 {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  bottom: 10%;
  left: -5%;
  animation: blob-float 15s ease-in-out infinite reverse;
}

.blob-3 {
  width: 250px;
  height: 250px;
  background: var(--purple-light);
  top: 40%;
  right: 20%;
  animation: blob-float 18s ease-in-out infinite 3s;
}

.blob-4 {
  width: 200px;
  height: 200px;
  background: var(--coral);
  top: 20%;
  left: 15%;
  animation: blob-float 14s ease-in-out infinite 5s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 40px) scale(0.9); }
  75% { transform: translate(30px, 20px) scale(1.05); }
}

.hero-sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: sparkle 3s ease-in-out infinite;
}

.sparkle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 25%; left: 20%; animation-delay: 1s; }
.sparkle-4 { bottom: 35%; right: 10%; animation-delay: 1.5s; }
.sparkle-5 { top: 50%; left: 5%; animation-delay: 2s; }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  animation: fade-in-up 0.8s ease-out 0.2s both;
}

.hero-title-line {
  display: block;
  line-height: 1.8em;
}

.hero-title-line.accent {
  background: linear-gradient(135deg, var(--yellow), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(255, 217, 61, 0.3));
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.8;
  animation: fade-in-up 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fade-in-up 0.8s ease-out 0.6s both;
}

.hero-trust {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease-out 0.8s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 400;
}

.trust-icon {
  font-size: 1.3rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  animation: fade-in-up 0.8s ease-out 1s both;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-sparkle {
  display: inline-block;
  animation: sparkle-pulse 2s ease-in-out infinite;
}

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

.btn-instagram {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-instagram:hover {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  border-color: transparent;
}

.instagram-icon {
  flex-shrink: 0;
}

/* --- Section Headers --- */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--pink);
  margin-bottom: 8px;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gray-800);
  margin-bottom: 16px;
}

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

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* --- About Section --- */
.about {
  background: var(--white);
}

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

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

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-lg);
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--pink-pale), var(--lavender), var(--pink-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.placeholder-art {
  text-align: center;
  position: relative;
  z-index: 2;
}

.placeholder-emoji {
  font-size: 6rem;
  display: block;
  animation: gentle-float 4s ease-in-out infinite;
}

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

.placeholder-paint-strokes {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.paint-stroke {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.stroke-1 {
  width: 200px;
  height: 80px;
  background: var(--pink);
  top: 20%;
  left: -10%;
  transform: rotate(-15deg);
}

.stroke-2 {
  width: 150px;
  height: 60px;
  background: var(--purple);
  bottom: 25%;
  right: -5%;
  transform: rotate(20deg);
}

.stroke-3 {
  width: 120px;
  height: 50px;
  background: var(--teal);
  top: 60%;
  left: 20%;
  transform: rotate(-5deg);
}

.about-image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15px;
  left: 15px;
  border-radius: var(--radius-xl);
  border: 3px solid var(--pink-pale);
  z-index: -1;
}

.about-content .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.about-lead {
  font-size: 1.15rem;
  color: var(--purple);
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--gray-600);
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--pink-bg);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
}

.stat-icon {
  font-size: 1.2rem;
}

/* --- Services Section --- */
.services {
  background: var(--gray-50);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: height var(--transition);
}

.service-card[data-color="pink"]::before { background: linear-gradient(90deg, var(--pink), var(--pink-light)); }
.service-card[data-color="purple"]::before { background: linear-gradient(90deg, var(--purple), var(--purple-light)); }
.service-card[data-color="teal"]::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.service-card[data-color="yellow"]::before { background: linear-gradient(90deg, var(--yellow), #FFA500); }
.service-card[data-color="lavender"]::before { background: linear-gradient(90deg, var(--purple-light), var(--lavender)); }
.service-card[data-color="coral"]::before { background: linear-gradient(90deg, var(--coral), var(--pink)); }

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

.service-card:hover::before {
  height: 6px;
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  background: var(--pink-bg);
  transition: all var(--transition-bounce);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(5deg);
  background: var(--lavender);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-800);
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-tag {
  position: absolute;
  top: 3em;
  right: -3em;
  background: linear-gradient(135deg, var(--yellow), #FFA500);
  color: var(--gray-800);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

.services-cta p {
  margin-bottom: 16px;
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* --- Gallery Section --- */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

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

.gallery-item::after {
  content: attr(data-design);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

/* --- Service Area Section --- */
.area {
  background: var(--gray-50);
}

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

.area-content .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.area-content > p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.area-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.area-location {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}

.area-location:hover {
  transform: translateX(4px);
  border-color: var(--pink-pale);
  box-shadow: var(--shadow-sm);
}

.area-pin {
  font-size: 1.2rem;
}

.area-location strong {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.area-location span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.area-note {
  font-size: 0.95rem;
  color: var(--purple);
  font-weight: 500;
  font-style: italic;
}

.area-map-wrapper {
  position: relative;
}

.area-map-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--pink-bg), var(--lavender), var(--pink-pale));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.map-art {
  position: relative;
  width: 80%;
  height: 80%;
}

.map-radius {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  border: 2px dashed var(--pink);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  z-index: 3;
  animation: gentle-float 3s ease-in-out infinite;
}

.map-pin {
  position: absolute;
  font-size: 1.3rem;
  z-index: 2;
  animation: pin-drop 0.5s ease-out both;
}

.map-pin-1 { top: 30%; left: 45%; animation-delay: 0.2s; }
.map-pin-2 { top: 65%; left: 50%; animation-delay: 0.4s; }
.map-pin-3 { top: 40%; left: 25%; animation-delay: 0.6s; }
.map-pin-4 { top: 35%; left: 70%; animation-delay: 0.8s; }
.map-pin-5 { top: 55%; left: 35%; animation-delay: 1s; }

@keyframes pin-drop {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.map-label {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--purple);
  white-space: nowrap;
}

/* --- Booking Section --- */
.booking {
  background: var(--white);
  position: relative;
}

.booking::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--teal), var(--yellow), var(--coral), var(--pink));
  background-size: 200% 100%;
  animation: gradient-slide 8s linear infinite;
}

@keyframes gradient-slide {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.booking-form-wrapper {
  position: relative;
}

.booking-form {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-700);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

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

.form-group input.error,
.form-group select.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--coral);
  margin-top: 4px;
  display: none;
}

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

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

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 16px;
  margin-top: 8px;
}

.btn-submit .btn-loading {
  display: none;
}

.btn-submit.loading .btn-text {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: inline;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
}

.form-success.visible {
  display: block;
  animation: fade-in-up 0.5s ease-out;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: gentle-float 3s ease-in-out infinite;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--purple);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* Booking Info Cards */
.booking-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.info-card.highlight {
  background: linear-gradient(135deg, var(--pink-bg), var(--lavender));
  border-color: var(--pink-pale);
  text-align: left;
}

.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.info-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
}

.info-link:hover {
  color: var(--purple);
}

.info-list {
  margin-top: 8px;
}

.info-list li {
  font-size: 0.85rem;
  color: var(--gray-600);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
}

.info-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* --- Footer --- */
.footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.social-link:hover {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

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

.footer-links ul li a {
  font-size: 0.9rem;
  transition: all var(--transition);
}

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

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact ul li a:hover {
  color: var(--pink-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* --- Scroll Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--gray-600);
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .nav-link:hover {
    color: var(--pink);
    background: var(--pink-bg);
  }

  .nav-cta {
    background: linear-gradient(135deg, var(--pink), var(--purple)) !important;
    color: var(--white) !important;
    text-align: center;
    margin-top: 8px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-wrapper {
    max-width: 350px;
    margin: 0 auto;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Service Area */
  .area-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .area-locations {
    grid-template-columns: 1fr;
  }

  .area-map-placeholder {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Booking */
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 28px 20px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-trust {
    gap: 16px;
  }

  .trust-item {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* real images — no placeholder needed */

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

/* --- Selection Color --- */
::selection {
  background: var(--pink-pale);
  color: var(--gray-800);
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Print Styles --- */
@media print {
  .navbar, .back-to-top, .hero-bg-art, .paint-splash {
    display: none;
  }

  .hero {
    min-height: auto;
    background: none;
    color: black;
    padding: 40px;
  }

  .hero-title, .hero-subtitle {
    color: black;
    -webkit-text-fill-color: initial;
  }

  .section {
    padding: 40px 0;
  }
}
