/* ===================================
   SHIMMERING RIVER - SOFT PASTEL DESIGN
   Complete CSS Styles - All Pages
   Design Style: Soft Pastel
   =================================== */

/* ===================================
   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: #4A4A4A;
  background: linear-gradient(135deg, #FFF5F7 0%, #F0E6F6 100%);
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - SOFT PASTEL STYLE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #7B6B8F;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #5A5A5A;
  line-height: 1.7;
}

a {
  color: #9B8FAA;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C4A7E7;
}

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

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

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

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

header {
  background: linear-gradient(135deg, #FFE6F0 0%, #E6E6FA 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(200, 180, 220, 0.15);
  backdrop-filter: blur(10px);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(200, 180, 220, 0.2));
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #7B6B8F;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  color: #6B5B7B;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.3);
}

/* ===================================
   MOBILE MENU - SOFT PASTEL STYLE
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  color: #6B5B7B;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 16px rgba(200, 180, 220, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FFE6F0 0%, #E6E6FA 100%);
  z-index: 1200;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(200, 180, 220, 0.3);
  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: transparent;
  color: #7B6B8F;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.2);
  color: #C4A7E7;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #7B6B8F;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-align: left;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  transform: translateX(8px);
  color: #6B5B7B;
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.3);
}

/* ===================================
   BUTTONS - SOFT PASTEL DESIGN
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #C4A7E7 0%, #9B8FAA 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4B7F7 0%, #AB9FBA 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.4);
  color: #FFFFFF;
}

.btn-secondary {
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  color: #6B5B7B;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #FFE4F0 0%, #F0CBF4 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.4);
  color: #5B4B6B;
}

/* ===================================
   HERO SECTION - SOFT PASTEL
   =================================== */

.hero {
  background: linear-gradient(135deg, #FFF0F5 0%, #E6E6FA 50%, #FFE6F0 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 40px 20px;
  box-shadow: 0 8px 24px rgba(200, 180, 220, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 193, 249, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 212, 229, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, 20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #7B6B8F;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(200, 180, 220, 0.2);
}

.hero-subheadline {
  font-size: 20px;
  color: #6B5B7B;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #7B6B8F;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(200, 180, 220, 0.2);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

/* ===================================
   PAGE HERO - SOFT PASTEL
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #FFE6F0 0%, #E0BBE4 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px 20px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.25);
}

.page-hero h1 {
  color: #6B5B7B;
  font-size: 42px;
  margin-bottom: 16px;
  text-shadow: 1px 1px 3px rgba(200, 180, 220, 0.2);
}

.page-hero p {
  font-size: 18px;
  color: #7B6B8F;
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================
   SECTION STYLES - SOFT PASTEL
   =================================== */

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #7B6B8F;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #7B6B8F;
}

/* ===================================
   CARDS & GRIDS - FLEXBOX ONLY
   =================================== */

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

.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.trust-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 350px;
  min-height: 200px;
  margin-bottom: 20px;
  position: relative;
}

.benefit-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C4A7E7 0%, #FFD4E5 100%);
  border-radius: 20px 20px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(200, 180, 220, 0.3);
}

.benefit-card h3,
.service-card h3,
.value-card h3 {
  color: #7B6B8F;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.value-card p {
  color: #6B5B7B;
  line-height: 1.6;
}

.price,
.price-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #C4A7E7 0%, #9B8FAA 100%);
  color: #FFFFFF;
  font-weight: 600;
  border-radius: 16px;
  font-size: 18px;
}

/* ===================================
   TESTIMONIALS - SOFT PASTEL
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #FFF0F5 0%, #E6E6FA 100%);
  padding: 60px 20px;
  border-radius: 24px;
  margin: 60px 20px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(200, 180, 220, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  min-height: 180px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: #E0BBE4;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #4A4A4A;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card strong {
  color: #7B6B8F;
  font-weight: 600;
  font-size: 16px;
  font-style: normal;
}

.testimonial-card span {
  color: #9B8FAA;
  font-size: 14px;
}

/* ===================================
   PROCESS STEPS - SOFT PASTEL
   =================================== */

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  padding: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(200, 180, 220, 0.15);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(200, 180, 220, 0.25);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(135deg, #C4A7E7 0%, #FFD4E5 100%);
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.3);
}

