/* ============================================
   SAMULIN KAKKU — Custom Theme CSS
   Premium Design | Hot pink + Yellow + Turquoise + Purple
   ============================================ */

:root {
  --hot-pink: #FF1493;
  --yellow: #FFE000;
  --turquoise: #00D4FF;
  --purple: #8B2FC9;
  --dark-purple: #5B1A8A;
  --light-pink: #FFB3DA;
  --white: #FFFFFF;
  --off-white: #FFF9FF;
  --text-dark: #1A1A2E;
  --text-medium: #444466;
  --text-light: #888899;
  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 32px rgba(139, 47, 201, 0.15);
  --shadow-hover: 0 16px 48px rgba(139, 47, 201, 0.25);
  --border-radius: 16px;
  --border-radius-lg: 24px;
}

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

html { scroll-behavior: smooth; }

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

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

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

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

.section-padding { padding: 80px 0; }

/* ============================================ NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  padding: 0;
}

.navbar.scrolled {
  border-bottom-color: var(--light-pink);
  box-shadow: 0 4px 24px rgba(255, 20, 147, 0.1);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--hot-pink);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

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

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-medium);
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link:hover { color: var(--hot-pink); }
.nav-link.active { color: var(--hot-pink); }

.nav-cta {
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(255, 20, 147, 0.3);
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 20, 147, 0.4);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--hot-pink);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

/* Mobile overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--dark-purple) 50%, #2D0045 100%);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.mobile-nav-list {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav-link:hover {
  color: var(--yellow);
  transform: scale(1.05);
}

.mobile-nav-cta {
  display: inline-block;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--hot-pink), var(--yellow));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.4);
}

/* ============================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 20, 147, 0.45);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--yellow), #FFB300);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(255, 224, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 224, 0, 0.45);
}

.btn-white {
  background: var(--white);
  color: var(--purple);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

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

/* ============================================ HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: linear-gradient(135deg, #FFF0FA 0%, #F0F0FF 30%, #E8FAFF 60%, #F5F0FF 100%);
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
  opacity: 0.4;
}

.p1 { top: 15%; left: 5%; animation-delay: 0s; }
.p2 { top: 25%; right: 8%; animation-delay: 1s; }
.p3 { top: 60%; left: 3%; animation-delay: 2s; }
.p4 { bottom: 20%; right: 5%; animation-delay: 0.5s; }
.p5 { top: 40%; left: 45%; animation-delay: 1.5s; }
.p6 { bottom: 35%; left: 8%; animation-delay: 3s; }

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Single column - content takes full width when no image */
.hero-content > *:not(.hero-image-wrap) {
  grid-column: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(139,47,201,0.1));
  border: 1px solid rgba(255,20,147,0.2);
  color: var(--hot-pink);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-title-highlight {
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
}

.hero-image-wrap {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 7;
}

.hero-image-container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(139,47,201,0.2);
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(139,47,201,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 33px;
  background: linear-gradient(135deg, var(--hot-pink), var(--yellow), var(--turquoise), var(--purple));
  z-index: -1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-img::after {
  content: '🎂';
  font-size: 8rem;
  display: block;
}

/* ============================================ SECTIONS */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--hot-pink), var(--purple));
  border-radius: 4px;
  margin: 12px auto 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================ FEATURES */
.features-section {
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  padding: 32px;
  border-radius: var(--border-radius-lg);
  background: var(--off-white);
  border: 1px solid rgba(255,20,147,0.08);
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,20,147,0.2);
  background: var(--white);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================ SERVICES */
