/* 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', sans-serif;
  line-height: 1.6;
  color: #4A5568;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 50%, #F0E6FF 100%);
  min-height: 100vh;
}

/* Soft Pastel Color Palette */
:root {
  --pastel-pink: #FFB3D9;
  --pastel-blue: #A8D8EA;
  --pastel-lavender: #D4B5F0;
  --pastel-peach: #FFCBA4;
  --pastel-mint: #B8E6D5;
  --pastel-yellow: #FFF4A3;
  --text-dark: #5A5A5A;
  --text-light: #8B8B8B;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 24px rgba(255, 179, 217, 0.15);
  --shadow-hover: 0 12px 32px rgba(168, 216, 234, 0.25);
}

/* Typography - Soft & Dreamy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 300;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  font-weight: 300;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}

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

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

a:hover {
  color: var(--pastel-lavender);
}

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

/* Header - Floating & Dreamy */
header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 247, 0.9) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(255, 179, 217, 0.1);
  border-bottom: 1px solid rgba(255, 179, 217, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(168, 216, 234, 0.3));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: translateY(-2px) scale(1.05);
}

/* Navigation - Soft & Gentle */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 400;
  font-size: 15px;
  position: relative;
  padding: 8px 4px;
  transition: all 0.3s ease;
}

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

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

.main-nav a:hover {
  color: var(--pastel-pink);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF5F7 0%, #E8F4F8 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(168, 216, 234, 0.2);
  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: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-pink));
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

/* Hero Section - Dreamy & Ethereal */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 245, 247, 0.8) 0%, rgba(232, 244, 248, 0.8) 100%);
  border-radius: 32px;
  margin: 40px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--pastel-lavender) 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: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--pastel-blue) 0%, transparent 70%);
  opacity: 0.3;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

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

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-dark);
  text-shadow: 0 2px 8px rgba(255, 179, 217, 0.1);
}

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

/* Buttons - Soft & Inviting */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-blue) 100%);
}

.btn-secondary {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--pastel-pink);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(168, 216, 234, 0.1);
}

/* Sections */
.section,
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

section h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
}

/* Benefits Grid */
.benefits {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(232, 244, 248, 0.6) 100%);
  border-radius: 32px;
  margin: 40px 20px;
  padding: 60px 20px;
}

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

.benefit-card {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pastel-pink), var(--pastel-lavender), var(--pastel-blue));
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(255, 179, 217, 0.2));
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Services Grid */
.services-overview,
.services-detailed {
  padding: 60px 20px;
}

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

.service-card {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 179, 217, 0.05) 0%, rgba(212, 181, 240, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.service-price {
  font-size: 28px;
  font-weight: 500;
  color: var(--pastel-pink);
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  z-index: 1;
}

.service-highlights {
  list-style: none;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.service-highlights li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 14px;
  position: relative;
  padding-left: 24px;
}

.service-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-mint);
  font-weight: bold;
}

/* Service Detail */
.service-detail {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--pastel-pink);
  transition: all 0.3s ease;
}

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

.service-detail h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-detail ul {
  list-style: none;
  margin: 20px 0;
}

.service-detail ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-light);
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-blue);
  font-weight: bold;
  font-size: 18px;
}

.service-duration {
  color: var(--text-light);
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
}

/* Process Steps */
.process {
  background: linear-gradient(135deg, rgba(232, 244, 248, 0.6) 0%, rgba(240, 230, 255, 0.6) 100%);
  border-radius: 32px;
  margin: 40px 20px;
  padding: 60px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.step,
.process-step {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover,
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 500;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 16px rgba(255, 179, 217, 0.3);
}

.step h3,
.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step p,
.process-step p {
  font-size: 15px;
  color: var(--text-light);
}

.process-step h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 12px;
}

.process-step ul {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.process-step ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.process-step ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--pastel-mint);
  font-weight: bold;
}

.step-info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(168, 216, 234, 0.2);
  font-size: 14px;
  color: var(--text-light);
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 245, 247, 0.8) 100%);
  border-radius: 32px;
  margin: 40px 20px;
}

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

.testimonial-card {
  background: white;
  padding: 32px 28px;
  border-radius: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-left: 4px solid var(--pastel-lavender);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 60px;
  color: var(--pastel-pink);
  opacity: 0.2;
  font-family: Georgia, serif;
}

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

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(168, 216, 234, 0.2);
}

