/* =================================================================
   AutoPorada - Vibrant & Energetic CSS Styles
   Design Style: Electric colors, dynamic layouts, bold fonts, high energy
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #E85D2A, #FF8C42);
  margin-top: 12px;
  border-radius: 10px;
}

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

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

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

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

a:hover {
  color: #1B4B8C;
  transform: translateX(3px);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #1B4B8C;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #1B4B8C 0%, #2563B8 100%);
  box-shadow: 0 4px 20px rgba(27, 75, 140, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #E85D2A;
  transition: width 0.3s ease;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1B4B8C 0%, #2563B8 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  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: transparent;
  color: #ffffff;
  border: 2px solid #E85D2A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: #E85D2A;
  padding-left: 10px;
  border-bottom-color: #E85D2A;
}

/* Hero Section - High Energy */
.hero {
  background: linear-gradient(135deg, #FF6B35 0%, #E85D2A 50%, #FF8C42 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

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

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  animation: slideInDown 0.8s ease;
}

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

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

.value-proposition {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  font-weight: 500;
}

/* CTA Buttons - Dynamic */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #1B4B8C, #2563B8);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(27, 75, 140, 0.4);
  background: linear-gradient(135deg, #2563B8, #1B4B8C);
}

.btn-secondary {
  background: #ffffff;
  color: #E85D2A;
  border: 3px solid #E85D2A;
}

.btn-secondary:hover {
  background: #E85D2A;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 93, 42, 0.4);
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Hero Internal */
.hero-internal {
  background: linear-gradient(135deg, #1B4B8C 0%, #2563B8 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumbs {
  margin-bottom: 16px;
  font-size: 14px;
}

.breadcrumbs a {
  color: #ffffff;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-internal .hero-subheadline {
  color: #ffffff;
  font-size: 18px;
  opacity: 0.95;
}

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

.section-subheadline {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  text-align: center;
  font-weight: 600;
}

/* Services Grid - Flexbox */
.services-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 42, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  border-color: #E85D2A;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(232, 93, 42, 0.3);
}

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

.price {
  font-size: 32px;
  font-weight: 800;
  color: #E85D2A;
  margin: 16px 0;
}

.duration {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  font-weight: 600;
}

.features {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.features li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #333;
}

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

/* Benefits Grid */
.benefits-grid, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card, .value-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  border-left: 5px solid #E85D2A;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover, .value-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(232, 93, 42, 0.2);
  border-left-width: 8px;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #FF6B35 0%, #E85D2A 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  color: #ffffff;
  text-align: center;
}

.testimonials h2::after {
  background: #ffffff;
  margin-left: auto;
  margin-right: auto;
}

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

.testimonial-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  color: #E85D2A;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #1B4B8C;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #1B4B8C 0%, #2563B8 100%);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner h2::after {
  background: #E85D2A;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #E85D2A;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(232, 93, 42, 0.3);
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #1B4B8C;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: 600;
  margin-bottom: 0;
}