.services-preview {
  background: linear-gradient(135deg, #FFF0FA 0%, #F5F0FF 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,20,147,0.15);
}

.service-card.featured {
  border-color: var(--hot-pink);
  background: linear-gradient(135deg, #FFF0FA, #FAF0FF);
}

.service-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.service-emoji {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.service-link {
  color: var(--hot-pink);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.service-link:hover {
  gap: 8px;
  color: var(--purple);
}

.center { text-align: center; }

/* ============================================ TESTIMONIALS */
.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  border: 1px solid rgba(139,47,201,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(255,20,147,0.1);
  line-height: 1;
  font-weight: 700;
}

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

.testimonial-stars {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

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

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================ CTA SECTION */
.cta-section {
  background: var(--off-white);
}

.cta-box {
  background: linear-gradient(135deg, var(--purple) 0%, var(--dark-purple) 40%, #2D0045 100%);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,20,147,0.2) 0%, transparent 70%);
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
}

.cta-emoji {
  font-size: 4rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ============================================ PAGE HERO */
.page-hero {
  padding: 120px 24px 60px;
  background: linear-gradient(135deg, #FFF0FA 0%, #F5F0FF 50%, #E8FAFF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hot-pink), var(--yellow), var(--turquoise), var(--purple));
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================ CONTENT SECTION */
.content-section {
  padding: 60px 0 80px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 40px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,20,147,0.15);
}

.content-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--purple);
  margin: 28px 0 12px;
}

.content-wrapper p {
  color: var(--text-medium);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.content-wrapper ul, .content-wrapper ol {
  margin: 16px 0;
  padding-left: 24px;
  list-style: none;
}

.content-wrapper ul li {
  color: var(--text-medium);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.content-wrapper ul li::before {
  content: '✨';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

/* ============================================ SERVICES PAGE */
.services-page-section {
  padding: 60px 0 80px;
}

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.service-page-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.service-page-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255,20,147,0.2);
}

.service-card-header {
  padding: 40px 32px 24px;
  background: linear-gradient(135deg, #FFF0FA 0%, #F5F0FF 100%);
  text-align: center;
}

.service-card-header .emoji {
  font-size: 4rem;
  display: block;
  margin-bottom: 12px;
}

.service-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-card-header .price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-card-body {
  padding: 24px 32px 32px;
}

.service-card-body p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  color: var(--text-medium);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before {
  content: '✓';
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================ CONTACT */
.contact-section {
  padding: 60px 0 80px;
}

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

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

.contact-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.contact-card p, .contact-card a {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.contact-card a:hover {
  color: var(--hot-pink);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-dark);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(139,47,201,0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--hot-pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,20,147,0.1);
}

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

/* ============================================ ABOUT */
.about-section {
  padding: 60px 0 80px;
}

.about-hero-box {
  background: linear-gradient(135deg, var(--purple), var(--dark-purple));
  border-radius: 32px;
  padding: 60px;
  color: var(--white);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.about-hero-box::after {
  content: '🎂';
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.15;
}

.about-hero-box h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.about-hero-box p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 600px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
}

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

.value-card:nth-child(1) { border-bottom-color: var(--hot-pink); }
.value-card:nth-child(2) { border-bottom-color: var(--yellow); }
.value-card:nth-child(3) { border-bottom-color: var(--turquoise); }
.value-card:nth-child(4) { border-bottom-color: var(--purple); }

.value-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================ FOOTER */
.site-footer {
  background: linear-gradient(135deg, var(--text-dark) 0%, #2D0045 100%);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--hot-pink);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

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

.social-link {
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--hot-pink);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav ul li a::before {
  content: '→';
  color: var(--hot-pink);
  font-size: 0.8rem;
}

.footer-nav ul li a:hover {
  color: var(--white);
  gap: 10px;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact a {
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--hot-pink);
}

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

/* ============================================ REVEAL ANIMATIONS */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.animate {
  opacity: 0;
  transform: translateY(30px);
}

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

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

/* ============================================ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrap {
    grid-column: 1;
    grid-row: auto;
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-buttons, .hero-stats {
    justify-content: center;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }

  .hero-content {
    padding: 40px 24px;
    gap: 40px;
  }

  .section-padding { padding: 56px 0; }

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

  .cta-box {
    padding: 48px 24px;
  }

  .about-hero-box {
    padding: 40px 32px;
  }

  .about-hero-box::after { display: none; }

  .contact-form-wrap {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
}

/* ============================================ UTILS */
.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
/* ============================================
   WP-STYLE HERO & SECTIONS (v5)
   Matching samulin-kakku.morko.posso.fi
   ============================================ */

/* ---- WP Hero ---- */
.wp-hero {
  background: linear-gradient(135deg, var(--hot-pink) 0%, var(--purple) 60%, #1A0A2E 100%);
  color: var(--white);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  padding-top: calc(72px + 5rem);
}

.wp-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,224,0,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wp-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,212,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wp-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.wp-hero-badge {
  display: inline-block;
  background: rgba(255,224,0,0.2);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.wp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.wp-hero-title span {
  background: linear-gradient(90deg, var(--yellow), var(--turquoise));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wp-hero-desc {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 480px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

.wp-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.wp-btn-secondary {
  background: var(--yellow);
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(255,224,0,0.4);
  font-weight: 700;
}
.wp-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,224,0,0.5);
  color: var(--text-dark);
}

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

.wp-hero-image {
  position: relative;
}

.wp-hero-image img {
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  width: 100%;
  animation: wpFloat 4s ease-in-out infinite;
}

.hero-cake-emoji {
  font-size: 10rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

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

.wp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wp-hero-wave svg { display: block; }

/* ---- WP Sections ---- */
.wp-section {
  padding: 5rem 0;
  background: #FFFBF0;
}

.wp-section-alt {
  background: var(--off-white);
}

.wp-section-dark {
  background: #1A0A2E;
  color: var(--white);
}

.wp-section-header {
  margin-bottom: 3rem;
}

.wp-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

.wp-section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Services Grid ---- */
.wp-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.wp-service-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(26,10,46,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--hot-pink);
}

.wp-service-card:nth-child(2) { border-top-color: var(--yellow); }
.wp-service-card:nth-child(3) { border-top-color: var(--turquoise); }

.wp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(255,20,147,0.2);
}

.wp-service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.wp-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.wp-service-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Why Us (dark section) ---- */
.wp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wp-features-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wp-feature-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.wp-feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.wp-feature-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

/* ---- Process Steps ---- */
.wp-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.wp-process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--hot-pink), var(--turquoise));
  z-index: 0;
}

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

.wp-step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hot-pink), var(--purple));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(255,20,147,0.35);
}

.wp-process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.wp-process-step p {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---- CTA Banner ---- */
.wp-cta-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--hot-pink) 50%, var(--purple) 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.wp-cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wp-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.wp-cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.wp-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.wp-cta-banner .btn-primary {
  background: var(--white);
  color: var(--hot-pink);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.wp-cta-banner .btn-primary:hover {
  background: #1A0A2E;
  color: var(--white);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .wp-hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .wp-hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .wp-hero-buttons { justify-content: center; }
  .wp-hero-desc { margin-left: auto; margin-right: auto; }

  .wp-services-grid,
  .wp-process-steps { grid-template-columns: 1fr; }

  .wp-why-grid { grid-template-columns: 1fr; }
  .wp-why-image { display: none; }

  .wp-process-steps::before { display: none; }
}

@media (max-width: 600px) {
  .wp-hero { padding: calc(72px + 3rem) 0 3rem; }
  .wp-hero-title { font-size: 2.2rem; }
  .wp-hero-buttons { flex-direction: column; align-items: center; }
  .wp-cta-buttons { flex-direction: column; align-items: center; }
}
