/* ===================================
   AUTORIPARA PRO - PLAYFUL DYNAMIC STYLES
   Design: Bright colors, animated elements, fun fonts, energetic feel
   =================================== */

/* CSS RESET & BASE */
* {
  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.7;
  color: #1C1C1C;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFEAA7 50%, #FFD3A5 100%);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #C8102E;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px #FFD93D;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

strong {
  font-weight: 700;
  color: #C8102E;
}

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

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

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

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

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

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

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #C8102E 0%, #FF1744 100%);
  color: #FFFFFF;
  border-color: #C8102E;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF1744 0%, #C8102E 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.4);
  animation: wiggle 0.5s ease;
}

.btn-secondary {
  background: #FFFFFF;
  color: #C8102E;
  border-color: #C8102E;
}

.btn-secondary:hover {
  background: #F5A623;
  color: #FFFFFF;
  border-color: #F5A623;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.btn-primary:active,
.btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, #C8102E 0%, #FF1744 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.5);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FFFFFF;
  color: #C8102E;
  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;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: #FFFFFF;
  color: #C8102E;
  transform: translateX(10px) scale(1.05);
  border-color: #F5A623;
}

/* HEADER */
.top-bar {
  background: linear-gradient(135deg, #1C1C1C 0%, #3C3C3C 100%);
  color: #FFFFFF;
  padding: 12px 0;
  font-size: 14px;
  text-align: center;
  animation: slideInLeft 0.6s ease;
}

.top-bar p {
  margin: 0;
  color: #FFFFFF;
  font-weight: 600;
}

header {
  background: #FFFFFF;
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideInRight 0.6s ease;
}

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

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

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

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

.tagline {
  font-size: 12px;
  color: #F5A623;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.main-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1C;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

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

.phone-link {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #C8102E;
  padding: 8px 16px;
  border-radius: 25px;
  background: #FFF8E7;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: #F5A623;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFD93D 0%, #F5A623 50%, #FF6B6B 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  animation: bounceIn 1s ease;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  text-shadow: 4px 4px 0px #C8102E;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

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

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

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  min-width: 150px;
}

.trust-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: wiggle 0.5s ease;
}

.trust-item strong {
  font-size: 32px;
  color: #C8102E;
  font-family: 'Oswald', sans-serif;
}

.trust-item span {
  font-size: 14px;
  color: #1C1C1C;
  text-transform: uppercase;
  font-weight: 600;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #FF6B6B 0%, #F5A623 100%);
  padding: 60px 20px 40px;
  text-align: center;
  margin-bottom: 40px;
  animation: slideInLeft 0.6s ease;
}

.page-hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  text-shadow: 3px 3px 0px #C8102E;
}

.page-hero p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.breadcrumb a {
  color: #FFFFFF;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #FFD93D;
}

/* SECTIONS */
.section,
.content-section,
.services-highlight,
.benefits,
.testimonials,
.values-section,
.services-intro,
.services-list,
.form-section,
.quick-services,
.trust-section,
.contact-methods,
.hours-section,
.map-section,
.legal-content,
.confirmation-section,
.next-steps,
.alternative-actions,
.contact-summary {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

.section h2,
.content-section h2,
.services-highlight h2,
.benefits h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 32px;
  animation: slideInLeft 0.8s ease;
}

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

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #FFD93D 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 35px rgba(200, 16, 46, 0.3);
  border-color: #F5A623;
}

.service-card:hover::before {
  opacity: 0.2;
  animation: float 3s ease infinite;
}

.service-card h3 {
  color: #C8102E;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #F5A623;
  text-align: center;
  padding: 12px;
  background: #FFF8E7;
  border-radius: 15px;
  border: 2px solid #FFD93D;
}

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

.benefit-item,
.value-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  max-width: 500px;
  border: 3px solid transparent;
  text-align: center;
}

.benefit-item:hover,
.value-card:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
  border-color: #FFD93D;
  animation: wiggle 0.5s ease;
}

