/* ===================================
   ONIX Motors - Playful Dynamic CSS
   Design Style: Bright, Animated, Fun
   =================================== */

/* 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: #1a1a1a;
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ee 100%);
  overflow-x: hidden;
}

/* ANIMATED BACKGROUND ELEMENTS */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
  animation: rotateBackground 30s linear infinite;
  z-index: -1;
}

@keyframes rotateBackground {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* TYPOGRAPHY - FUN & PLAYFUL */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 16px;
}


@keyframes textShine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

h2 {
  font-size: 36px;
  color: #e63946;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

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

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

h3 {
  font-size: 24px;
  color: #1a1a1a;
  font-weight: 700;
}

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

a {
  text-decoration: none;
  color: #e63946;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

/* HEADER - ENERGETIC */
header {
  background: linear-gradient(135deg, #ffffff 0%, #ffeef1 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #ff006e;
  animation: slideDown 0.5s ease-out;
}

@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;
  width: auto;
  transition: transform 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(230, 57, 70, 0.2));
}

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

@keyframes bounce {
  0%, 100% { transform: scale(1.1) rotate(5deg) translateY(0); }
  50% { transform: scale(1.1) rotate(5deg) translateY(-10px); }
}

/* MAIN NAVIGATION - PLAYFUL */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff006e, #ffbe0b);
  transition: left 0.3s ease;
  z-index: -1;
  border-radius: 20px;
}

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

.main-nav a:hover::before {
  left: 0;
}

/* MOBILE MENU TOGGLE - FUN BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4); }
  50% { transform: scale(1.1); box-shadow: 0 6px 25px rgba(230, 57, 70, 0.6); }
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #ff006e, #ffbe0b);
}

.mobile-menu-toggle:active {
  transform: scale(0.9);
}

/* MOBILE MENU - VIBRANT OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #fff0f3 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #ff006e, #ffbe0b);
}

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

.mobile-nav a {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  padding: 16px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  animation: slideInRight 0.5s ease-out backwards;
}

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

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.5s; }

.mobile-nav a:hover {
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  transform: translateX(10px) scale(1.05);
  border-left-color: #ffbe0b;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

/* HERO SECTION - DYNAMIC & ENERGETIC */
.hero {
  background: linear-gradient(135deg, #e63946 0%, #ff006e 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: moveStripes 20s linear infinite;
}

@keyframes moveStripes {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  animation: bounceIn 1s ease-out;
}

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

.hero-subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: #e63946;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

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

/* BUTTONS - PLAYFUL & VIBRANT */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.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;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #ffbe0b, #ff006e);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
  background: white;
  color: #e63946;
  border: 3px solid #e63946;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  border-color: transparent;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
}

.btn-link {
  color: #e63946;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-link:hover {
  border-bottom-color: #ff006e;
  color: #ff006e;
  transform: translateX(5px);
}

/* SECTIONS - VIBRANT SPACING */
section {
  padding: 80px 20px;
  position: relative;
  margin-bottom: 0;
}

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

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* FEATURE CARDS - PLAYFUL GRID */
.features {
  background: linear-gradient(135deg, #fff0f3 0%, #ffe8ee 100%);
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #ff006e, #ffbe0b, #e63946);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
  border-color: #ff006e;
}

.feature-card:hover::before {
  opacity: 0.1;
}

.feature-card h3 {
  color: #e63946;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: #555;
  position: relative;
  z-index: 1;
}

/* SERVICE CARDS - DYNAMIC LAYOUT */
.services-overview {
  background: white;
}

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

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.service-card {
  flex: 1 1 320px;
  max-width: 370px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 36px 28px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  transition: all 0.3s ease;
  border-left: 5px solid #ffbe0b;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.1), transparent);
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.25);
  border-left-color: #ff006e;
}

.service-card:hover::after {
  top: -20%;
  right: -20%;
}

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

.service-card p {
  color: #333;
  margin-bottom: 12px;
  line-height: 1.6;
}

.service-card .price {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ff006e;
  margin: 20px 0;
  display: block;
}

