/* ========================================
   VERDANT MENTOR - SOFT PASTEL DESIGN
   CSS Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.7;
  color: #4A5568;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F5E9 100%);
  overflow-x: hidden;
}

/* ========================================
   SOFT PASTEL COLOR PALETTE
   ======================================== */

:root {
  --pastel-mint: #B5EAD7;
  --pastel-lavender: #C7CEEA;
  --pastel-peach: #FFD1DC;
  --pastel-lemon: #FFF4B5;
  --pastel-sage: #E8F5E9;
  --soft-green: #7A9D54;
  --deep-green: #2D5016;
  --warm-peach: #F4A460;
  --soft-white: #FEFEFE;
  --light-text: #6B7280;
  --dark-text: #2D3748;
  --shadow-soft: rgba(199, 206, 234, 0.2);
}

/* ========================================
   TYPOGRAPHY - DREAMY & SOFT
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--light-text);
  line-height: 1.8;
}

a {
  color: var(--soft-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--deep-green);
  transform: translateY(-1px);
}

ul {
  list-style: none;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

/* ========================================
   HEADER & NAVIGATION - SOFT & FLOATING
   ======================================== */

header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--pastel-lavender);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 32px;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05) rotate(2deg);
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--dark-text);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pastel-peach), var(--pastel-lavender));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-button {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lavender) 100%);
  color: var(--dark-text);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(255, 209, 220, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 209, 220, 0.6);
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-peach) 100%);
}

/* ========================================
   MOBILE MENU - DREAMY SLIDE-IN
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-lavender));
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--dark-text);
  cursor: pointer;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 30px var(--shadow-soft);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--pastel-peach);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--dark-text);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--pastel-lavender);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px var(--shadow-soft);
}

.mobile-nav a:hover {
  background: var(--soft-white);
  transform: translateX(10px);
  box-shadow: 0 4px 20px var(--shadow-soft);
}

@media (max-width: 768px) {
  .nav-menu,
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    justify-content: center;
  }
}

/* ========================================
   HERO SECTION - DREAMY & INSPIRING
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 50%, var(--pastel-lavender) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50px 50px;
  box-shadow: 0 10px 40px var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--pastel-peach) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--pastel-lemon) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--deep-green);
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px var(--shadow-soft);
}

.hero-subheadline {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--pastel-peach) 100%);
  color: var(--dark-text);
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 6px 25px rgba(244, 164, 96, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(244, 164, 96, 0.6);
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--warm-peach) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-green);
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid var(--pastel-lavender);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-soft);
  background: var(--soft-white);
  border-color: var(--pastel-peach);
}

.trust-badge {
  color: var(--soft-green);
  font-weight: 600;
  font-size: 14px;
}

/* ========================================
   HERO INTERNAL PAGES - SOFT HEADER
   ======================================== */

.hero-internal {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.breadcrumbs {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--soft-green);
}

.hero-internal h1 {
  text-align: center;
  margin-bottom: 16px;
}

.hero-internal p {
  text-align: center;
  font-size: 18px;
  color: var(--light-text);
}

/* ========================================
   SECTIONS - SOFT SPACING & LAYOUT
   ======================================== */

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   FEATURES SECTION - PASTEL CARDS
   ======================================== */

.features {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 250px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  padding: 32px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-soft);
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
}

.feature-item h3 {
  color: var(--deep-green);
  font-size: 20px;
}

.feature-item p {
  color: var(--light-text);
  line-height: 1.7;
}

/* ========================================
   SERVICES PREVIEW - SOFT CARDS
   ======================================== */

.services-preview {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lemon) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(255, 209, 220, 0.3);
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 320px;
  max-width: 360px;
  background: var(--soft-white);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(199, 206, 234, 0.4);
}

.service-card h3 {
  color: var(--deep-green);
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--light-text);
  margin-bottom: 20px;
}

.service-card .price {
  color: var(--warm-peach);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
}

.services-preview .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ========================================
   BENEFITS SECTION - DREAMY LAYOUT
   ======================================== */

.benefits {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-soft);
}

.benefit-item h3 {
  color: var(--deep-green);
  font-size: 20px;
  margin-bottom: 16px;
}

.benefit-item p {
  color: var(--light-text);
}

/* ========================================
   TESTIMONIALS - SOFT & READABLE
   ======================================== */

.testimonials {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-lemon) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  flex: 1 1 450px;
  max-width: 550px;
  background: var(--soft-white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-soft);
}

.testimonial-card p {
  color: var(--dark-text);
  font-style: italic;
  line-height: 1.8;
  font-size: 16px;
}

.testimonial-card .author {
  color: var(--soft-green);
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0;
}