.benefit-item h3,
.value-card h3 {
  color: #C8102E;
  margin-bottom: 12px;
  font-size: 22px;
}

.benefit-item p,
.value-card p {
  color: #2C2C2C;
  margin-bottom: 0;
}

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

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

.testimonial-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
  border: 3px solid #FFD93D;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(200, 16, 46, 0.3);
  border-color: #F5A623;
}

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

.testimonial-card strong {
  color: #C8102E;
  font-weight: 700;
  font-size: 16px;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: inline-block;
  margin: 0 auto;
}

/* CTA SECTIONS */
.final-cta,
.cta-section {
  background: linear-gradient(135deg, #C8102E 0%, #FF1744 100%);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 60px;
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.3);
  animation: pulse 3s ease infinite;
}

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

.final-cta p,
.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 600;
}

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

.trust-badge {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  background: rgba(255,255,255,0.2);
  border-radius: 25px;
  display: inline-block;
  margin-top: 16px;
}

/* SERVICE ITEMS */
.service-item {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #F5A623;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.3);
  border-left-color: #C8102E;
}

.service-item h3 {
  color: #C8102E;
  margin-bottom: 12px;
  font-size: 22px;
}

.service-item p {
  margin-bottom: 0;
  color: #2C2C2C;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.milestone {
  background: linear-gradient(135deg, #FFD93D 0%, #F5A623 100%);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 20px);
  min-width: 150px;
}

.milestone:hover {
  transform: translateY(-5px) rotate(-2deg);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.milestone strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 8px;
}

/* HIGHLIGHTS LIST */
.highlights {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.highlights li {
  padding: 12px 0;
  border-bottom: 2px solid #FFF8E7;
  color: #1C1C1C;
  font-weight: 600;
}

.highlights li:last-child {
  border-bottom: none;
}

/* FORM SECTION */
.form-note {
  background: linear-gradient(135deg, #FFD93D 0%, #FFEAA7 100%);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  border: 3px solid #F5A623;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-note p {
  margin-bottom: 12px;
  color: #1C1C1C;
}

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

.form-note a:hover {
  color: #FF1744;
}

.benefits-list {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.benefits-list p {
  padding: 10px 0;
  border-bottom: 2px solid #FFF8E7;
  color: #1C1C1C;
  font-weight: 600;
}

.benefits-list p:last-child {
  border-bottom: none;
}

/* QUICK SERVICES */
.services-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.quick-service {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 24px);
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border: 3px solid #FFD93D;
}

.quick-service:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
  border-color: #F5A623;
  animation: wiggle 0.5s ease;
}

.quick-service h3 {
  color: #1C1C1C;
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
}

.quick-service .price {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #C8102E;
}

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

.contact-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  border: 3px solid transparent;
}

.contact-card:hover {
  transform: translateY(-8px) rotate(-2deg);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
  border-color: #FFD93D;
}

.contact-card h3 {
  color: #C8102E;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-card p {
  margin-bottom: 8px;
}

.contact-card strong {
  color: #1C1C1C;
  font-size: 18px;
}

.contact-card a {
  color: #C8102E;
  font-weight: 700;
}

.contact-card a:hover {
  color: #FF1744;
  text-decoration: underline;
}

/* HOURS LIST */
.hours-list {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 3px solid #FFD93D;
}

.hours-list p {
  padding: 12px 0;
  border-bottom: 2px solid #FFF8E7;
  color: #1C1C1C;
  font-size: 18px;
}

.hours-list p:last-child {
  border-bottom: none;
}

.hours-list .note {
  color: #C8102E;
  font-weight: 700;
  font-style: italic;
}

/* LEGAL CONTENT */
.legal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 900px;
  margin: 0 auto 60px;
}

.legal-content h2 {
  color: #C8102E;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  color: #1C1C1C;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #2C2C2C;
}

