/* ============================================
   NovaVital - Playful & Dynamic Design System
   CSS Stylesheet - Flexbox Only Layout
   ============================================ */

/* 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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2D3748;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFFFFF 100%);
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0px rgba(248, 178, 79, 0.3);
}

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

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

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

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

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

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

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

/* Header */
header {
  background: linear-gradient(135deg, #2D9B6C 0%, #4A90E2 100%);
  padding: 20px 0;
  box-shadow: 0 8px 20px rgba(45, 155, 108, 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;
  flex-wrap: wrap;
  gap: 20px;
}

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

.logo img:hover {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

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

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

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

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

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

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 10px;
}

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.btn::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:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #F8B24F 0%, #2D9B6C 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(248, 178, 79, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #2D9B6C;
  border-color: #2D9B6C;
}

.btn-secondary:hover {
  background: #2D9B6C;
  color: white;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(45, 155, 108, 0.4);
}

.btn-large {
  padding: 18px 40px;
  font-size: 18px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(45, 155, 108, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '⭐';
  position: absolute;
  top: 20px;
  left: 10%;
  font-size: 40px;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: '✨';
  position: absolute;
  bottom: 30px;
  right: 15%;
  font-size: 35px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #718096;
  margin-top: 24px;
}

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

.breadcrumb a {
  color: #4A90E2;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #718096;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Grid Layouts - FLEXBOX ONLY */
.value-grid,
.services-grid,
.process-steps,
.testimonials-grid,
.benefits-grid,
.contact-grid,
.team-grid,
.cert-grid,
.stats-grid,
.features-grid,
.packages-grid,
.categories-grid,
.tips-grid,
.phases-grid,
.stories-grid,
.actions-grid,
.location-grid,
.team-contact-grid,
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

/* Cards */
.value-card,
.service-card,
.testimonial-card,
.benefit-item,
.contact-item,
.team-member,
.cert-item,
.stat-card,
.feature-item,
.package-card,
.category-card,
.tip-card,
.phase-card,
.story-card,
.action-card,
.location-box,
.contact-person,
.mission-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  overflow: hidden;
}

.value-card::before,
.service-card::before,
.tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #F8B24F, #2D9B6C, #4A90E2);
}

.value-card:hover,
.service-card:hover,
.action-card:hover,
.tip-card:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 15px 35px rgba(45, 155, 108, 0.3);
}

.service-card h3 {
  color: #2D9B6C;
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #F8B24F;
  margin: 16px 0;
}

