/* ===================================
   BRISK AXLE REINIGUNG - PLAYFUL DYNAMIC STYLE
   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: #2C3E50;
  background: linear-gradient(135deg, #FFEAA7 0%, #DFE6E9 50%, #74B9FF 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ===================================
   PLAYFUL DYNAMIC TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #2B7A78;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #FFE66D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

h2 {
  font-size: 32px;
  color: #FF6B6B;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #FFE66D, #4ECDC4);
  border-radius: 2px;
  animation: underlineGrow 0.5s ease forwards;
}

@keyframes underlineGrow {
  from { width: 0; }
  to { width: 60%; }
}

h3 {
  font-size: 24px;
  color: #2B7A78;
}

h4 {
  font-size: 18px;
  color: #17252A;
}

p {
  margin-bottom: 16px;
  color: #2C3E50;
  font-size: 16px;
}

a {
  color: #FF6B6B;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #4ECDC4;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #2B7A78;
  font-weight: 700;
}

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

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

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

/* ===================================
   HEADER - PLAYFUL & ENERGETIC
   =================================== */

header {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.logo img {
  height: 50px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%, 100% { transform: scale(1.1) rotate(5deg) translateY(0); }
  50% { transform: scale(1.1) rotate(5deg) translateY(-10px); }
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #FFE66D;
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.main-nav a:hover {
  transform: translateY(-3px);
  color: #FFE66D;
}

.cta-button {
  background: linear-gradient(135deg, #FFE66D, #FDCB6E);
  color: #2C3E50;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(255, 230, 109, 0.4);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.cta-button:hover {
  background: linear-gradient(135deg, #FDCB6E, #FFE66D);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 230, 109, 0.6);
  border-color: #FF6B6B;
}

/* ===================================
   MOBILE MENU - ANIMATED
   =================================== */

.mobile-menu-toggle {
  display: none;
  background: #FFE66D;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FDCB6E;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B6B 0%, #4ECDC4 100%);
  box-shadow: -8px 0 24px rgba(0,0,0,0.3);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: #FFE66D;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  border-left: 5px solid #FFE66D;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateX(10px);
  border-left-width: 10px;
}

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

/* ===================================
   HERO SECTION - ENERGETIC
   =================================== */

.hero {
  background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 50%, #FD79A8 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: moveBackground 20s linear infinite;
}

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

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

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
  animation: bounceIn 1s ease;
  background: linear-gradient(45deg, #FFE66D, #FFFFFF, #4ECDC4);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite, bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-subtitle {
  font-size: 24px;
  color: #FFFFFF;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  animation: fadeIn 1.5s ease;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators span {
  background: rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease;
}

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

.trust-indicators span:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

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

/* ===================================
   BUTTONS - PLAYFUL & DYNAMIC
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B6B, #FF8787);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
  border-color: #FFE66D;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #FF6B6B;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255,255,255,0.4);
}

/* ===================================
   SERVICES GRID - ANIMATED CARDS
   =================================== */

.services-overview,
.services-detailed {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: #636E72;
  font-size: 18px;
  margin-bottom: 48px;
}

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

.service-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 300px;
  max-width: 350px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
  transform: rotate(0deg);
  transition: transform 0.8s ease;
}

.service-card:hover::before {
  transform: rotate(180deg);
}

.service-card:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 16px 48px rgba(255, 107, 107, 0.3);
  border-color: #FF6B6B;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.service-card:hover img {
  transform: scale(1.2) rotate(10deg);
  animation: wiggle 0.6s ease;
}

@keyframes wiggle {
  0%, 100% { transform: scale(1.2) rotate(10deg); }
  25% { transform: scale(1.2) rotate(-10deg); }
  75% { transform: scale(1.2) rotate(5deg); }
}

.service-card h3 {
  margin-bottom: 16px;
  color: #FF6B6B;
}

.service-card p {
  color: #636E72;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #FFE66D, #FDCB6E);
  color: #2C3E50;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 230, 109, 0.4);
}

.service-link {
  color: #4ECDC4;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.service-link:hover::after {
  transform: translateX(8px);
}

/* ===================================
   FEATURES GRID - PLAYFUL ICONS
   =================================== */

.why-choose-us {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.feature {
  text-align: center;
  flex: 1 1 220px;
  max-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 100%);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
  transition: all 0.4s ease;
  border: 3px solid transparent;
}

.feature:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 16px 40px rgba(108, 92, 231, 0.5);
  border-color: #FFE66D;
}

.feature img {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  transition: transform 0.4s ease;
  filter: brightness(0) invert(1);
}

.feature:hover img {
  transform: scale(1.3) rotate(360deg);
}

.feature h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 12px;
}

.feature p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* ===================================
   TESTIMONIALS - VIBRANT CARDS
   =================================== */