.update-date {
  color: #F5A623;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}

.contact-box {
  background: linear-gradient(135deg, #FFD93D 0%, #FFEAA7 100%);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  border: 3px solid #F5A623;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-box h3 {
  color: #C8102E;
  margin-bottom: 16px;
}

.contact-box p {
  margin-bottom: 8px;
  color: #1C1C1C;
  font-weight: 600;
}

.contact-box a {
  color: #C8102E;
  font-weight: 700;
  text-decoration: underline;
}

.contact-box a:hover {
  color: #FF1744;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #FFD93D 0%, #F5A623 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
  animation: bounceIn 1s ease;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #4CAF50;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  text-shadow: 3px 3px 0px #C8102E;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
}

.confirmation-section {
  text-align: center;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.next-steps ol {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin: 30px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps li {
  padding: 15px 0;
  border-bottom: 2px solid #FFF8E7;
  color: #1C1C1C;
  font-weight: 600;
}

.next-steps li:last-child {
  border-bottom: none;
}

.urgency-note {
  background: linear-gradient(135deg, #FFD93D 0%, #FFEAA7 100%);
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
  border: 3px solid #F5A623;
  text-align: center;
}

.urgency-note a {
  color: #C8102E;
  font-weight: 700;
  text-decoration: underline;
}

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

.action-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8E7 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  flex: 1 1 calc(50% - 30px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid #FFD93D;
}

.action-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
  border-color: #F5A623;
}

.action-card h3 {
  color: #C8102E;
  margin-bottom: 12px;
}

.action-card p {
  margin-bottom: 20px;
}

.contact-info-section,
.contact-summary {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  padding: 12px 0;
  border-bottom: 2px solid #FFF8E7;
}

.contact-info p:last-child {
  border-bottom: none;
}

.back-navigation {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1C1C1C 0%, #3C3C3C 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

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

.footer-col h4 {
  color: #F5A623;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col p,
.footer-col a {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

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

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

.footer-bottom p {
  color: #FFFFFF;
  font-size: 14px;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #3C3C3C 100%);
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  animation: slideInBottom 0.6s ease forwards;
}

@keyframes slideInBottom {
  to {
    transform: translateY(0);
  }
}

.cookie-banner.hidden {
  transform: translateY(100%);
}

.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 300px;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #C8102E 0%, #FF1744 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.4);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: #F5A623;
  border-color: #F5A623;
  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: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0,0,0,0.3);
  animation: bounceIn 0.5s ease;
}

.cookie-modal-content h2 {
  color: #C8102E;
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFF8E7;
  border-radius: 15px;
  border: 2px solid #FFD93D;
}

.cookie-category h3 {
  color: #1C1C1C;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #4CAF50;
}

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

.toggle-switch.active::after {
  transform: translateX(24px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .services-grid {
    gap: 20px;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 20px);
  }
  
  .benefit-item,
  .value-card {
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .page-hero h1 {
    font-size: 36px;
  }
  
  /* HEADER */
  .header-content {
    justify-content: center;
    text-align: center;
  }
  
  .logo {
    align-items: center;
  }
  
  .header-cta {
    justify-content: center;
    width: 100%;
  }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  /* GRIDS */
  .services-grid,
  .benefits-grid,
  .values-grid,
  .testimonials-grid,
  .contact-grid,
  .actions-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-item,
  .value-card,
  .testimonial-card,
  .contact-card,
  .quick-service,
  .action-card {
    flex: 1 1 100%;
    max-width: 500px;
  }
  
  .milestone {
    flex: 1 1 calc(50% - 20px);
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  /* TYPOGRAPHY */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .page-hero h1 {
    font-size: 28px;
  }
  
  /* BUTTONS */
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* SECTIONS */
  .section,
  .content-section,
  .services-highlight,
  .benefits,
  .testimonials,
  .final-cta,
  .cta-section {
    padding: 30px 15px;
  }
  
  /* MOBILE MENU */
  .mobile-menu {
    width: 90%;
  }
  
  .trust-indicators {
    flex-direction: column;
  }
  
  .milestone {
    flex: 1 1 100%;
  }
  
  /* COOKIE MODAL */
  .cookie-modal-content {
    padding: 30px 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: #FFFFFF;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

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

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

/* SMOOTH SCROLLING */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}