.testimonial-author strong {
  color: var(--text-dark);
  font-size: 16px;
}

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

/* Testimonial Detail */
.testimonials-featured {
  padding: 60px 20px;
}

.testimonial-detail {
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--pastel-blue);
}

.testimonial-detail h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-type {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}

/* Reviews Grid */
.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.review-card {
  background: white;
  padding: 24px 20px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 400px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.review-card p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-author {
  color: var(--text-light);
  font-size: 14px;
}

.review-author strong {
  color: var(--text-dark);
}

.rating {
  color: var(--pastel-yellow);
  font-size: 16px;
  margin-top: 8px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(255, 179, 217, 0.2));
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, var(--pastel-pink) 0%, var(--pastel-lavender) 50%, var(--pastel-blue) 100%);
  padding: 60px 20px;
  border-radius: 32px;
  margin: 40px 20px;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.4;
}

/* CTA Sections */
.cta-final,
.cta-services,
.cta {
  background: linear-gradient(135deg, rgba(255, 179, 217, 0.15) 0%, rgba(212, 181, 240, 0.15) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 32px;
  margin: 40px 20px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cta p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.benefits-list,
.cta-benefits {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.benefits-list span,
.cta-benefits span {
  font-size: 14px;
  color: var(--text-light);
  padding: 8px 16px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(168, 216, 234, 0.1);
}

/* Team Section */
.team {
  padding: 60px 20px;
}

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

.team-member {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

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

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.role {
  color: var(--pastel-lavender);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 16px;
  display: block;
}

/* Story & Mission */
.story,
.mission-vision {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.story h2,
.mission h2,
.values h2 {
  text-align: left;
  margin-bottom: 20px;
}

.story p,
.mission p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 24px;
}

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

.milestone {
  flex: 1 1 calc(50% - 20px);
  min-width: 200px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--pastel-blue);
}

.milestone strong {
  display: block;
  font-size: 24px;
  color: var(--pastel-pink);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.mission,
.values {
  margin-bottom: 40px;
}

.values ul {
  list-style: none;
}

.values ul li {
  padding: 16px;
  margin-bottom: 12px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.values ul li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
}

.values ul li strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 4px;
}

/* Location & Contact */
.location,
.office-location {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(232, 244, 248, 0.8) 100%);
  border-radius: 32px;
  margin: 40px 20px;
}

.location-details,
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: center;
}

.address,
.hours,
.transport {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.address h3,
.hours h3,
.transport h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 12px;
}

/* Contact Form Section */
.contact-form-section,
.contact-options {
  padding: 60px 20px;
}

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

.option-card {
  background: white;
  padding: 32px 24px;
  border-radius: 24px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 450px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.option-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(168, 216, 234, 0.2));
}

.option-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.option-card strong {
  color: var(--pastel-pink);
  font-size: 18px;
  display: block;
  margin: 12px 0;
}

.form-container {
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

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

.form-note p {
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 16px;
}

.form-note strong {
  color: var(--pastel-pink);
}

/* FAQ Section */
.faq-contact {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  border-left: 4px solid var(--pastel-mint);
}

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

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

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

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 8px;
}

.last-updated {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 40px;
}

.text-section {
  background: white;
  padding: 32px 28px;
  margin-bottom: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.text-section h2 {
  text-align: left;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.text-section h3 {
  text-align: left;
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 20px;
  color: var(--text-dark);
}

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

.text-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section ul li {
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

.text-section a {
  color: var(--pastel-blue);
  text-decoration: underline;
}

.text-section a:hover {
  color: var(--pastel-lavender);
}

/* Thank You Page */
.thank-you {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.checkmark-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pastel-mint), var(--pastel-blue));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(184, 230, 213, 0.4);
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.thank-you h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.next-steps {
  text-align: left;
  margin: 32px 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 179, 217, 0.1) 0%, rgba(212, 181, 240, 0.1) 100%);
  border-radius: 16px;
}

.next-steps h2 {
  text-align: left;
  font-size: 22px;
  margin-bottom: 16px;
}

.next-steps ol {
  padding-left: 24px;
}