/* PROCESS TIMELINE - FUN ANIMATION */
.process {
  background: linear-gradient(135deg, #ffe8ee 0%, #fff5f7 100%);
}

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

.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  position: relative;
}

.step {
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  position: relative;
  animation: popIn 0.6s ease-out backwards;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.3s; }
.step:nth-child(3) { animation-delay: 0.5s; }
.step:nth-child(4) { animation-delay: 0.7s; }

@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #ffbe0b;
  top: -6px;
  left: -6px;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.step:hover .step-number {
  transform: rotate(360deg) scale(1.1);
  background: linear-gradient(135deg, #ff006e, #ffbe0b);
}

.step h3 {
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #555;
  font-size: 15px;
}

/* TESTIMONIALS - VIBRANT CARDS */
.testimonials {
  background: white;
  padding: 80px 20px;
}

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

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(230, 57, 70, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-color: #ff006e;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-card .author {
  color: #e63946;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #ffbe0b;
  font-size: 20px;
  letter-spacing: 4px;
}

/* CTA BANNER - HIGH ENERGY */
.cta-banner {
  background: linear-gradient(135deg, #e63946 0%, #ff006e 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 40px;
}

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

.cta-content p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

/* LOCATION & HOURS */
.location-hours {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

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

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

.location-info {
  flex: 1 1 400px;
  max-width: 600px;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.location-info h3 {
  color: #e63946;
  margin-bottom: 16px;
  margin-top: 24px;
}

.location-info h3:first-child {
  margin-top: 0;
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f1f3f5;
  display: flex;
  justify-content: space-between;
  color: #333;
}

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

/* PAGE HERO - BREADCRUMB */
.page-hero {
  background: linear-gradient(135deg, #e63946, #ff006e);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.05) 20px,
    rgba(255, 255, 255, 0.05) 40px
  );
  animation: moveStripes 30s linear infinite;
}

.breadcrumb {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #ffbe0b;
  transform: none;
}

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero .hero-subtitle {
  position: relative;
  z-index: 1;
}

/* SERVICE DETAIL CARDS */
.services-detail {
  background: white;
}

.service-detail-card {
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  transition: all 0.3s ease;
  border-left: 5px solid #ffbe0b;
}

.service-detail-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
  border-left-color: #ff006e;
}

.service-detail-card h2 {
  color: #e63946;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail-card .price {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ff006e;
  display: block;
  margin: 20px 0;
}

/* EXPERTISE & QUALITY GRIDS */
.expertise {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

.expertise h2,
.quality-assurance h2 {
  text-align: center;
  margin-bottom: 24px;
}

.expertise p,
.quality-assurance p {
  text-align: center;
  margin-bottom: 48px;
  color: #555;
}

.expertise-grid,
.quality-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.expertise-card,
.quality-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #ffbe0b;
}

.expertise-card:hover,
.quality-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

.expertise-card h3,
.quality-card h3 {
  color: #e63946;
  margin-bottom: 12px;
  font-size: 20px;
}

.expertise-card p,
.quality-card p {
  color: #555;
  font-size: 15px;
  margin-bottom: 0;
}

/* VALUES & STATS */
.values {
  background: white;
}

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

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

.value-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-color: #ff006e;
}

.value-card h3 {
  color: #e63946;
  margin-bottom: 16px;
  font-size: 24px;
}

.statistics {
  background: linear-gradient(135deg, #e63946, #ff006e);
  padding: 80px 20px;
}

.statistics h2 {
  text-align: center;
  color: white;
  margin-bottom: 64px;
}

.statistics h2::after {
  background: white;
}

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

.stat-card {
  flex: 1 1 220px;
  max-width: 260px;
  background: rgba(255, 255, 255, 0.95);
  padding: 48px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 12px;
  display: block;
  background: linear-gradient(135deg, #e63946, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TEAM SECTION */
.team {
  background: white;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team .section-subtitle {
  margin-bottom: 48px;
}

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

.team-member {
  flex: 1 1 300px;
  max-width: 360px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #ffbe0b;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

.team-member h3 {
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 22px;
}

.team-member .position {
  color: #e63946;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.team-member p {
  color: #555;
  font-size: 15px;
}

.team-additional {
  text-align: center;
  color: #555;
  font-size: 16px;
  font-style: italic;
}

/* CERTIFICATIONS */
.certifications {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

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

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

.cert-item {
  flex: 1 1 220px;
  max-width: 260px;
  background: white;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  text-align: center;
  border: 3px solid #ffbe0b;
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
  border-color: #ff006e;
}

.cert-item p {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}

.cert-note {
  text-align: center;
  color: #555;
  font-size: 14px;
  font-style: italic;
}

/* PRICING TABLES */
.pricing-intro {
  background: white;
}

.pricing-intro h2 {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-intro p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.highlight-box {
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border-left: 5px solid #e63946;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  margin: 40px auto;
  max-width: 600px;
}

.highlight-box p {
  margin: 0;
  font-size: 18px;
  color: #1a1a1a;
}

.highlight-box .note {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-top: 8px;
}

.pricing-table {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

.price-table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
}

.price-table thead {
  background: linear-gradient(135deg, #e63946, #ff006e);
}

.price-table thead th {
  color: white;
  padding: 20px 16px;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-table tbody tr {
  border-bottom: 1px solid #f1f3f5;
  transition: all 0.3s ease;
}

.price-table tbody tr:hover {
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  transform: translateX(5px);
}

.price-table tbody td {
  padding: 20px 16px;
  color: #333;
}

.price-table tbody td:first-child {
  font-weight: 700;
  color: #1a1a1a;
}

.price-table tbody td:last-child {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #e63946;
}

.table-footer {
  text-align: center;
  margin-top: 24px;
  color: #555;
  font-size: 14px;
  font-style: italic;
}

/* PRICING PACKAGES */
.pricing-packages {
  background: white;
}

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

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.package-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.package-card.popular {
  border-color: #ff006e;
  transform: scale(1.05);
}

.package-card.popular .badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #ff006e, #ffbe0b);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.package-card:hover {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.3);
  border-color: #ff006e;
}

.package-card h3 {
  color: #1a1a1a;
  margin-bottom: 20px;
  font-size: 24px;
}

.package-price {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 24px;
  display: block;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.package-features li {
  padding: 12px 0;
  color: #333;
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
  position: relative;
  padding-left: 24px;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff006e;
  font-weight: 700;
  font-size: 18px;
}

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

/* CONTACT FORMS */
.contact-methods {
  background: white;
}

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

.contact-method,
.contact-option {
  flex: 1 1 300px;
  max-width: 400px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #ffbe0b;
}

.contact-method:hover,
.contact-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

.contact-method h3,
.contact-option h3 {
  color: #e63946;
  margin-bottom: 16px;
  font-size: 24px;
}

.contact-method p,
.contact-option p {
  color: #333;
  margin-bottom: 12px;
}

.contact-form-section {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

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

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

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  border-left: 5px solid #e63946;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #333;
  line-height: 2;
}

.form-placeholder .note {
  font-size: 14px;
  color: #555;
  font-style: italic;
  margin-top: 24px;
}

.opening-hours {
  background: white;
}

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

.hours-table {
  max-width: 600px;
  margin: 0 auto 24px;
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
}

.hours-table tr {
  border-bottom: 1px solid #f1f3f5;
}

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

.hours-table td {
  padding: 16px 24px;
  color: #333;
}

.hours-table td:first-child {
  font-weight: 700;
  color: #1a1a1a;
  width: 40%;
}

.hours-table td:last-child {
  text-align: right;
  color: #e63946;
  font-weight: 600;
}

.opening-hours .note {
  text-align: center;
  color: #555;
  font-size: 14px;
  font-style: italic;
}

/* MAP & LOCATION */
.map-location {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

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

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

.location-grid .location-info {
  flex: 1 1 400px;
  max-width: 500px;
}

.location-grid .location-info h3 {
  color: #e63946;
  margin-bottom: 12px;
  margin-top: 24px;
}

.location-grid .location-info h3:first-child {
  margin-top: 0;
}

.location-grid .location-info h4 {
  color: #1a1a1a;
  margin: 20px 0 12px;
  font-size: 18px;
}

.map-placeholder {
  flex: 1 1 400px;
  max-width: 600px;
  background: white;
  padding: 200px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  border: 3px dashed #e63946;
}

.map-placeholder p {
  color: #e63946;
  font-size: 18px;
  font-weight: 700;
}

/* SERVICE AREA */
.service-area {
  background: white;
}

.service-area h2 {
  text-align: center;
  margin-bottom: 24px;
}

.service-area > p {
  text-align: center;
  color: #555;
  margin-bottom: 32px;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.area-list li {
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 12px 24px;
  border-radius: 20px;
  color: #1a1a1a;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.area-list li:hover {
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
  border-color: #ffbe0b;
}

.service-area .note {
  text-align: center;
  color: #555;
  font-size: 14px;
  font-style: italic;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #e63946, #ff006e);
  padding: 60px 20px;
  text-align: center;
}

.legal-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.legal-date {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-style: italic;
}

.legal-content {
  background: white;
  padding: 80px 20px;
}

.legal-content h2 {
  color: #e63946;
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
}

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

.legal-content h3 {
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content p {
  color: #333;
  margin-bottom: 16px;
  line-height: 1.8;
}

.contact-box {
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 32px;
  border-radius: 16px;
  margin: 40px 0;
  border-left: 5px solid #e63946;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
}

.contact-box h3 {
  color: #e63946;
  margin-top: 0;
  margin-bottom: 16px;
}

.cookie-table {
  width: 100%;
  max-width: 900px;
  margin: 32px auto;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
}

.cookie-table thead {
  background: linear-gradient(135deg, #e63946, #ff006e);
}

.cookie-table thead th {
  color: white;
  padding: 16px 12px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-table tbody td {
  padding: 16px 12px;
  color: #333;
  border-bottom: 1px solid #f1f3f5;
}

.cookie-table tbody tr:last-child td {
  border-bottom: none;
}

/* 404 ERROR PAGE */
.error-hero {
  background: linear-gradient(135deg, #e63946, #ff006e);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-hero::before {
  content: '';
  position: absolute;
  width: 300%;
  height: 300%;
  top: -100%;
  left: -100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.03) 30px,
    rgba(255, 255, 255, 0.03) 60px
  );
  animation: moveStripes 40s linear infinite;
}

.error-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.error-code {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  animation: glitch 2s ease-in-out infinite;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-5px, 5px); }
  40% { transform: translate(-5px, -5px); }
  60% { transform: translate(5px, 5px); }
  80% { transform: translate(5px, -5px); }
}

.error-hero h1 {
  color: white;
  margin-bottom: 24px;
}

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

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.popular-pages {
  background: white;
}

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

.page-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.page-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #ffbe0b;
}

.page-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 35px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

.page-card h3 {
  color: #e63946;
  margin-bottom: 12px;
  font-size: 20px;
}

.page-card p {
  color: #555;
  margin-bottom: 20px;
  font-size: 15px;
}

.help-box {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

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

.help-content h2 {
  margin-bottom: 24px;
}

.help-content .contact-info {
  background: white;
  padding: 32px;
  border-radius: 16px;
  margin-top: 32px;
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.12);
  border-left: 5px solid #e63946;
}

.help-content .contact-info p {
  color: #333;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #e63946, #ff006e);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0,
    rgba(255, 255, 255, 0.05) 10px,
    transparent 20px
  );
  animation: rotateBackground 30s linear infinite;
}

.thank-you-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #e63946;
  margin: 0 auto 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  from {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

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

.thank-you-hero .subtitle {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: white;
  margin-bottom: 32px;
  font-size: 16px;
}

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

.next-steps {
  background: white;
}

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

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

.step-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #ffbe0b;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

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

.step-card p {
  color: #555;
  font-size: 15px;
}

.contact-info-box {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

.info-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 48px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  border-left: 5px solid #e63946;
}

.info-content h2 {
  margin-bottom: 24px;
}

.info-content p {
  color: #333;
  margin-bottom: 12px;
}

.useful-links {
  background: white;
}

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

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #ffbe0b;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

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

.link-card p {
  color: #555;
  margin-bottom: 24px;
  font-size: 15px;
}

.contact-alternatives {
  background: linear-gradient(135deg, #fff0f3, #ffe8ee);
}

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

/* PROMISE CARDS */
.price-promise {
  background: white;
}

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

.promise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.promise-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(230, 57, 70, 0.15);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid #ffbe0b;
}

.promise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(230, 57, 70, 0.25);
  border-top-color: #ff006e;
}

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

.promise-card p {
  color: #555;
  font-size: 15px;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, #e63946, #ff006e);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 25px,
    rgba(255, 255, 255, 0.04) 25px,
    rgba(255, 255, 255, 0.04) 50px
  );
  animation: moveStripes 25s linear infinite;
}

.cta-section .cta-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 24px;
  font-size: 36px;
}

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

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

/* FOOTER - VIBRANT */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 60px 20px 20px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #e63946, #ff006e, #ffbe0b, #e63946);
  background-size: 200% 100%;
  animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

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

.footer-col h3 {
  color: #ff006e;
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

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

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

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

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

/* COOKIE CONSENT BANNER - PLAYFUL */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  padding: 24px 20px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #ff006e;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #e63946, #ff006e);
  color: white;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.cookie-btn-accept:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

.cookie-btn-settings {
  background: transparent;
  color: #ffbe0b;
  border: 2px solid #ffbe0b;
}

.cookie-btn-settings:hover {
  background: #ffbe0b;
  color: #1a1a1a;
  transform: translateY(-3px);
}

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

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

.cookie-modal-content {
  background: white;
  max-width: 600px;
  width: 100%;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 5px solid #e63946;
}

@keyframes modalSlideIn {
  from {
    transform: scale(0.8) translateY(-50px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.cookie-modal-content h2 {
  color: #e63946;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: linear-gradient(135deg, #fff5f7, #ffe8ee);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #ffbe0b;
}

.cookie-category h3 {
  color: #1a1a1a;
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #e63946, #ff006e);
}

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

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

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .container { padding: 0 16px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop nav */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu */
  .mobile-menu {
    display: block;
  }
  
  /* Adjust hero */
  .hero {
    padding: 60px 16px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Sections */
  section {
    padding: 60px 16px;
  }
  
  /* Feature grid */
  .feature-grid,
  .service-grid,
  .step-timeline,
  .values-grid,
  .stats-grid,
  .team-grid,
  .expertise-grid,
  .quality-grid {
    gap: 24px;
  }
  
  .feature-card,
  .service-card,
  .value-card,
  .stat-card,
  .team-member,
  .expertise-card,
  .quality-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Step timeline */
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  /* CTA buttons */
  .cta-buttons,
  .error-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Tables */
  .price-table {
    font-size: 14px;
  }
  
  .price-table thead th,
  .price-table tbody td {
    padding: 12px 8px;
  }
  
  /* Error page */
  .error-code {
    font-size: 80px;
  }
  
  /* Package cards */
  .package-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .package-card.popular {
    transform: scale(1);
  }
  
  /* Contact grid */
  .contact-grid,
  .location-grid {
    flex-direction: column;
  }
  
  /* Form placeholder */
  .form-placeholder {
    padding: 32px 24px;
  }
  
  /* Map placeholder */
  .map-placeholder {
    padding: 100px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .error-code { font-size: 60px; }
  .stat-number { font-size: 40px; }
  .package-price { font-size: 36px; }
  
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* SMOOTH ANIMATIONS */
* {
  -webkit-tap-highlight-color: transparent;
}

/* ACCESSIBILITY */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #ffbe0b;
  outline-offset: 3px;
}

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