/* ========================================
   CTA SECTION - DREAMY GRADIENT
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lavender) 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 209, 220, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--pastel-mint) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  position: relative;
  z-index: 1;
}

.trust-element {
  margin-top: 24px;
  color: var(--soft-green);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* ========================================
   QUICK INFO - SOFT GRID
   ======================================== */

.quick-info {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.quick-info h2 {
  text-align: center;
  margin-bottom: 48px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.info-item {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sage) 100%);
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px var(--shadow-soft);
}

.info-item h3 {
  color: var(--deep-green);
  font-size: 18px;
  margin-bottom: 12px;
}

.info-item p {
  color: var(--light-text);
  margin-bottom: 0;
}

/* ========================================
   STORY & TEXT SECTIONS - SOFT CONTENT
   ======================================== */

.story, .values, .team, .stats,
.content-introduction, .pricing-introduction,
.contact-introduction, .office-info, .map {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, var(--pastel-lemon) 0%, var(--pastel-peach) 100%);
  padding: 20px 24px;
  border-radius: 15px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 244, 181, 0.4);
}

/* ========================================
   VALUES GRID - PASTEL LAYOUT
   ======================================== */

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item {
  flex: 1 1 260px;
  max-width: 300px;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-peach) 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px var(--shadow-soft);
}

.value-item h3 {
  color: var(--deep-green);
  margin-bottom: 16px;
}

.value-item p {
  color: var(--light-text);
}

/* ========================================
   TEAM SECTION - SOFT CARDS
   ======================================== */

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 350px;
  max-width: 450px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 6px 25px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-soft);
}

.team-member h3 {
  color: var(--deep-green);
  margin-bottom: 8px;
}

.team-member .role {
  color: var(--soft-green);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  color: var(--light-text);
}

/* ========================================
   STATS SECTION - PASTEL NUMBERS
   ======================================== */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 220px;
  max-width: 250px;
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lemon) 100%);
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 244, 181, 0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--light-text);
  font-weight: 600;
  margin-bottom: 0;
}

/* ========================================
   SERVICES DETAILED - SOFT LAYOUT
   ======================================== */

.services-detailed {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.service-detail {
  background: var(--soft-white);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.service-detail h3 {
  color: var(--deep-green);
  margin-bottom: 16px;
}

.service-detail .price {
  color: var(--warm-peach);
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
}

.service-detail p {
  color: var(--light-text);
  margin-bottom: 12px;
}

.service-detail strong {
  color: var(--dark-text);
}

/* ========================================
   FAQ SECTION - SOFT ACCORDION
   ======================================== */

.faq {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.faq h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 28px 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.faq-item h3 {
  color: var(--deep-green);
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--light-text);
  margin-bottom: 0;
}

/* ========================================
   GALLERY SECTIONS - PASTEL CARDS
   ======================================== */

.categories-grid,
.featured-moments,
.seasons-showcase {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.gallery-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-item {
  flex: 1 1 260px;
  max-width: 300px;
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lavender) 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 209, 220, 0.5);
}

.category-item h3 {
  color: var(--deep-green);
  margin-bottom: 12px;
}

.category-item p {
  color: var(--light-text);
}

.category-item .count {
  color: var(--soft-green);
  font-weight: 600;
  margin-bottom: 0;
}

.moments-grid,
.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.moment-item,
.season-item {
  flex: 1 1 350px;
  max-width: 450px;
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-sage) 100%);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.moment-item:hover,
.season-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-soft);
}

/* ========================================
   PRICING SECTIONS - SOFT PRICING CARDS
   ======================================== */

