/* ========================================
   FreshWake - Playful Dynamic CSS Styles
   Design Style: Playful and Dynamic
   ======================================== */

/* 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: #2d3748;
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  overflow-x: hidden;
}

/* Typography - Playful Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  animation: bounceIn 0.8s ease-out;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #FFA500, #FFD93D);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #17252A;
}

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

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

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

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

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

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

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

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

/* ========================================
   HEADER - Playful Navigation
   ======================================== */
header {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(43, 122, 120, 0.3);
}

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

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

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

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

.main-nav a {
  color: #FEFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #FFD93D;
}

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

.phone-link {
  color: #FFD93D;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  border: 2px solid #FFD93D;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: #FFD93D;
  color: #17252A;
  transform: scale(1.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
  color: #FFD93D;
}

/* ========================================
   BUTTONS - Playful & Dynamic
   ======================================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  position: relative;
  overflow: hidden;
}

.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 8px 25px rgba(255, 107, 107, 0.5);
}

.btn-secondary {
  display: inline-block;
  background: white;
  color: #2B7A78;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  border: 3px solid #2B7A78;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #2B7A78;
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(43, 122, 120, 0.3);
}

/* ========================================
   HERO SECTION - Energetic & Fun
   ======================================== */
.hero {
  background: linear-gradient(135deg, #FFD93D 0%, #FFA500 50%, #FF6B6B 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  color: white;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 500;
}

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

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.9);
  color: #17252A;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

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

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

/* ========================================
   PROBLEM-SOLUTION SECTION
   ======================================== */
.problem-solution {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.problem-solution h2 {
  text-align: center;
  color: #17252A;
  margin-bottom: 30px;
}

.problem-list {
  list-style: none;
  margin-bottom: 40px;
}

.problem-list li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 15px;
  position: relative;
  font-size: 16px;
  color: #2d3748;
  transition: all 0.3s ease;
}

.problem-list li::before {
  content: '❌';
  position: absolute;
  left: 15px;
  font-size: 24px;
}

.problem-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.problem-solution h3 {
  text-align: center;
  color: #2B7A78;
  margin: 40px 0 20px;
}

.problem-solution > p {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #4a5568;
}

/* ========================================
   SERVICES GRID - Playful Cards
   ======================================== */
.services-preview,
.services-detailed {
  text-align: center;
}

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

.service-card {
  background: white;
  border-radius: 25px;
  padding: 30px;
  width: 280px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF6B6B, #FFA500, #FFD93D);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 107, 107, 0.3);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  color: #17252A;
  margin-bottom: 15px;
  font-size: 20px;
}

.service-card p {
  color: #718096;
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card .price {
  color: #FF6B6B;
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

/* Service Detail Cards */
.service-detail {
  background: white;
  border-radius: 25px;
  padding: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.service-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #2B7A78, #17252A);
  border-radius: 25px 25px 0 0;
}

.service-detail img {
  width: 100px;
  height: 100px;
}

.service-detail h2 {
  color: #2B7A78;
  margin: 0;
}

.service-detail h3 {
  color: #17252A;
  margin-top: 20px;
}

.service-detail ul {
  list-style: none;
  padding: 0;
}

.service-detail ul li {
  padding: 10px 10px 10px 35px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 10px;
  position: relative;
  color: #2d3748;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 10px;
  color: #2B7A78;
  font-weight: 700;
  font-size: 18px;
}

.service-detail .price {
  color: #FF6B6B;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  padding: 10px 20px;
  border-radius: 15px;
  display: inline-block;
}

/* ========================================
   BENEFITS GRID
   ======================================== */
.benefits,
.company-values {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

.benefits h2,
.company-values h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.benefit-item,
.value-item {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  border-radius: 20px;
  padding: 30px;
  width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.benefit-item:hover,
.value-item:hover {
  border-color: #FFD93D;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.benefit-item img,
.value-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.benefit-item h3,
.value-item h3 {
  color: #17252A;
  margin-bottom: 15px;
  font-size: 18px;
}

.benefit-item p,
.value-item p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

/* ========================================
   TESTIMONIALS - Fun Review Cards
   ======================================== */
.testimonials {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  border-radius: 30px;
  padding: 60px 30px;
  color: white;
}

.testimonials h2 {
  text-align: center;
  color: white;
  margin-bottom: 40px;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #FFD93D, #FFA500);
}

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

.testimonial-card {
  background: white;
  color: #2d3748;
  border-radius: 20px;
  padding: 30px;
  width: 450px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.testimonial-card .author {
  color: #2B7A78;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
}

.testimonial-card .rating {
  color: #FFD93D;
  font-size: 20px;
  margin: 0;
}

.testimonial-card .period {
  color: #718096;
  font-size: 12px;
  margin-top: 5px;
}

.rating-summary {
  text-align: center;
  color: #FFD93D;
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   CTA SECTIONS - Energetic Calls to Action
   ======================================== */
.cta-final,
.cta-section,
.cta-trust {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

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

.cta-final h2::after,
.cta-section h2::after,
.cta-trust h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p,
.cta-section p,
.cta-trust p {
  color: white;
  font-size: 18px;
  margin-bottom: 30px;
}

.benefits-list {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  position: relative;
  color: white;
  font-weight: 500;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #FFD93D;
  font-weight: 700;
  font-size: 20px;
}

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

.trust-seal,
.guarantee-reminder {
  color: white;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}

/* ========================================
   PAGE HERO (Subpages)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  padding: 60px 20px 40px;
  color: white;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 15px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.breadcrumbs {
  margin-bottom: 20px;
  text-align: left;
}

.breadcrumbs a {
  color: #FFD93D;
  font-weight: 600;
}

.trust-badge,
.response-time {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: 20px;
  margin-top: 15px;
  font-weight: 600;
}

/* ========================================
   PRICING TABLE
   ======================================== */
.pricing-table {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

.price-table {
  overflow-x: auto;
  margin-bottom: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

thead {
  background: linear-gradient(135deg, #2B7A78, #17252A);
  color: white;
}

thead th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
}

tbody tr {
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

tbody tr:hover {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  transform: scale(1.02);
}

tbody td {
  padding: 20px;
  color: #2d3748;
}

tbody td:first-child {
  font-weight: 600;
  color: #17252A;
}

.note {
  text-align: center;
  color: #718096;
  font-size: 14px;
  margin-top: 15px;
  font-style: italic;
}

/* ========================================
   ADDITIONAL SERVICES
   ======================================== */
.additional-services {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.services-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.services-list li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: white;
  border-radius: 15px;
  position: relative;
  color: #2d3748;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.services-list li::before {
  content: '💰';
  position: absolute;
  left: 15px;
  font-size: 20px;
}

.services-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(43, 122, 120, 0.2);
}

/* ========================================
   DISCOUNT PACKAGES
   ======================================== */
.discount-packages {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.package-card {
  background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
  border-radius: 25px;
  padding: 35px;
  width: 280px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 165, 0, 0.5);
}

.package-card h3 {
  color: white;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.package-card .discount {
  font-size: 32px;
  font-weight: 800;
  color: #17252A;
  margin-bottom: 15px;
  display: block;
  position: relative;
  z-index: 1;
}

.package-card p {
  color: white;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.additional-discounts {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.additional-discounts li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 12px;
  position: relative;
  color: #2d3748;
  font-weight: 600;
}

.additional-discounts li::before {
  content: '🎁';
  position: absolute;
  left: 12px;
  font-size: 18px;
}

/* ========================================
   PAYMENT METHODS
   ======================================== */
.payment-methods {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.payment-methods h2 {
  margin-bottom: 30px;
}

.payment-list {
  list-style: none;
  max-width: 500px;
  margin: 0 auto 30px;
}

.payment-list li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: white;
  border-radius: 15px;
  position: relative;
  color: #2d3748;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.payment-list li::before {
  content: '💳';
  position: absolute;
  left: 15px;
  font-size: 20px;
}

/* ========================================
   TIMELINE & MILESTONES
   ======================================== */
.company-story {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 30px;
}

.company-story > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4a5568;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.milestone {
  background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
  border-radius: 20px;
  padding: 30px;
  width: 220px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.3);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-10px) rotate(3deg);
  box-shadow: 0 12px 40px rgba(255, 165, 0, 0.5);
}

.milestone h3 {
  color: white;
  font-size: 36px;
  margin-bottom: 15px;
}

.milestone p {
  color: white;
  margin: 0;
  font-weight: 600;
}

/* ========================================
   MISSION & VALUES
   ======================================== */
.mission-vision {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.mission p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  color: #4a5568;
}

.values ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.values ul li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: white;
  border-radius: 15px;
  position: relative;
  color: #2d3748;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.values ul li::before {
  content: '⭐';
  position: absolute;
  left: 15px;
  font-size: 20px;
}

.values ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(43, 122, 120, 0.2);
}

/* ========================================
   ACHIEVEMENTS & STATS
   ======================================== */
.achievements {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  color: white;
}

.achievements h2 {
  color: white;
  margin-bottom: 40px;
}

.achievements h2::after {
  background: linear-gradient(90deg, #FFD93D, #FFA500);
  left: 50%;
  transform: translateX(-50%);
}

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

.stat-item,
.stat {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  width: 220px;
  transition: all 0.3s ease;
}

.stat-item:hover,
.stat:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) scale(1.05);
}

.stat-item h3 {
  color: #FFD93D;
  font-size: 48px;
  margin-bottom: 10px;
}

.stat-item p,
.stat {
  color: white;
  margin: 0;
  font-weight: 600;
}

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

.comparison-table > p {
  text-align: center;
  color: #718096;
  margin-bottom: 40px;
}

/* ========================================
   KEY DIFFERENTIATORS
   ======================================== */
.key-differentiators {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.differentiator-item {
  background: white;
  border-radius: 20px;
  padding: 35px;
  width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.differentiator-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2B7A78, #FFD93D);
  border-radius: 20px 20px 0 0;
}

.differentiator-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(43, 122, 120, 0.2);
}

.differentiator-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.differentiator-item h3 {
  color: #2B7A78;
  margin-bottom: 15px;
}

.differentiator-item > p {
  color: #4a5568;
  margin-bottom: 15px;
  font-size: 15px;
}

.differentiator-item .proof {
  color: #FF6B6B;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

/* ========================================
   CLIENT BENEFITS
   ======================================== */
.client-benefits {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

/* ========================================
   TRUST INDICATORS
   ======================================== */
.trust-indicators {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.indicator-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 260px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.indicator-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.indicator-item h3 {
  color: #FF6B6B;
  font-size: 32px;
  margin-bottom: 10px;
}

.indicator-item p {
  color: #4a5568;
  margin: 0;
}

/* ========================================
   SATISFACTION GUARANTEE
   ======================================== */
.satisfaction-guarantee {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  color: white;
}

.satisfaction-guarantee h2,
.satisfaction-guarantee h3 {
  color: white;
  margin-bottom: 20px;
}

.satisfaction-guarantee p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

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

.guarantee-points li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  position: relative;
  color: white;
  font-weight: 600;
}

.guarantee-points li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #FFD93D;
  font-weight: 700;
  font-size: 20px;
}

/* ========================================
   CONTACT METHODS
   ======================================== */
.contact-methods {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.method-card {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  border-radius: 20px;
  padding: 35px;
  width: 320px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(43, 122, 120, 0.2);
}

.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.method-card h3 {
  color: #2B7A78;
  margin-bottom: 15px;
}

.method-card .value {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

.method-card .value a {
  color: #17252A;
}

.method-card p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

/* ========================================
   CONTACT FORM - Playful Design
   ======================================== */
.contact-form-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-note {
  background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
  border-left: 5px solid #FF6B6B;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  color: #2d3748;
}

.form-note strong {
  color: #FF6B6B;
}

.form-note a {
  color: #2B7A78;
  text-decoration: underline;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.field-group label {
  color: #2B7A78;
  font-weight: 600;
  font-size: 14px;
}

.field-placeholder {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
  color: #a0aec0;
  font-style: italic;
  transition: all 0.3s ease;
}

.field-placeholder:hover {
  border-color: #2B7A78;
  box-shadow: 0 3px 10px rgba(43, 122, 120, 0.1);
}

.checkbox-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a5568;
  font-size: 14px;
}

.form-actions {
  margin-top: 20px;
}

.form-actions button {
  width: 100%;
}

/* ========================================
   SERVICE AREA
   ======================================== */
.service-area {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.service-area h2 {
  margin-bottom: 15px;
}

.service-area > p {
  color: #718096;
  margin-bottom: 30px;
}

.districts-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}

.districts-list li {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  color: #2B7A78;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  border: 2px solid #2B7A78;
  transition: all 0.3s ease;
}

.districts-list li:hover {
  background: #2B7A78;
  color: white;
  transform: scale(1.05);
}

/* ========================================
   FAQ SECTIONS
   ======================================== */
.faq-contact,
.pricing-intro {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

.faq-contact h2,
.pricing-intro h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-intro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #4a5568;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(43, 122, 120, 0.15);
}

.faq-item h3 {
  color: #2B7A78;
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  color: #4a5568;
  margin: 0;
  font-size: 15px;
}

/* ========================================
   SERVICE GUARANTEES
   ======================================== */
.service-guarantees {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  color: white;
}

.service-guarantees h2 {
  color: white;
  margin-bottom: 40px;
}

.service-guarantees h2::after {
  background: linear-gradient(90deg, #FFD93D, #FFA500);
  left: 50%;
  transform: translateX(-50%);
}

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

.guarantee-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  width: 280px;
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.guarantee-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.guarantee-item h3 {
  color: #FFD93D;
  margin-bottom: 15px;
}

.guarantee-item p {
  color: white;
  margin: 0;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #2B7A78 0%, #17252A 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
  border-radius: 30px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #FFD93D, #FFA500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  margin: 0 auto 30px;
  animation: bounceIn 0.8s ease-out;
}

.thank-you-hero h1 {
  color: white;
  margin-bottom: 20px;
}

.thank-you-hero .subtitle {
  color: #FFD93D;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.thank-you-hero .message {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.next-steps {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.step {
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  text-align: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(43, 122, 120, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B6B, #FFA500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step h3 {
  color: #2B7A78;
  margin-bottom: 15px;
}

.step p {
  color: #718096;
  margin: 0;
  font-size: 14px;
}

.timeline {
  text-align: center;
  color: #718096;
  font-style: italic;
}

.while-waiting {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.suggestion-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 320px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(43, 122, 120, 0.2);
}

.suggestion-card h3 {
  color: #2B7A78;
  margin: 0;
}

.suggestion-card p {
  color: #718096;
  margin: 0;
  flex-grow: 1;
}

.urgent-contact {
  background: linear-gradient(135deg, #FF6B6B 0%, #FFA500 100%);
  border-radius: 30px;
  padding: 60px 30px;
  text-align: center;
  color: white;
}

.urgent-contact h2 {
  color: white;
  margin-bottom: 15px;
}

.urgent-contact p {
  color: white;
  margin-bottom: 15px;
}

.phone-display {
  font-size: 32px;
  font-weight: 800;
  margin: 20px 0;
}

.phone-display a {
  color: white;
  text-decoration: none;
  border-bottom: 3px solid white;
}

.social-proof {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 30px;
}

.testimonial-highlight {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 30px;
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  border-radius: 20px;
  border-left: 5px solid #2B7A78;
}

.testimonial-highlight p:first-child {
  font-style: italic;
  color: #2d3748;
  font-size: 18px;
  margin-bottom: 15px;
}

.testimonial-highlight .author {
  color: #2B7A78;
  font-weight: 700;
  margin: 0;
}

.return-navigation {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 50px 30px;
  text-align: center;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.additional-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.additional-links a {
  color: #2B7A78;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.additional-links a:hover {
  background: rgba(43, 122, 120, 0.1);
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-content {
  background: white;
  border-radius: 30px;
  padding: 50px 30px;
}

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

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

.legal-content p,
.legal-content ul,
.legal-content ol {
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
  margin-bottom: 10px;
}

.legal-content strong {
  color: #2B7A78;
}

.legal-content a {
  color: #2B7A78;
  text-decoration: underline;
}

.legal-navigation {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-radius: 30px;
  padding: 40px 30px;
  text-align: center;
}

.legal-navigation h3 {
  margin-bottom: 20px;
}

.legal-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.legal-navigation ul li a {
  color: #2B7A78;
  font-weight: 600;
  padding: 10px 20px;
  background: white;
  border-radius: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.legal-navigation ul li a:hover {
  background: #2B7A78;
  color: white;
  transform: translateY(-3px);
}

.legal-summary {
  background: linear-gradient(135deg, #FFD93D 0%, #FFA500 100%);
  border-radius: 30px;
  padding: 40px 30px;
  margin-bottom: 40px;
}

.legal-summary h2 {
  text-align: center;
  color: white;
  margin-bottom: 30px;
}

.legal-summary h2::after {
  background: white;
  left: 50%;
  transform: translateX(-50%);
}

.legal-summary ul {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}

.legal-summary ul li {
  padding: 15px 15px 15px 50px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  position: relative;
  color: #2d3748;
  font-weight: 600;
}

.legal-summary ul li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #2B7A78;
  font-weight: 700;
  font-size: 20px;
}

/* ========================================
   FOOTER - Playful Bottom
   ======================================== */
footer {
  background: linear-gradient(135deg, #17252A 0%, #0d1418 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

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

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

.footer-col h3 {
  color: #FFD93D;
  margin-bottom: 20px;
  font-size: 24px;
}

.footer-col h4 {
  color: #FFD93D;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

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

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

.footer-col ul li {
  margin-bottom: 10px;
}

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

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

/* ========================================
   COOKIE CONSENT BANNER - Playful
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #17252A 0%, #2B7A78 100%);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  color: white;
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
}

.cookie-text a {
  color: #FFD93D;
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFD93D, #FFA500);
  color: #17252A;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.cookie-reject:hover {
  background: white;
  color: #17252A;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}

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

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

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

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

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

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

.cookie-modal h2 {
  color: #2B7A78;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 25px;
  padding: 20px;
  background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
  border-radius: 15px;
}

.cookie-category h3 {
  color: #17252A;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #718096;
  font-size: 14px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: #2B7A78;
}

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

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1;
  min-width: 150px;
}

/* ========================================
   RESPONSIVE DESIGN - Mobile First
   ======================================== */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  section {
    margin-bottom: 40px;
    padding: 30px 15px;
  }
  
  /* Flex Layouts */
  .hero-cta,
  .trust-badges,
  .services-grid,
  .benefits-grid,
  .values-grid,
  .testimonials-grid,
  .methods-grid,
  .packages-grid,
  .indicators-grid,
  .guarantees-grid,
  .differentiators-grid,
  .steps-grid,
  .suggestions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-item,
  .value-item,
  .testimonial-card,
  .method-card,
  .package-card,
  .indicator-item,
  .guarantee-item,
  .differentiator-item,
  .step,
  .suggestion-card {
    width: 100%;
    max-width: 400px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-col {
    min-width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons,
  .nav-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons a,
  .cta-buttons button,
  .nav-buttons a {
    width: 100%;
    text-align: center;
  }
  
  /* Phone Display */
  .phone-display {
    font-size: 24px;
  }
  
  /* Table */
  .price-table {
    overflow-x: auto;
  }
  
  table {
    min-width: 600px;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .milestone {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .phone-link {
    font-size: 16px;
    padding: 8px 15px;
  }
}

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

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

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
:focus-visible {
  outline: 3px solid #FFD93D;
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
}