/* Categories */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  background: linear-gradient(135deg, #FF6B35 0%, #E85D2A 100%);
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(232, 93, 42, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 10px 35px rgba(232, 93, 42, 0.5);
}

.category-card h3 {
  color: #ffffff;
  margin-bottom: 12px;
}

.category-card p {
  color: #ffffff;
  opacity: 0.95;
}

.topics-count {
  font-weight: 700;
  font-size: 18px;
  margin-top: 12px;
  color: #ffffff;
}

/* Packages */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.package-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  flex: 1 1 400px;
  max-width: 500px;
  border: 3px solid #E85D2A;
  box-shadow: 0 8px 30px rgba(232, 93, 42, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(232, 93, 42, 0.4);
}

.package-card h3 {
  color: #1B4B8C;
  font-size: 28px;
  margin-bottom: 16px;
}

.price-regular {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.price-promo {
  font-size: 48px;
  font-weight: 800;
  color: #E85D2A;
  margin-bottom: 16px;
}

.savings {
  font-size: 16px;
  font-weight: 700;
  color: #2ecc71;
  background: rgba(46, 204, 113, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  display: inline-block;
}

/* Blog/Articles */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.article-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #E85D2A;
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(27, 75, 140, 0.2);
}

.article-card.featured {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #1B4B8C 0%, #2563B8 100%);
  color: #ffffff;
  border-top: none;
  border-left: 5px solid #E85D2A;
}

.article-card.featured h2,
.article-card.featured h3 {
  color: #ffffff;
}

.excerpt {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.article-card.featured .excerpt {
  color: #ffffff;
  opacity: 0.95;
}

.meta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: #999;
  margin-top: 16px;
}

.article-card.featured .meta {
  color: rgba(255, 255, 255, 0.8);
}

.category {
  background: #E85D2A;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 15px;
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  border-top: 4px solid #E85D2A;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(232, 93, 42, 0.2);
}

.contact-card h3 {
  color: #1B4B8C;
  margin-bottom: 16px;
  font-size: 20px;
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: #E85D2A;
  margin-bottom: 8px;
}

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

.form-info {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid #E85D2A;
}

.form-info p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

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

/* Thank You Page */
.thank-you {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #ffffff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.3);
  animation: scaleIn 0.5s ease;
}

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

.message {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.next-steps {
  text-align: left;
  margin: 24px 0;
  background: #f8f9fa;
  padding: 24px;
  border-radius: 10px;
  border-left: 4px solid #E85D2A;
}

/* Alternative Actions */
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #1B4B8C;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(27, 75, 140, 0.2);
}

/* Lists */
.tips-list, .advice-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.tips-list li, .advice-list li {
  background: #ffffff;
  padding: 20px 20px 20px 60px;
  margin-bottom: 16px;
  border-radius: 10px;
  border-left: 5px solid #E85D2A;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.tips-list li:hover, .advice-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(232, 93, 42, 0.2);
}

.tips-list li::before, .advice-list li::before {
  content: '⚡';
  position: absolute;
  left: 20px;
  font-size: 24px;
}

.popular-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.popular-list li {
  margin-bottom: 12px;
}

.popular-list a {
  display: block;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 8px;
  border-left: 4px solid #1B4B8C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popular-list a:hover {
  background: #f8f9fa;
  border-left-width: 8px;
  padding-left: 24px;
  box-shadow: 0 4px 15px rgba(27, 75, 140, 0.15);
}

/* Categories List */
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-link {
  background: linear-gradient(135deg, #E85D2A, #FF8C42);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(232, 93, 42, 0.3);
}

.category-link:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(232, 93, 42, 0.5);
  background: linear-gradient(135deg, #FF8C42, #E85D2A);
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  line-height: 1.8;
}

.text-section h2 {
  color: #1B4B8C;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section h2:first-child {
  margin-top: 0;
}

.last-updated, .intro {
  font-style: italic;
  color: #666;
  margin-bottom: 24px;
  padding: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #E85D2A;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 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-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  color: #E85D2A;
  margin-bottom: 16px;
  font-size: 24px;
}

.footer-column h3::after {
  display: none;
}

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

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #E85D2A;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  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 */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4B8C 0%, #2563B8 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: #E85D2A;
  color: #ffffff;
}

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

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

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

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-settings:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

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

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

.modal-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: #E85D2A;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #E85D2A;
}

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

.category-header h4 {
  color: #1B4B8C;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

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

input:checked + .slider {
  background: #E85D2A;
}

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

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

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

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .value-proposition {
    font-size: 16px;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
  
  /* Trust badges stack */
  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Cards full width */
  .service-card,
  .benefit-card,
  .value-card,
  .testimonial-card,
  .category-card,
  .contact-card,
  .article-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Stats cards adjust */
  .stat-card {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  /* Footer stack */
  .footer-content {
    flex-direction: column;
  }
  
  /* Cookie consent stack */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form adjustments */
  .form-info {
    padding: 24px;
  }
  
  /* Section spacing */
  .section, section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 24px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .price {
    font-size: 28px;
  }
  
  .price-promo {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 40px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-buttons {
    display: none !important;
  }
  
  body {
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Accessibility Improvements */
.btn:focus,
a:focus,
button:focus {
  outline: 3px solid #E85D2A;
  outline-offset: 2px;
}

/* High contrast adjustments */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .service-card,
  .benefit-card,
  .testimonial-card {
    border: 2px solid #1B4B8C;
  }
}

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

/* Loading animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading {
  animation: pulse 2s ease-in-out infinite;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.hidden {
  display: none;
}

/* Ensure proper spacing between all elements */
.service-card,
.benefit-card,
.value-card,
.testimonial-card,
.category-card,
.stat-card,
.package-card,
.article-card,
.contact-card,
.action-card {
  margin-bottom: 24px;
}

/* Content alignment */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-content,
.image-content {
  flex: 1 1 300px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* Hours List */
.hours-list {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  margin: 0 auto;
}

.hours-list p {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

/* Location Info */
.location-info {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #E85D2A;
}

.location-info p {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* Ensure no overlapping elements */
body > * {
  position: relative;
  z-index: 1;
}

header {
  z-index: 1000;
}

.mobile-menu {
  z-index: 1999;
}

.mobile-menu-toggle {
  z-index: 2000;
}

.cookie-consent {
  z-index: 1998;
}

.cookie-modal {
  z-index: 2001;
}