.step h3 {
  color: #7B6B8F;
  margin-bottom: 12px;
  font-size: 18px;
}

.step p {
  color: #6B5B7B;
  font-size: 14px;
}

/* ===================================
   DETAILED STEPS
   =================================== */

.step-detailed {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(200, 180, 220, 0.15);
  transition: all 0.3s ease;
}

.step-detailed:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.25);
}

.step-detailed .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
}

.step-detailed h3 {
  color: #7B6B8F;
  margin-bottom: 12px;
}

.step-detailed p {
  color: #6B5B7B;
  margin-bottom: 12px;
}

.step-detailed ul {
  margin-top: 12px;
  padding-left: 20px;
}

.step-detailed li {
  color: #6B5B7B;
  margin-bottom: 8px;
  list-style-type: disc;
}

/* ===================================
   SERVICE CARDS FULL WIDTH
   =================================== */

.service-card-full {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.service-card-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #C4A7E7 0%, #FFD4E5 100%);
  border-radius: 20px 20px 0 0;
}

.service-card-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(200, 180, 220, 0.25);
}

.service-card-full h2 {
  color: #7B6B8F;
  text-align: left;
  margin-bottom: 16px;
  font-size: 28px;
}

.service-card-full p {
  color: #6B5B7B;
  margin-bottom: 16px;
  font-size: 16px;
}

.service-card-full ul {
  margin-top: 20px;
  padding-left: 24px;
}

.service-card-full li {
  color: #6B5B7B;
  margin-bottom: 10px;
  list-style-type: disc;
}

/* ===================================
   TIMELINE & MILESTONES
   =================================== */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #C4A7E7 0%, #FFD4E5 100%);
  border-radius: 2px;
}

.milestone {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.milestone::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 25px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #C4A7E7 0%, #FFD4E5 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #FFFFFF;
}

.milestone:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.25);
}

.milestone .year {
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  color: #9B8FAA;
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  padding: 6px 16px;
  border-radius: 12px;
  align-self: flex-start;
}

.milestone h3 {
  color: #7B6B8F;
  margin-bottom: 8px;
}

.milestone p {
  color: #6B5B7B;
}

/* ===================================
   PORTFOLIO & PROJECT CARDS
   =================================== */

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

.project-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 400px;
  margin-bottom: 20px;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(200, 180, 220, 0.25);
}

.project-card h3 {
  color: #7B6B8F;
  margin-bottom: 12px;
  font-size: 20px;
}

.project-card p {
  color: #6B5B7B;
  margin-bottom: 16px;
  line-height: 1.6;
}

.project-meta {
  font-size: 13px;
  color: #9B8FAA;
  font-style: italic;
  display: block;
  margin-top: 12px;
}

/* ===================================
   STATS ROW
   =================================== */

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(200, 180, 220, 0.2);
  flex: 1 1 200px;
  max-width: 250px;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(200, 180, 220, 0.3);
}

.stat strong {
  font-size: 36px;
  font-weight: 700;
  color: #6B5B7B;
  margin-bottom: 8px;
  display: block;
}

.stat span {
  font-size: 14px;
  color: #7B6B8F;
  font-weight: 600;
}

/* ===================================
   CTA SECTIONS - SOFT PASTEL
   =================================== */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #C4A7E7 0%, #9B8FAA 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 60px 20px;
  box-shadow: 0 8px 24px rgba(200, 180, 220, 0.3);
}

.cta-final h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-final p,
.cta-section p {
  color: #FFF5F8;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final .btn-primary,
.cta-section .btn-primary {
  background: #FFFFFF;
  color: #7B6B8F;
}

.cta-final .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #FFF5F8;
  color: #6B5B7B;
}

/* ===================================
   FORMS - SOFT PASTEL STYLE
   =================================== */

.form-preview {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
  margin-top: 32px;
}