.pricing-table {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-lemon) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.price-item {
  background: var(--soft-white);
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.price-item h3 {
  color: var(--deep-green);
  margin-bottom: 16px;
}

.price-item .price {
  color: var(--warm-peach);
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
}

.price-item p {
  color: var(--light-text);
  margin-bottom: 8px;
}

.group-discounts,
.payment-methods {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.group-discounts ul,
.payment-methods ul {
  max-width: 700px;
  margin: 24px auto 0;
}

.group-discounts li,
.payment-methods li {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: var(--dark-text);
  font-weight: 500;
}

/* ========================================
   CONTACT SECTIONS - SOFT LAYOUT
   ======================================== */

.contact-methods {
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lemon) 100%);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(255, 209, 220, 0.4);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 350px;
  max-width: 450px;
  background: var(--soft-white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px var(--shadow-soft);
}

.contact-method h3 {
  color: var(--deep-green);
  margin-bottom: 16px;
}

.contact-method p {
  color: var(--light-text);
  margin-bottom: 12px;
}

.contact-form {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.form-placeholder {
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 40px 32px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.form-placeholder p {
  color: var(--dark-text);
  font-weight: 600;
  margin-bottom: 16px;
}

/* ========================================
   LEGAL CONTENT - SOFT TYPOGRAPHY
   ======================================== */

.legal-content {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.legal-content h2 {
  color: var(--deep-green);
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content p,
.legal-content ul li {
  color: var(--light-text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 12px;
}

/* ========================================
   THANK YOU PAGE - SOFT SUCCESS
   ======================================== */

.thank-you-message {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pastel-peach), var(--warm-peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--soft-white);
  margin: 0 auto 32px;
  box-shadow: 0 6px 25px rgba(244, 164, 96, 0.4);
}

.thank-you-message h2 {
  margin-bottom: 24px;
}

.thank-you-message h3 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.thank-you-message ul {
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-message li {
  background: var(--soft-white);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: var(--dark-text);
  list-style: none;
}

.next-steps,
.contact-reminder {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.link-item {
  flex: 1 1 220px;
  max-width: 280px;
  margin-bottom: 20px;
}

.link-item a {
  display: block;
  background: linear-gradient(135deg, var(--pastel-peach) 0%, var(--pastel-lavender) 100%);
  padding: 24px 20px;
  border-radius: 15px;
  text-align: center;
  color: var(--dark-text);
  font-weight: 600;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
}

.link-item a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px var(--shadow-soft);
}

/* ========================================
   FOOTER - SOFT & DREAMY
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--pastel-sage) 0%, var(--pastel-mint) 100%);
  padding: 60px 20px 24px;
  margin-top: 80px;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -8px 30px var(--shadow-soft);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--deep-green);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col li {
  color: var(--light-text);
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-col a {
  color: var(--light-text);
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--deep-green);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid var(--pastel-lavender);
}

.footer-bottom p {
  color: var(--light-text);
  margin-bottom: 0;
}

/* ========================================
   COOKIE CONSENT BANNER - SOFT DESIGN
   ======================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-mint) 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 30px var(--shadow-soft);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid var(--pastel-peach);
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 300px;
  color: var(--dark-text);
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--warm-peach), var(--pastel-peach));
  color: var(--dark-text);
  box-shadow: 0 4px 15px rgba(244, 164, 96, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(244, 164, 96, 0.6);
}

.cookie-reject {
  background: var(--soft-white);
  color: var(--dark-text);
  box-shadow: 0 2px 10px var(--shadow-soft);
}

.cookie-reject:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.cookie-settings {
  background: transparent;
  color: var(--dark-text);
  border: 2px solid var(--pastel-lavender);
}

.cookie-settings:hover {
  background: var(--soft-white);
  transform: translateY(-2px);
}

/* ========================================
   COOKIE MODAL - DREAMY POPUP
   ======================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--soft-white);
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: var(--deep-green);
  margin-bottom: 24px;
}

.cookie-category {
  background: linear-gradient(135deg, var(--pastel-sage), var(--pastel-mint));
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--deep-green);
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--soft-green);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-category p {
  color: var(--light-text);
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .features,
  .services-preview,
  .benefits,
  .testimonials,
  .cta-section,
  .quick-info,
  .story,
  .values,
  .team,
  .stats,
  .services-detailed,
  .faq,
  .categories-grid,
  .featured-moments,
  .seasons-showcase,
  .pricing-table,
  .pricing-introduction,
  .group-discounts,
  .payment-methods,
  .contact-methods,
  .contact-introduction,
  .office-info,
  .map,
  .contact-form,
  .legal-content,
  .thank-you-message,
  .next-steps,
  .contact-reminder {
    padding: 40px 24px;
  }
  
  .features-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .info-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .gallery-categories,
  .moments-grid,
  .seasons-grid,
  .contact-grid,
  .links-grid {
    gap: 20px;
  }
  
  .feature-item,
  .service-card,
  .benefit-item,
  .testimonial-card,
  .info-item,
  .value-item,
  .team-member,
  .stat-item,
  .category-item,
  .moment-item,
  .season-item,
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .feature-item,
  .service-card,
  .benefit-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .stat-item,
  .info-item {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ========================================
   UTILITY CLASSES - SOFT HELPERS
   ======================================== */

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.soft-shadow {
  box-shadow: 0 4px 20px var(--shadow-soft);
}

.pastel-gradient {
  background: linear-gradient(135deg, var(--pastel-mint) 0%, var(--pastel-lavender) 100%);
}

/* ========================================
   ANIMATIONS - DREAMY MOVEMENTS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   SMOOTH SCROLLING & ACCESSIBILITY
   ======================================== */

:focus-visible {
  outline: 3px solid var(--pastel-lavender);
  outline-offset: 3px;
  border-radius: 4px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

button {
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .hero,
  section {
    page-break-inside: avoid;
  }
}