.testimonials {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #FFEAA7 0%, #FDCB6E 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(253, 203, 110, 0.4);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: rgba(255,255,255,0.3);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 16px 40px rgba(253, 203, 110, 0.6);
  border-color: #FF6B6B;
}

.rating {
  color: #FF6B6B;
  font-size: 24px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author strong {
  color: #2B7A78;
  font-size: 16px;
}

.author span {
  color: #636E72;
  font-size: 14px;
}

/* ===================================
   CTA BANNER - BOLD & ENERGETIC
   =================================== */

.cta-banner {
  background: linear-gradient(135deg, #FF6B6B 0%, #FD79A8 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 16px 48px rgba(255, 107, 107, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: moveBackground 15s linear infinite;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.cta-banner h2::after {
  display: none;
}

.cta-banner p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

/* ===================================
   PAGE HERO - BREADCRUMB
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 24px;
}

.breadcrumb {
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  font-size: 14px;
}

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-hero p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  margin-bottom: 8px;
}

.last-updated,
.response-time {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-style: italic;
}

/* ===================================
   SERVICE DETAIL CARDS
   =================================== */

.service-detail {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 6px solid #FF6B6B;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.3);
}

.service-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding-left: 28px;
  position: relative;
  color: #636E72;
  margin-bottom: 12px;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
  font-size: 18px;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FFE66D, #FDCB6E);
  color: #2C3E50;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(255, 230, 109, 0.4);
}

/* ===================================
   QUALITY STANDARDS
   =================================== */

.quality-standards {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

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

.standard {
  background: linear-gradient(135deg, #74B9FF 0%, #0984E3 100%);
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 8px 24px rgba(9, 132, 227, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.standard:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(9, 132, 227, 0.5);
}

.standard h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 12px;
}

.standard p {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* ===================================
   COMPANY SECTIONS
   =================================== */

.company-story,
.mission-vision,
.company-stats,
.sustainability {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.text-section {
  margin-bottom: 40px;
}

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

.milestone {
  background: linear-gradient(135deg, #FFE66D 0%, #FDCB6E 100%);
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 200px;
  max-width: 220px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(253, 203, 110, 0.4);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 12px 32px rgba(253, 203, 110, 0.6);
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #FF6B6B;
  margin-bottom: 8px;
}

.milestone p {
  color: #2C3E50;
  font-size: 14px;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.mission-box,
.vision-box {
  background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 300px;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
  transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.5);
}

.mission-box h3,
.vision-box h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.mission-box p,
.vision-box p {
  color: rgba(255,255,255,0.95);
}

.values {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 32px;
  border-left: 6px solid #4ECDC4;
}

.values h3 {
  margin-bottom: 20px;
}

.values ul {
  list-style: none;
}

.values li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 16px;
  color: #636E72;
}

.values li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #FFE66D;
  font-size: 18px;
}

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

.stat {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 180px;
  max-width: 200px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
}

.stat strong {
  display: block;
  font-size: 40px;
  color: #FFFFFF;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat p {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
}

.commitment-list {
  list-style: none;
  margin-top: 24px;
}

.commitment-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #636E72;
  font-size: 16px;
}

.commitment-list li::before {
  content: '🌱';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* ===================================
   PRICING TABLES
   =================================== */

.pricing-tables {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.pricing-note {
  text-align: center;
  color: #636E72;
  font-size: 14px;
  margin-bottom: 40px;
  font-style: italic;
}

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

.pricing-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(255, 107, 107, 0.3);
  border-color: #FF6B6B;
}

.pricing-card h3 {
  color: #2B7A78;
  font-size: 22px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  color: #FF6B6B;
  font-weight: 800;
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card li {
  padding-left: 28px;
  position: relative;
  color: #636E72;
  margin-bottom: 12px;
}

.pricing-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
  font-size: 16px;
}

.pricing-factors,
.price-guarantee {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.factors-list,
.guarantee-list {
  list-style: none;
  margin-top: 24px;
}

.factors-list li,
.guarantee-list li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  color: #636E72;
  font-size: 16px;
}

.factors-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FF6B6B;
  font-size: 20px;
}

.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 700;
  font-size: 18px;
}

.package-deals {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

.package {
  background: linear-gradient(135deg, #74B9FF 0%, #0984E3 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(9, 132, 227, 0.3);
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.package.featured {
  background: linear-gradient(135deg, #FF6B6B 0%, #FF8787 100%);
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.5);
}

.package:hover {
  transform: translateY(-12px) scale(1.08);
  box-shadow: 0 16px 48px rgba(9, 132, 227, 0.5);
}

.package h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 12px;
}

.discount {
  display: inline-block;
  background: #FFE66D;
  color: #2C3E50;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.package p {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  margin-bottom: 16px;
}

.package ul {
  list-style: none;
  margin-bottom: 24px;
  text-align: left;
}

.package li {
  padding-left: 28px;
  position: relative;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
}

.package li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFE66D;
  font-weight: 700;
  font-size: 16px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods,
.contact-info-detailed {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

.contact-method {
  background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-method:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.5);
}

.contact-method img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}

.contact-method h3 {
  color: #FFFFFF;
  font-size: 20px;
}

.contact-method p {
  color: rgba(255,255,255,0.95);
  font-size: 16px;
}

.info-box {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 6px solid #4ECDC4;
}

.info-box h3 {
  margin-bottom: 16px;
  color: #2B7A78;
}

.info-box p {
  color: #636E72;
  margin-bottom: 12px;
}

.location-map {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.map-placeholder {
  background: linear-gradient(135deg, #74B9FF 0%, #0984E3 100%);
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(9, 132, 227, 0.3);
}

.map-placeholder p {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 12px;
}

.faq-contact {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.faq-item {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 24px;
  flex: 1 1 400px;
  border-left: 5px solid #FFE66D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.faq-item h3 {
  color: #FF6B6B;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #636E72;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

.legal-content h2 {
  color: #2B7A78;
  margin-bottom: 20px;
  margin-top: 32px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
}

.legal-content li {
  color: #636E72;
  margin-bottom: 8px;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 24px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFE66D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #2C3E50;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255, 230, 109, 0.5);
  animation: successPulse 1.5s ease infinite;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(255, 230, 109, 0.5);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 230, 109, 0.7);
  }
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
  color: rgba(255,255,255,0.95);
  font-size: 20px;
  margin-bottom: 16px;
}

.next-steps,
.additional-resources,
.contact-reminder {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
}

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

.step {
  background: linear-gradient(135deg, #A29BFE 0%, #6C5CE7 100%);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.5);
}

.step-number {
  width: 60px;
  height: 60px;
  background: #FFE66D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #2C3E50;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.step h3 {
  color: #FFFFFF;
  font-size: 20px;
}

.step p {
  color: rgba(255,255,255,0.95);
  font-size: 14px;
}

.timeline {
  text-align: center;
  color: #636E72;
  font-size: 14px;
  font-style: italic;
}

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

.resource-card {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #FF6B6B;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.resource-card h3 {
  color: #2B7A78;
}

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

.contact-option {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 20px 32px;
  color: #636E72;
  font-size: 16px;
  border-left: 4px solid #4ECDC4;
}

.navigation-cta {
  text-align: center;
  margin-bottom: 60px;
}

/* ===================================
   FOOTER - PLAYFUL
   =================================== */

footer {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 0 24px;
  border-top: 5px solid #FFE66D;
}

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

.footer-column {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-column h4 {
  color: #FFE66D;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

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

.footer-bottom p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B6B 0%, #FD79A8 100%);
  padding: 24px;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  color: #FFFFFF;
  font-size: 14px;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-cookies {
  background: #FFE66D;
  color: #2C3E50;
}

#accept-cookies:hover {
  background: #FDCB6E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 230, 109, 0.5);
}

#reject-cookies {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

#reject-cookies:hover {
  background: #FFFFFF;
  color: #FF6B6B;
  transform: translateY(-3px);
}

#cookie-settings {
  background: rgba(255,255,255,0.2);
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.3);
}

#cookie-settings:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}

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

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

.modal-content {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-content h2 {
  color: #FF6B6B;
  margin-bottom: 24px;
}

.cookie-category {
  background: #F8F9FA;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #4ECDC4;
}

.cookie-category h3 {
  color: #2B7A78;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #636E72;
  font-size: 14px;
}

.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: #BDC3C7;
  border-radius: 26px;
  transition: 0.3s;
}

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

input:checked + .slider {
  background: #4ECDC4;
}

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

input:disabled + .slider {
  background: #E0E0E0;
  cursor: not-allowed;
}

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

#save-preferences,
#close-modal {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#save-preferences {
  background: linear-gradient(135deg, #4ECDC4, #44A08D);
  color: #FFFFFF;
  flex: 1;
}

#save-preferences:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

#close-modal {
  background: #E0E0E0;
  color: #2C3E50;
}

#close-modal:hover {
  background: #BDC3C7;
  transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 48px; }
  
  .services-grid,
  .features-grid,
  .pricing-grid {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  
  .section { padding: 32px 16px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 32px;
    font-size: 14px;
  }
  
  .service-card,
  .pricing-card,
  .package {
    padding: 24px;
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Smooth scroll */
html {
  scroll-padding-top: 80px;
}

/* Selection color */
::selection {
  background: #FFE66D;
  color: #2C3E50;
}

/* Focus styles */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #FF6B6B;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }
}