.form-preview h3 {
  color: #7B6B8F;
  margin-bottom: 16px;
  font-size: 22px;
}

.form-preview p {
  color: #6B5B7B;
  margin-bottom: 12px;
}

.form-preview ul {
  padding-left: 24px;
  margin-top: 12px;
}

.form-preview li {
  color: #6B5B7B;
  margin-bottom: 8px;
}

.form-note {
  background: linear-gradient(135deg, #FFE6F0 0%, #E0BBE4 100%);
  padding: 16px 24px;
  border-radius: 12px;
  color: #6B5B7B;
  font-size: 14px;
  margin-bottom: 24px;
  border-left: 4px solid #C4A7E7;
}

/* ===================================
   CONTACT CARDS & METHODS
   =================================== */

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

.contact-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
  flex: 1 1 300px;
  max-width: 450px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(200, 180, 220, 0.25);
}

.contact-card h3 {
  color: #7B6B8F;
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-card p {
  color: #6B5B7B;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-card strong {
  color: #7B6B8F;
}

/* ===================================
   FOOTER - SOFT PASTEL
   =================================== */

footer {
  background: linear-gradient(135deg, #7B6B8F 0%, #9B8FAA 100%);
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column img {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  color: #FFE6F0;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-column p {
  color: #FFF5F8;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: #FFE6F0;
  margin-bottom: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #FFFFFF;
  transform: translateX(5px);
}

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

.footer-bottom p {
  color: #FFE6F0;
  font-size: 14px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #7B6B8F 0%, #9B8FAA 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(123, 107, 143, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  color: #FFF5F8;
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  color: #6B5B7B;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #FFE4F0 0%, #F0CBF4 100%);
  transform: scale(1.05);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.3);
}

.cookie-settings {
  background: transparent;
  color: #FFE6F0;
  border: 2px solid #FFE6F0;
}

.cookie-settings:hover {
  background: rgba(255, 230, 240, 0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ===================================
   COOKIE MODAL - SOFT PASTEL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(123, 107, 143, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(123, 107, 143, 0.4);
  position: relative;
}

.cookie-modal h3 {
  color: #7B6B8F;
  margin-bottom: 24px;
  font-size: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(228, 193, 249, 0.1);
  border-radius: 12px;
  border-left: 4px solid #C4A7E7;
}

.cookie-category h4 {
  color: #7B6B8F;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  color: #6B5B7B;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle label {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

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

.cookie-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: linear-gradient(135deg, #C4A7E7 0%, #9B8FAA 100%);
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.cookie-save {
  background: linear-gradient(135deg, #C4A7E7 0%, #9B8FAA 100%);
  color: #FFFFFF;
}

.cookie-save:hover {
  background: linear-gradient(135deg, #D4B7F7 0%, #AB9FBA 100%);
  transform: scale(1.05);
}

/* ===================================
   LISTS & CONTENT
   =================================== */

ul, ol {
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.benefits-list ul,
.specializations {
  list-style: none;
  padding-left: 0;
}

.benefits-list li,
.specializations li {
  padding-left: 32px;
  position: relative;
  color: #6B5B7B;
  margin-bottom: 12px;
}

.benefits-list li::before,
.specializations li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C4A7E7;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
}

.legal-page h1 {
  color: #7B6B8F;
  margin-bottom: 24px;
  font-size: 36px;
}

.legal-page h2 {
  color: #7B6B8F;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
  text-align: left;
}

.legal-page p {
  color: #6B5B7B;
  margin-bottom: 16px;
  line-height: 1.7;
}

.legal-page em {
  color: #9B8FAA;
  font-style: italic;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #FFE6F0 0%, #E0BBE4 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin: 40px 20px;
  box-shadow: 0 8px 24px rgba(200, 180, 220, 0.25);
}

.thank-you-content h1 {
  color: #6B5B7B;
  font-size: 48px;
  margin-bottom: 24px;
}

.thank-you-content .lead {
  font-size: 20px;
  color: #7B6B8F;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps {
  background: rgba(255, 255, 255, 0.7);
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps h2 {
  color: #7B6B8F;
  margin-bottom: 20px;
  font-size: 24px;
}

.next-steps ul {
  text-align: left;
  padding-left: 24px;
}

.next-steps li {
  color: #6B5B7B;
  margin-bottom: 12px;
}

/* ===================================
   ADDITIONAL RESOURCES
   =================================== */

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

.resource-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.15);
  flex: 1 1 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(200, 180, 220, 0.25);
}

.resource-card h3 {
  color: #7B6B8F;
  margin-bottom: 12px;
}

.resource-card p {
  color: #6B5B7B;
  margin-bottom: 20px;
}

/* ===================================
   DIRECTIONS & MISC
   =================================== */

.directions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.direction-column {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(200, 180, 220, 0.15);
}

.direction-column h4 {
  color: #7B6B8F;
  margin-bottom: 12px;
}

.direction-column ul {
  padding-left: 20px;
}

.direction-column li {
  color: #6B5B7B;
  margin-bottom: 8px;
}

.duration-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.duration-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(200, 180, 220, 0.15);
  transition: all 0.3s ease;
}

.duration-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(200, 180, 220, 0.25);
}

.duration-item strong {
  color: #7B6B8F;
  font-size: 16px;
}

.duration-item span {
  color: #9B8FAA;
  font-weight: 600;
  padding: 6px 16px;
  background: linear-gradient(135deg, #FFD4E5 0%, #E0BBE4 100%);
  border-radius: 12px;
  font-size: 14px;
}

/* ===================================
   STEPS SIMPLE
   =================================== */

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

.step-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
  padding: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(200, 180, 220, 0.15);
}

.step-simple span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: linear-gradient(135deg, #C4A7E7 0%, #FFD4E5 100%);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.step-simple h3 {
  color: #7B6B8F;
  margin-bottom: 8px;
  font-size: 18px;
}

.step-simple p {
  color: #6B5B7B;
  font-size: 14px;
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 42px; }
  .hero-subheadline { font-size: 16px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle { display: block; }
  .mobile-menu { display: block; }
  
  /* Hide desktop navigation */
  .main-nav { display: none; }
  
  /* Header adjustments */
  header { padding: 12px 0; }
  .header-content { justify-content: center; }
  
  /* Section padding */
  section { padding: 32px 16px; margin-bottom: 40px; }
  
  /* Hero section */
  .hero { padding: 60px 16px; margin: 24px 12px; }
  
  /* Cards and grids */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .values-grid,
  .process-steps,
  .portfolio-grid,
  .resources-grid,
  .contact-cards,
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .value-card,
  .step,
  .project-card,
  .resource-card,
  .contact-card,
  .stat {
    max-width: 100%;
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  /* CTA sections */
  .cta-final h2,
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Step detailed */
  .step-detailed {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Timeline */
  .timeline {
    padding-left: 30px;
  }
  
  /* Service card full */
  .service-card-full {
    padding: 24px;
  }
  
  .service-card-full h2 {
    font-size: 24px;
  }
  
  /* Legal pages */
  .legal-page {
    padding: 24px;
    margin: 24px 12px;
  }
  
  /* Thank you page */
  .thank-you-content h1 {
    font-size: 36px;
  }
  
  .next-steps {
    padding: 24px;
  }
  
  /* Directions */
  .directions {
    flex-direction: column;
  }
  
  /* Duration items */
  .duration-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    max-width: 960px;
  }
  
  h1 { font-size: 42px; }
  h2 { font-size: 30px; }
  
  .benefits-grid,
  .services-grid,
  .values-grid {
    justify-content: center;
  }
  
  .benefit-card,
  .service-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

/* ===================================
   ANIMATIONS - SOFT & DREAMY
   =================================== */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

/* Apply animations */
.hero-content {
  animation: fadeIn 1s ease-out;
}

.benefit-card,
.service-card,
.project-card {
  animation: fadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .container {
    max-width: 100%;
  }
}

/* ===================================
   END OF SOFT PASTEL CSS STYLES
   =================================== */