/* Process Steps */
.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4A90E2, #2D9B6C);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Testimonials */
.testimonial-card {
  background: linear-gradient(135deg, #FFFBF0, #FFFFFF);
  border-left: 5px solid #F8B24F;
  font-style: italic;
  color: #2D3748;
  padding: 30px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #2D3748;
  margin-bottom: 12px;
}

.author {
  font-weight: 700;
  color: #2D9B6C;
  font-style: normal;
  margin-top: 16px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #F8B24F;
  margin-top: 30px;
}

/* Benefits Section */
.benefit-item {
  flex: 1 1 calc(50% - 24px);
  background: linear-gradient(135deg, #E6F7F1, #FFFFFF);
  border-left: 4px solid #2D9B6C;
  padding: 20px 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.benefit-item::before {
  content: '✓';
  color: #2D9B6C;
  font-size: 24px;
  font-weight: 700;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Stats */
.stat-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #2D9B6C;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: #718096;
}

/* Service Detail */
.service-box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  border-top: 5px solid #2D9B6C;
}

.service-box h2 {
  color: #2D9B6C;
}

.service-box .price {
  font-size: 32px;
  margin: 20px 0;
}

.service-box .price span {
  font-size: 16px;
  color: #718096;
  font-weight: 400;
}

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

.service-box li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

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

.ideal-for {
  background: rgba(248, 178, 79, 0.1);
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 600;
  color: #2D3748;
  margin: 20px 0;
}

/* Packages */
.package-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
  background: linear-gradient(135deg, #FFF8E7, #FFFFFF);
  border: 3px solid #F8B24F;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #2D9B6C;
  margin: 15px 0;
}

.old-price {
  font-size: 18px;
  color: #A0AEC0;
  text-decoration: line-through;
  display: block;
  margin-top: 5px;
}

.savings {
  background: #2D9B6C;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
}

/* Wellness Program */
.program-price {
  font-size: 28px;
  font-weight: 700;
  color: #F8B24F;
  margin: 20px 0;
}

.trust-badge {
  font-size: 14px;
  color: #718096;
  margin-top: 20px;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.included-list li {
  padding: 10px 0;
  font-size: 16px;
}

.guarantee {
  background: rgba(45, 155, 108, 0.1);
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
  border-left: 4px solid #2D9B6C;
}

/* Contact Form */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-note {
  background: rgba(74, 144, 226, 0.1);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #4A90E2;
}

.form-note ul {
  margin: 15px 0;
  padding-left: 25px;
}

.form-note li {
  margin: 8px 0;
}

.form-action {
  margin-top: 25px;
}

/* Thank You Page */
.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2D9B6C, #4A90E2);
  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;
  box-shadow: 0 10px 30px rgba(45, 155, 108, 0.4);
}

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

.steps {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.steps .step {
  background: rgba(248, 178, 79, 0.1);
  padding: 15px 20px;
  border-left: 4px solid #F8B24F;
  border-radius: 10px;
  box-shadow: none;
}

/* Legal Pages */
.legal-content {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

.content-wrapper h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.last-updated {
  color: #718096;
  font-size: 14px;
  margin-top: 10px;
}

.notice-box {
  background: rgba(248, 178, 79, 0.1);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #F8B24F;
  margin: 20px 0;
}

/* CTA Sections */
.cta-section {
  background: linear-gradient(135deg, #2D9B6C 0%, #4A90E2 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '🌟';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 50px;
  animation: rotate 4s linear infinite;
}

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

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

.cta-section h2::after {
  background: white;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

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

.cta-center {
  text-align: center;
  margin: 40px 0;
}

.trust-element {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 20px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 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 1 200px;
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

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

.footer-nav a {
  color: #E2E8F0;
  transition: all 0.3s ease;
  padding: 5px 0;
}

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

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
  color: white;
  padding: 25px 20px;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
  z-index: 1500;
  animation: slideUp 0.5s ease;
  display: none;
}

.cookie-consent.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    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 {
  flex: 1 1 400px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: #2D9B6C;
  color: white;
}

.cookie-accept:hover {
  background: #248259;
  transform: scale(1.05);
}

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

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

.cookie-settings {
  background: #4A90E2;
  color: white;
}

.cookie-settings:hover {
  background: #357ABD;
  transform: scale(1.05);
}

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

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

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #718096;
}

.cookie-category {
  margin: 25px 0;
  padding: 20px;
  background: rgba(45, 155, 108, 0.05);
  border-radius: 10px;
}

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

.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-color: #ccc;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2D9B6C;
}

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

input:disabled + .slider {
  background-color: #2D9B6C;
  cursor: not-allowed;
}

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

/* Milestones */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  justify-content: center;
}

.milestone {
  background: linear-gradient(135deg, #4A90E2, #2D9B6C);
  color: white;
  padding: 15px 25px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

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

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 50px 20px;
  }

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

  .value-card,
  .service-card,
  .testimonial-card,
  .package-card,
  .phase-card,
  .story-card,
  .action-card {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 calc(50% - 24px);
  }

  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }

  .benefit-item {
    flex: 1 1 100%;
  }

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

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

  .cookie-buttons {
    justify-content: center;
  }

  section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .service-box {
    padding: 25px;
  }

  .step {
    flex: 1 1 100%;
  }

  .stat-card {
    flex: 1 1 100%;
  }

  .modal-content {
    padding: 25px;
  }
}

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

.btn:active {
  animation: pulse 0.3s ease;
}

/* Accessibility */
*:focus {
  outline: 3px solid #F8B24F;
  outline-offset: 2px;
}

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

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cta-section {
    display: none;
  }

  body {
    background: white;
  }

  .hero {
    background: white;
    padding: 20px;
  }
}

/* Performance Optimizations */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Additional Utility Classes */
.text-center {
  text-align: center;
}

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

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

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

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

.location-benefits,
.contact-details {
  text-align: center;
  color: #718096;
  margin-top: 20px;
}

.results {
  color: #2D9B6C;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefits-list {
  max-width: 600px;
  margin: 30px auto;
}

.benefits-list p {
  font-size: 18px;
  padding: 10px 0;
}

.guarantee-reminder {
  font-size: 14px;
  color: #718096;
  margin-top: 20px;
}

.social-proof {
  background: rgba(45, 155, 108, 0.05);
  padding: 40px 20px;
  border-radius: 20px;
}

.stats {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  font-weight: 600;
  color: #2D9B6C;
}

.general-inquiry {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: #718096;
  margin-top: 10px;
}

/* Contact Details Styling */
.contact-details p {
  margin: 15px 0;
}

.role {
  color: #4A90E2;
  font-weight: 600;
  margin: 5px 0;
}