.next-steps ol li {
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Pricing & Transparency */
.pricing-transparency {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(232, 244, 248, 0.8) 100%);
  border-radius: 32px;
  margin: 40px 20px;
  text-align: center;
}

.guarantee-list {
  list-style: none;
  max-width: 600px;
  margin: 32px auto 0;
  text-align: left;
}

.guarantee-list li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  color: var(--text-dark);
  font-size: 15px;
  transition: all 0.3s ease;
}

.guarantee-list li:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-hover);
}

/* Timeline */
.timeline {
  padding: 60px 20px;
}

.timeline-info {
  max-width: 700px;
  margin: 32px auto;
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.timeline-info p strong {
  font-size: 24px;
  color: var(--pastel-pink);
  display: block;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.timeline-info ul {
  list-style: none;
}

.timeline-info ul li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--text-dark);
  border-left: 2px solid var(--pastel-lavender);
  margin-left: 10px;
}

.timeline-info ul li::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--pastel-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 179, 217, 0.5);
}

/* Rating Display */
.rating-display {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.rating-number {
  font-size: 48px;
  font-weight: 500;
  color: var(--pastel-pink);
  font-family: 'Montserrat', sans-serif;
}

.rating-text {
  font-size: 16px;
  color: var(--text-light);
}

/* Indicators Grid */
.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.indicator {
  background: white;
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  max-width: 250px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

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

.indicator strong {
  display: block;
  font-size: 36px;
  color: var(--pastel-lavender);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.indicator p {
  font-size: 14px;
  color: var(--text-light);
}

/* Footer - Soft & Elegant */
footer {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 244, 248, 0.95) 100%);
  padding: 60px 20px 24px;
  margin-top: 60px;
  border-top: 2px solid rgba(255, 179, 217, 0.1);
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(168, 216, 234, 0.2));
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.footer-section p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--text-light);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--pastel-pink);
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(168, 216, 234, 0.2);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--text-light);
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 247, 0.98) 100%);
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(255, 179, 217, 0.2);
  z-index: 950;
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--pastel-pink);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
  color: white;
  box-shadow: var(--shadow-soft);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.cookie-btn-reject {
  background: white;
  color: var(--text-dark);
  border: 2px solid var(--pastel-pink);
}

.cookie-btn-reject:hover {
  background: var(--pastel-pink);
  color: white;
}

.cookie-btn-settings {
  background: transparent;
  color: var(--pastel-blue);
  border: 2px solid var(--pastel-blue);
}

.cookie-btn-settings:hover {
  background: var(--pastel-blue);
  color: white;
}

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 90, 90, 0.7);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(255, 179, 217, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  padding: 24px;
  border-bottom: 1px solid rgba(168, 216, 234, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 24px;
  color: var(--text-dark);
  margin: 0;
}

.modal-close {
  background: var(--pastel-pink);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  background: var(--pastel-lavender);
}

.modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 179, 217, 0.05) 0%, rgba(212, 181, 240, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(168, 216, 234, 0.2);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.category-header h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #D1D5DB;
  transition: 0.3s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
  background: linear-gradient(135deg, var(--pastel-pink), var(--pastel-lavender));
}

input:checked + .slider:before {
  transform: translateX(24px);
}

input:disabled + .slider {
  background: var(--pastel-mint);
  cursor: not-allowed;
}

.category-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(168, 216, 234, 0.2);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding: 60px 20px;
    margin: 20px 10px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .team-grid,
  .stats-grid,
  .options-grid,
  .reviews-grid {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card,
  .service-card,
  .step,
  .process-step,
  .testimonial-card,
  .team-member,
  .stat-item,
  .option-card,
  .review-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .modal-content {
    margin: 10px;
  }

  .section,
  section {
    padding: 40px 20px;
  }

  .milestones {
    flex-direction: column;
  }

  .milestone {
    flex: 1 1 100%;
  }

  .location-details {
    flex-direction: column;
  }

  .address,
  .hours,
  .transport {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 40px 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stat-number {
    font-size: 32px;
  }

  .service-price {
    font-size: 24px;
  }

  .rating-number {
    font-size: 36px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none !important;
  }

  body {
    background: white;
  }

  .hero,
  .benefits,
  .process,
  .testimonials,
  .stats,
  .cta-final {
    box-shadow: none;
    border: 1px solid #E5E7EB;
  }
}