/* ===================================
   CALM WAVES - PLAYFUL DYNAMIC CSS
   Design Style: Bright, Animated, Fun
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #FFE5EC 0%, #FFF9E5 50%, #E5F9FF 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Playful & Dynamic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2B5F8F;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #FF6B9D;
  text-shadow: 3px 3px 0px rgba(255, 203, 0, 0.3);
  animation: bounceIn 0.8s ease;
}

h2 {
  font-size: 36px;
  color: #5A9BC7;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B9D, #FFCB00);
  border-radius: 10px;
  animation: slideIn 0.6s ease;
}

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

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

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

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

ul {
  list-style: none;
}

ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

ul li::before {
  content: '🌊';
  position: absolute;
  left: 0;
  animation: wave 2s ease infinite;
}

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

/* ANIMATIONS */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-50px);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

@keyframes wave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-20deg);
  }
}

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

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FF6B9D, #FFCB00);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2B5F8F, #5A9BC7, #FF6B9D);
  z-index: 1000;
  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: white;
  color: #FF6B9D;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 100px 40px 40px;
  min-height: 100vh;
}

.mobile-nav a {
  color: white;
  font-size: 24px;
  font-weight: 700;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  max-width: 300px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* HEADER */
header {
  background: white;
  box-shadow: 0 4px 20px rgba(255, 107, 157, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideDown 0.5s ease;
}

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

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

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

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
  animation: float 1s ease infinite;
}

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

.main-nav a {
  font-weight: 600;
  color: #2B5F8F;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF6B9D, #FFCB00);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}

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

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

.header-cta {
  display: flex;
  align-items: center;
}

/* BUTTONS - Playful & Dynamic */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B9D, #FFCB00);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 107, 157, 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(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
}

.btn-secondary {
  background: white;
  color: #2B5F8F;
  border: 3px solid #5A9BC7;
  box-shadow: 0 4px 15px rgba(90, 155, 199, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #5A9BC7, #2B5F8F);
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(90, 155, 199, 0.4);
}

button {
  font-family: inherit;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFE5EC 0%, #E5F9FF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '🌊';
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  top: -50px;
  right: -50px;
  animation: spin 20s linear infinite;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
  animation: bounceIn 1s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #333;
  margin-bottom: 32px;
  animation: slideIn 1s ease;
}

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

.trust-indicator {
  font-size: 16px;
  color: #5A9BC7;
  font-weight: 600;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(90, 155, 199, 0.2);
  display: inline-block;
  animation: pulse 2s infinite;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.value-proposition,
.services-overview,
.process,
.testimonials,
.cta-final {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.value-proposition {
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(255, 107, 157, 0.15);
}

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

/* VALUE GRID - Flexbox */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-item {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #FFF9E5 0%, #FFE5EC 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.value-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
  border-color: #FF6B9D;
}

.value-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  animation: float 3s ease infinite;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: linear-gradient(135deg, #E5F9FF 0%, #FFF9E5 100%);
  border-radius: 30px;
}

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

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

/* SERVICES GRID - Flexbox */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.service-card::before {
  content: '⭐';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  opacity: 0;
  transition: all 0.3s ease;
  animation: spin 3s linear infinite;
}

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

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(90, 155, 199, 0.3);
  border-color: #5A9BC7;
}

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

.service-card p {
  margin-bottom: 20px;
  color: #555;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #FF6B9D;
  text-align: center;
  margin-top: 20px;
}

/* PROCESS STEPS */
.process {
  background: white;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(255, 203, 0, 0.15);
}

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

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

.step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #FFE5EC 0%, #FFF9E5 100%);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 203, 0, 0.3);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B9D, #FFCB00);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
  animation: pulse 2s infinite;
}

.step h3 {
  margin-bottom: 12px;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #FFF9E5 0%, #E5F9FF 100%);
  border-radius: 30px;
}

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

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  border-left: 5px solid #FF6B9D;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '💬';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 40px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(90, 155, 199, 0.3);
}

.testimonial-card p {
  font-style: italic;
  color: #333;
  margin-bottom: 16px;
  font-size: 16px;
}

.author {
  font-weight: 700;
  color: #2B5F8F;
  font-style: normal;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #FFCB00;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #2B5F8F, #5A9BC7);
  color: white;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(43, 95, 143, 0.3);
}

.cta-final h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-final p {
  color: white;
  margin-bottom: 32px;
  font-size: 18px;
}

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

.contact-info,
.hours {
  color: white;
  font-size: 16px;
  margin-bottom: 8px;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #FFE5EC 0%, #E5F9FF 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-radius: 0 0 30px 30px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}

.breadcrumb a {
  color: #2B5F8F;
}

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

.page-hero p {
  text-align: center;
  font-size: 18px;
  color: #666;
}

/* SERVICES DETAIL */
.services-detail {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.service-detail-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  margin-bottom: 30px;
  border-left: 5px solid #FF6B9D;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(90, 155, 199, 0.3);
}

.service-detail-card h2 {
  margin-bottom: 20px;
}

.service-detail-card ul {
  margin: 20px 0;
}

.timeline {
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-block;
  margin: 20px 0;
  font-weight: 600;
  color: #2B5F8F;
}

/* SERVICE GUARANTEE */
.service-guarantee {
  background: linear-gradient(135deg, #E5F9FF 0%, #FFF9E5 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

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

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.guarantee-item {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 155, 199, 0.3);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #FF6B9D, #FFCB00);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(255, 107, 157, 0.3);
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-section p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

/* MISSION & COMPANY STORY */
.mission,
.company-story,
.team,
.statistics,
.office-location {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
}

.values {
  background: linear-gradient(135deg, #FFE5EC, #FFF9E5);
  padding: 30px;
  border-radius: 20px;
  margin-top: 32px;
}

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

.values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.values ul li {
  background: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  color: #2B5F8F;
  box-shadow: 0 4px 15px rgba(90, 155, 199, 0.2);
}

/* TIMELINE */
.company-story .timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  padding-left: 40px;
}

.company-story .timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FF6B9D, #FFCB00);
  border-radius: 10px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
  padding: 20px;
  border-radius: 15px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 25px;
  width: 20px;
  height: 20px;
  background: #FF6B9D;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #FF6B9D;
}

.timeline-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.year {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B9D;
  min-width: 80px;
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #E5F9FF, #FFF9E5);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(90, 155, 199, 0.3);
}

.team-member h3 {
  margin-bottom: 8px;
  color: #2B5F8F;
}

.role {
  font-weight: 700;
  color: #FF6B9D;
  margin-bottom: 12px;
}

/* STATISTICS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #FF6B9D, #FFCB00);
  border-radius: 20px;
  color: white;
  box-shadow: 0 6px 25px rgba(255, 107, 157, 0.3);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
}

.stat h3 {
  font-size: 48px;
  margin-bottom: 12px;
  color: white;
}

.stat p {
  font-size: 16px;
  color: white;
}

/* PROCESS OVERVIEW & DETAIL */
.process-overview {
  background: linear-gradient(135deg, #FFE5EC, #E5F9FF);
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 20px;
  text-align: center;
}

.process-intro {
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

.step-detail {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  margin-bottom: 40px;
  position: relative;
  border-left: 5px solid #5A9BC7;
  transition: all 0.3s ease;
}

.step-detail:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(90, 155, 199, 0.3);
}

.step-detail .step-number {
  position: absolute;
  top: 20px;
  right: 20px;
}

.duration {
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
  color: #2B5F8F;
  font-size: 14px;
}

.highlight {
  background: linear-gradient(135deg, #FFE5EC, #FFF9E5);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #FF6B9D;
  margin-top: 20px;
  font-weight: 600;
}

/* COMPARISON TABLE */
.comparison {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
}

.comparison h2 {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
}

.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 2px solid #f0f0f0;
}

.comparison-table th {
  background: linear-gradient(135deg, #2B5F8F, #5A9BC7);
  color: white;
  font-weight: 700;
}

.comparison-table tr:hover {
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
}

/* FAQ CONTENT */
.faq-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.faq-section {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
  margin-bottom: 40px;
}

.faq-section h2 {
  margin-bottom: 32px;
  color: #2B5F8F;
}

.faq-item {
  padding: 20px;
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
  border-radius: 15px;
  margin-bottom: 20px;
  border-left: 4px solid #FF6B9D;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.faq-item h3 {
  margin-bottom: 12px;
  color: #2B5F8F;
}

.faq-item p {
  color: #333;
}

.faq-quick {
  background: linear-gradient(135deg, #E5F9FF, #FFF9E5);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

/* CONTACT OPTIONS */
.contact-options {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.contact-option {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 155, 199, 0.3);
}

.contact-option img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  animation: float 3s ease infinite;
}

.contact-option h3 {
  margin-bottom: 16px;
}

/* CONTACT FORM */
.contact-form-section {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: #2B5F8F;
  font-size: 16px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #5A9BC7;
  box-shadow: 0 0 0 3px rgba(90, 155, 199, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.privacy-note {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: 20px;
}

/* OFFICE INFO */
.office-info {
  background: linear-gradient(135deg, #FFE5EC, #E5F9FF);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
}

/* TEAM CONTACTS */
.team-contacts {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
}

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

.team-contact {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  transition: all 0.3s ease;
}

.team-contact:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 155, 199, 0.3);
}

/* CONTACT REMINDER */
.contact-reminder {
  background: linear-gradient(135deg, #2B5F8F, #5A9BC7);
  padding: 40px 20px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 60px;
  color: white;
}

.contact-reminder h2 {
  color: white;
  margin-bottom: 16px;
}

.contact-reminder p {
  color: white;
  font-size: 18px;
}

/* LEGAL CONTENT */
.legal-content {
  background: white;
  padding: 60px 40px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.last-updated {
  font-style: italic;
  color: #666;
  margin-bottom: 32px;
}

/* THANK YOU PAGE */
.thankyou-hero {
  background: linear-gradient(135deg, #FFE5EC 0%, #E5F9FF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  animation: bounceIn 1s ease;
}

.thankyou-hero .subtitle {
  font-size: 20px;
  color: #666;
  margin-top: 16px;
}

.confirmation-message,
.confirmation-details {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.15);
}

.next-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.what-next {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.suggestion {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(90, 155, 199, 0.2);
  transition: all 0.3s ease;
}

.suggestion:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 155, 199, 0.3);
}

.suggestion a {
  display: inline-block;
  margin-top: 16px;
  color: #FF6B9D;
  font-weight: 600;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2B5F8F, #5A9BC7);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-col h4 {
  color: white;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col a {
  color: white;
  display: block;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  transform: translateX(5px);
  color: #FFCB00;
}

.footer-col p {
  color: white;
  opacity: 0.9;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: white;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: white;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
  color: #FFCB00;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2B5F8F, #5A9BC7);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  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;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  flex: 1 1 400px;
  margin: 0;
  color: white;
}

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

.cookie-banner button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #FF6B9D, #FFCB00);
  color: white;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.cookie-reject {
  background: white;
  color: #2B5F8F;
}

.cookie-reject:hover {
  background: #f0f0f0;
}

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

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: bounceIn 0.5s ease;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f0f0f0;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: linear-gradient(135deg, #FFF9E5, #FFE5EC);
  border-radius: 15px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: linear-gradient(135deg, #5A9BC7, #2B5F8F);
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .value-grid,
  .services-grid,
  .process-steps,
  .testimonial-grid,
  .guarantee-grid,
  .stats-grid,
  .team-grid,
  .contact-grid,
  .team-contact-grid,
  .suggestions-grid {
    flex-direction: column;
  }

  .value-item,
  .service-card,
  .step,
  .testimonial-card,
  .guarantee-item,
  .stat,
  .team-member,
  .contact-option,
  .team-contact,
  .suggestion {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    align-items: center;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 8px;
  }

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

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

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .company-story .timeline {
    padding-left: 30px;
  }

  .timeline-item {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 42px;
  }

  .value-grid,
  .services-grid {
    justify-content: center;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid #FFCB00;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #FFCB00;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }

  body {
    background: white;
  }

  .container {
    max-width: 100%;
  }
}