/* CSS Reset and 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', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFE5CC 50%, #FFCCB3 100%);
  overflow-x: hidden;
}

/* PLAYFUL DYNAMIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.2;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px #FFE74C;
  animation: bounceIn 0.6s ease-out;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #4ECDC4;
  text-shadow: 2px 2px 0px #FF6B35;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #FF6B35;
}

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

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

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

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

@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); }
}

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

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

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

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #FF6B35;
  color: white;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  background: #4ECDC4;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 40px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  color: #FF6B35;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 32px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  font-weight: bold;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mobile-nav a {
  color: white;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: 80%;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 3px solid white;
}

.mobile-nav a:hover {
  background: white;
  color: #FF6B35;
  transform: scale(1.1) rotate(-2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* HEADER */
header {
  background: white;
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 5px solid #FFE74C;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu a {
  color: #2C3E50;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  background: #FFE74C;
  color: #FF6B35;
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 6px 15px rgba(255, 231, 76, 0.4);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 231, 76, 0.3) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  color: white;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  font-size: 56px;
  animation: bounceIn 0.8s ease-out;
}

.hero-subtitle {
  font-size: 24px;
  color: white;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badges span {
  background: white;
  color: #FF6B35;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 3px solid #FFE74C;
}

.trust-badges span:hover {
  transform: translateY(-5px) rotate(-3deg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 20px 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: #FF6B35;
  color: white;
  border: 4px solid #FFE74C;
}

.btn-primary:hover {
  background: #FFE74C;
  color: #FF6B35;
  transform: translateY(-5px) scale(1.05) rotate(-2deg);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: white;
  color: #FF6B35;
  border: 4px solid #4ECDC4;
}

.btn-secondary:hover {
  background: #4ECDC4;
  color: white;
  transform: translateY(-5px) scale(1.05) rotate(2deg);
  box-shadow: 0 12px 30px rgba(78, 205, 196, 0.4);
}

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

.section-subtitle {
  font-size: 18px;
  color: #4ECDC4;
  margin-bottom: 32px;
  font-weight: 700;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

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

.page-hero p {
  color: white;
  font-size: 20px;
  font-weight: 700;
}

/* SERVICES GRID */
.services-overview {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  border: 5px solid #FFE74C;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '⚡';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 60px;
  opacity: 0.1;
  animation: float 3s ease-in-out infinite;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 20px 50px rgba(78, 205, 196, 0.4);
  border-color: #4ECDC4;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #FF6B35;
  margin: 20px 0;
  text-shadow: 2px 2px 0px #FFE74C;
}

.service-card .link {
  color: #4ECDC4;
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.service-card .link:hover {
  transform: translateX(10px);
  color: #FF6B35;
}

/* WHY US SECTION */
.why-us {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.benefit {
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  border-radius: 20px;
  border: 4px solid #FF6B35;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.benefit h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 40px 0;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FF6B35;
  text-shadow: 3px 3px 0px #FFE74C;
  margin-bottom: 8px;
  animation: pulse 2s infinite;
}

.stat-label {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 700;
  text-transform: uppercase;
}

/* PROCESS STEPS */
.process {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(20% - 30px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.2);
  border: 4px solid #4ECDC4;
  transition: all 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
  border-color: #FF6B35;
}

.step-number {
  display: block;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  color: white;
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 4px solid #FFE74C;
}

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

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonials h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.testimonials .section-subtitle {
  color: white;
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 5px solid #FFE74C;
  transition: all 0.3s ease;
  position: relative;
}

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

.testimonial-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 3px solid #FFE74C;
}

.testimonial-author strong {
  color: #FF6B35;
  font-size: 18px;
  font-weight: 900;
}

.testimonial-author span {
  color: #4ECDC4;
  font-size: 14px;
  font-weight: 700;
}

.rating {
  color: #FFE74C;
  font-size: 20px;
  text-shadow: 1px 1px 0px #FF6B35;
}

/* LOCATION */
.location {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: white;
  border-radius: 30px;
}

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

.address, .hours {
  flex: 1 1 calc(50% - 40px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  border-radius: 20px;
  border: 4px solid #4ECDC4;
}

.address h3, .hours h3 {
  margin-bottom: 16px;
}

/* CTA BANNER */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.cta-banner h2, .cta-section h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: white;
  padding: 60px 20px 20px;
  border-top: 8px solid #FFE74C;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

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

.footer-section h4 {
  color: #FFE74C;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #FFE74C;
  padding-left: 8px;
}

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

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

/* SERVICE DETAILED */
.services-detailed {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.service-detail {
  background: white;
  padding: 40px;
  border-radius: 25px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border: 5px solid #FFE74C;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
  border-color: #4ECDC4;
}

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

.service-detail ul {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-detail ul li {
  padding-left: 32px;
  position: relative;
  font-weight: 600;
  color: #2C3E50;
}

.service-detail ul li::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 20px;
}

.service-price {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  color: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 900;
  display: inline-block;
  margin: 20px 0;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.service-brands {
  background: #FFE74C;
  padding: 12px 20px;
  border-radius: 15px;
  margin-top: 16px;
  font-weight: 700;
  border: 3px solid #FF6B35;
}

/* OPTIONS GRID */
.service-options {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  border-radius: 30px;
}

.service-options h2 {
  text-align: center;
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
}

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

.option-card {
  background: white;
  padding: 40px;
  border-radius: 25px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 5px solid #FFE74C;
  transition: all 0.3s ease;
}

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

.option-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.option-card .duration {
  color: #4ECDC4;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.option-card .price {
  font-size: 32px;
  color: #FF6B35;
  font-weight: 900;
  margin-bottom: 24px;
  display: block;
  text-shadow: 2px 2px 0px #FFE74C;
}

.option-card ul {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-card ul li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.option-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 900;
  font-size: 20px;
}

/* WARRANTY */
.warranty {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  text-align: center;
}

.warranty-badge {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 28px;
  font-weight: 900;
  display: inline-block;
  margin: 20px 0 32px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  border: 5px solid #FFE74C;
  animation: pulse 2s infinite;
}

.warranty-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.warranty-details li {
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  font-weight: 600;
}

.warranty-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ECDC4;
  font-weight: 900;
  font-size: 24px;
}

/* VALUES */
.values {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border: 4px solid #4ECDC4;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
  border-color: #FF6B35;
}

/* COMPANY STORY */
.company-story {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  padding-left: 32px;
  border-left: 5px solid #FFE74C;
}

.milestone {
  position: relative;
  padding: 16px 24px;
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  border-radius: 15px;
  font-weight: 700;
  border: 3px solid #4ECDC4;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.3);
}

.milestone::before {
  content: '';
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: #FF6B35;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px #FFE74C;
}

/* TEAM */
.team {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  border-radius: 30px;
}

.team h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.team p {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.expertise-list li {
  background: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  color: #FF6B35;
  border: 4px solid #FFE74C;
  transition: all 0.3s ease;
}

.expertise-list li:hover {
  transform: translateX(10px) rotate(-1deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* CERTIFICATIONS */
.certifications {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.cert-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cert-list li {
  flex: 1 1 calc(50% - 20px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  padding: 20px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  border: 4px solid #4ECDC4;
  transition: all 0.3s ease;
}

.cert-list li:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

/* STATISTICS */
.statistics {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  border-radius: 30px;
}

.statistics h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 40px;
}

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

.stat-box {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 180px;
  max-width: 250px;
  text-align: center;
  border: 5px solid #FFE74C;
  transition: all 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-10px) scale(1.05) rotate(-2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-box .stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FF6B35;
  text-shadow: 3px 3px 0px #FFE74C;
  margin-bottom: 8px;
}

.stat-box .stat-label {
  font-size: 16px;
  color: #2C3E50;
  font-weight: 700;
  text-transform: uppercase;
}

/* COMMUNITY */
.community {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.community ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.community ul li {
  padding-left: 32px;
  position: relative;
  font-weight: 600;
  font-size: 18px;
}

.community ul li::before {
  content: '❤️';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* PRICING TABLES */
.pricing-promise {
  background: white;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 25px;
  border: 5px solid #FFE74C;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
}

.promise-list li {
  padding-left: 32px;
  position: relative;
  font-weight: 700;
}

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

.pricing-tables {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.pricing-category {
  background: white;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border: 5px solid #4ECDC4;
}

.pricing-category h2 {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.base-price {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 20px;
  border: 3px solid #FFE74C;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.price-table tr {
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  transition: all 0.3s ease;
}

.price-table tr:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 15px rgba(255, 107, 53, 0.2);
}

.price-table td {
  padding: 16px 20px;
  font-weight: 600;
  border: 3px solid #4ECDC4;
}

.price-table td:first-child {
  border-radius: 15px 0 0 15px;
  border-right: none;
}

.price-table td:nth-child(2) {
  color: #FF6B35;
  font-weight: 900;
  font-size: 18px;
  border-left: none;
  border-right: none;
}

.price-table td:last-child {
  border-radius: 0 15px 15px 0;
  color: #4ECDC4;
  font-weight: 700;
  border-left: none;
}

.note {
  margin-top: 20px;
  padding: 16px;
  background: #FFE74C;
  border-radius: 15px;
  font-weight: 700;
  border: 3px solid #FF6B35;
}

/* ADDITIONAL COSTS */
.additional-costs {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.info-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.info-box {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border: 5px solid #FFE74C;
}

.info-box h3 {
  margin-bottom: 16px;
}

.info-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-box ul li {
  padding-left: 24px;
  position: relative;
  font-weight: 600;
}

.info-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 24px;
  font-weight: 900;
}

/* PRICE GUARANTEE */
.price-guarantee {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.price-guarantee h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.price-guarantee p {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
}

.price-guarantee ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-guarantee ul li {
  background: white;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  color: #2C3E50;
  border: 4px solid #FFE74C;
  transition: all 0.3s ease;
}

.price-guarantee ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.faq-section h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

.faq-item {
  background: white;
  padding: 32px;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.2);
  border: 4px solid #FFE74C;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
  border-color: #4ECDC4;
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  font-weight: 600;
  line-height: 1.8;
}

/* CONTACT PAGE */
.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.contact-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border: 5px solid #4ECDC4;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.contact-card h3 {
  margin-bottom: 20px;
}

.contact-card .primary {
  font-size: 20px;
  font-weight: 900;
  color: #FF6B35;
  margin-bottom: 12px;
}

.contact-card .secondary {
  color: #4ECDC4;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-card .availability {
  background: #FFE74C;
  padding: 12px 20px;
  border-radius: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  border: 3px solid #FF6B35;
}

.contact-card .response {
  font-weight: 700;
  color: #4ECDC4;
}

/* CONTACT INFO */
.contact-info-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: white;
  border-radius: 30px;
}

.form-note {
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  padding: 24px;
  border-radius: 20px;
  border: 4px solid #4ECDC4;
  margin-top: 24px;
}

.form-note a {
  color: #FF6B35;
  font-weight: 900;
  text-decoration: underline;
}

/* LOCATION MAP */
.location-map {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.address-info, .directions {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border: 4px solid #FFE74C;
}

.directions ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.directions ul li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
}

.directions ul li::before {
  content: '➤';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-size: 18px;
}

/* HOURS INFO */
.hours-info {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  border-radius: 30px;
}

.hours-info h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin-bottom: 32px;
}

.hours-table {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 5px solid #FFE74C;
}

.hours-table tr {
  border-bottom: 3px solid #FFE74C;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 16px 24px;
  font-weight: 700;
}

.hours-table td:first-child {
  color: #FF6B35;
  font-size: 18px;
}

.hours-table td:last-child {
  text-align: right;
  color: #4ECDC4;
  font-size: 16px;
}

.special-note {
  text-align: center;
  color: white;
  font-weight: 700;
  margin-top: 24px;
  font-size: 16px;
}

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

.text-section {
  background: white;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
  border: 5px solid #FFE74C;
  max-width: 900px;
  margin: 0 auto;
}

.text-section h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.text-section ul, .text-section ol {
  margin: 16px 0;
  padding-left: 32px;
}

.text-section ul li, .text-section ol li {
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.8;
}

/* THANK YOU PAGE */
.thank-you-hero, .thank-you-page {
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  border-radius: 30px;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: #4ECDC4;
  margin: 0 auto 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 8px solid #FFE74C;
  animation: bounceIn 0.8s ease-out;
}

.thank-you-hero h1, .thank-you-page h1 {
  color: white;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
}

.lead {
  font-size: 20px;
  color: white;
  font-weight: 700;
  margin-bottom: 32px;
}

/* NEXT STEPS */
.next-steps {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.steps-grid .step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
}

.time {
  display: block;
  margin-top: 16px;
  color: #4ECDC4;
  font-weight: 900;
  font-size: 14px;
  text-transform: uppercase;
}

/* ALTERNATIVE CONTACT */
.alternative-contact {
  background: white;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}

.option {
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  border-radius: 20px;
  border: 4px solid #4ECDC4;
}

.option strong {
  display: block;
  font-size: 20px;
  color: #FF6B35;
  margin-bottom: 12px;
}

.option span {
  display: block;
  margin-top: 12px;
  color: #4ECDC4;
  font-weight: 700;
}

/* HELPFUL RESOURCES */
.helpful-resources {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 32px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
  border: 4px solid #FFE74C;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 20px 50px rgba(78, 205, 196, 0.3);
}

.resource-card h3 {
  margin-bottom: 12px;
}

.resource-card .link {
  color: #4ECDC4;
  font-weight: 900;
  display: inline-block;
  margin-top: 16px;
}

/* TESTIMONIAL SINGLE */
.testimonial-single {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B35 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
}

.testimonial-single blockquote {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 5px solid #FFE74C;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-single blockquote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 20px;
  font-size: 120px;
  color: white;
  font-family: Georgia, serif;
}

.testimonial-single blockquote p {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 24px;
  color: #2C3E50;
  line-height: 1.8;
}

.testimonial-single blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 3px solid #FFE74C;
}

.testimonial-single blockquote footer strong {
  color: #FF6B35;
  font-size: 20px;
  font-weight: 900;
}

.testimonial-single blockquote footer span {
  color: #4ECDC4;
  font-weight: 700;
}

/* SOCIAL PROOF */
.social-proof {
  padding: 60px 20px;
  margin-bottom: 60px;
  background: white;
  border-radius: 30px;
  text-align: center;
}

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

.stats-row .stat {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-value {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #FF6B35;
  text-shadow: 3px 3px 0px #FFE74C;
  margin-bottom: 8px;
}

/* CONTACT CTA */
.contact-cta {
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 30px;
  text-align: center;
}

.contact-cta h2 {
  color: white;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

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

.contact-cta .contact-methods {
  padding: 0;
  margin: 0;
}

.contact-cta .method {
  background: white;
  padding: 24px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  border: 4px solid #FFE74C;
}

.contact-cta .method strong {
  display: block;
  font-size: 20px;
  color: #FF6B35;
  margin-bottom: 12px;
}

.contact-cta .method p {
  color: #2C3E50;
  font-size: 16px;
  margin: 8px 0;
}

.contact-cta .method .availability {
  display: block;
  margin-top: 12px;
  color: #4ECDC4;
  font-weight: 900;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B35 0%, #4ECDC4 100%);
  padding: 24px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 5px solid #FFE74C;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: white;
  font-weight: 700;
}

.cookie-text p {
  color: white;
  margin: 0;
}

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

.cookie-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cookie-btn-accept {
  background: white;
  color: #FF6B35;
  border: 3px solid #FFE74C;
}

.cookie-btn-accept:hover {
  background: #FFE74C;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

.cookie-btn-reject:hover {
  background: white;
  color: #FF6B35;
  transform: translateY(-3px) scale(1.05);
}

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

.cookie-btn-settings:hover {
  background: white;
  color: #4ECDC4;
  transform: translateY(-3px) scale(1.05);
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 30px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 8px solid #FFE74C;
  animation: bounceIn 0.5s ease-out;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #FFE74C;
}

.cookie-modal-header h3 {
  margin: 0;
}

.cookie-modal-close {
  background: #FF6B35;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-weight: bold;
}

.cookie-modal-close:hover {
  background: #4ECDC4;
  transform: rotate(90deg) scale(1.1);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #FFE74C 0%, #FFF5E6 100%);
  border-radius: 15px;
  border: 3px solid #4ECDC4;
}

.cookie-category h4 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

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

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

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

input:disabled + .cookie-slider {
  background-color: #4ECDC4;
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 3px solid #FFE74C;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .benefit {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 calc(50% - 30px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .value-card {
    flex: 1 1 100%;
  }
  
  .option-card {
    flex: 1 1 100%;
  }
  
  .info-box {
    flex: 1 1 100%;
  }
  
  .contact-card {
    flex: 1 1 100%;
  }
  
  .stat-box {
    flex: 1 1 calc(50% - 30px);
  }
  
  .resource-card {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .stat-box {
    flex: 1 1 100%;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}