/* =================================================================
   InDeed Auto - Modern Gradient Design System
   Gradient Modern Style with Professional Automotive Aesthetic
   ================================================================= */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1C1C1C;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 20px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 18px; margin-bottom: 12px; }

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

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

a:hover {
  color: #8B1428;
}

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

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

li {
  margin-bottom: 8px;
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

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

.logo:hover img {
  transform: scale(1.05);
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1C1C1C;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #C41E3A 0%, #8B1428 100%);
  transition: width 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C41E3A;
  padding-left: 10px;
  background: rgba(196, 30, 58, 0.1);
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8B1428 0%, #6B0F1E 100%);
  box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, #1C1C1C 0%, #333 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #333 0%, #1C1C1C 100%);
  box-shadow: 0 6px 25px rgba(28, 28, 28, 0.4);
  transform: translateY(-2px);
}

.btn-link {
  background: transparent;
  color: #C41E3A;
  padding: 8px 16px;
  border: 2px solid #C41E3A;
  font-size: 14px;
}

.btn-link:hover {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1C1C1C 0%, #333 50%, #1C1C1C 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, transparent 100%);
  z-index: 1;
}

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

.hero h1 {
  color: white;
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.trust-indicators span {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.3) 0%, rgba(139, 20, 40, 0.3) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.phone-number {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.urgency {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: italic;
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  padding: 60px 20px 40px;
  position: relative;
  overflow: hidden;
}

.hero-internal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
}

.hero-internal .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: white;
  text-decoration: underline;
}

.hero-internal h1 {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.hero-internal p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.last-update {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

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

.value-proposition,
.services-featured,
.process,
.testimonials,
.cta-section,
.contact-info {
  padding: 60px 20px;
  margin-bottom: 0;
}

.value-proposition {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.services-featured {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.process {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.testimonials {
  background: linear-gradient(135deg, #1C1C1C 0%, #333 100%);
}

.testimonials h2 {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  text-align: center;
}

.cta-section h2,
.cta-section p,
.cta-section li {
  color: white;
}

.cta-section h2 {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.section-subheadline {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.intro-text {
  text-align: center;
  font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 32px;
}

/* STATS GRID */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(196, 30, 58, 0.1);
  min-width: 200px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
  border-color: #C41E3A;
}

.stat-card h3 {
  font-size: 48px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card p {
  color: #666;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 360px;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(196, 30, 58, 0.2);
  border-color: #C41E3A;
}

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

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

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #C41E3A;
  margin-bottom: 16px;
}

/* SERVICE DETAIL */
.service-detail {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  border-left: 5px solid #C41E3A;
}

.service-detail h3 {
  margin-bottom: 16px;
  font-size: 28px;
}

.service-detail .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #C41E3A;
  margin-bottom: 16px;
  display: block;
}

.service-detail .includes {
  background: rgba(196, 30, 58, 0.05);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #333;
}

.service-detail .duration {
  color: #666;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 16px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
  justify-content: center;
}

.step {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
  position: relative;
  border-top: 4px solid #C41E3A;
}

.step h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.step p {
  color: #666;
  margin-bottom: 0;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-badge {
  text-align: center;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: inline-block;
  margin: 20px auto 0;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  position: relative;
  border-left: 5px solid #C41E3A;
}

.testimonial-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #666;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
}

.trust-indicator {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-style: italic;
}

/* CTA SECTION ELEMENTS */
.benefits-list {
  list-style: none;
  margin: 32px auto;
  max-width: 600px;
  text-align: left;
}

.benefits-list li {
  color: white;
  padding: 12px 0 12px 40px;
  position: relative;
  font-size: 16px;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: white;
  font-weight: 700;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

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

.contact-details {
  width: 100%;
  max-width: 600px;
}

.contact-details h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 20px;
}

.contact-details h3:first-child {
  margin-top: 0;
}

.contact-details p {
  color: #666;
  margin-bottom: 8px;
}

/* ABOUT PAGE STYLES */
.milestones {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.milestone {
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(196, 30, 58, 0.1) 100%);
  border-radius: 12px;
  min-width: 150px;
}

.milestone h3 {
  font-size: 32px;
  margin-bottom: 8px;
}

.milestone p {
  color: #666;
  font-weight: 600;
  margin-bottom: 0;
}

.mission,
.values {
  margin-bottom: 60px;
}

.mission p {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  border-top: 4px solid #C41E3A;
}

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

.value-card p {
  color: #666;
  margin-bottom: 0;
}

.team-intro {
  text-align: center;
  color: #666;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.team-member {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
}

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

.team-member p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.certifications {
  text-align: center;
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.equipment-list {
  max-width: 800px;
  margin: 32px auto;
}

.equipment-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.facility-features {
  text-align: center;
  color: #666;
  font-style: italic;
  margin-top: 32px;
}

/* PREVENTIVO PAGE */
.quote-benefits {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
  border-top: 4px solid #C41E3A;
}

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

.benefit-card p {
  color: #666;
  margin-bottom: 0;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-note {
  background: rgba(196, 30, 58, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #C41E3A;
  margin-bottom: 24px;
}

.form-fields-info {
  margin: 24px 0;
}

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

.form-fields-info ul {
  list-style: none;
  margin-left: 0;
}

.form-fields-info li {
  padding: 8px 0 8px 30px;
  position: relative;
}

.form-fields-info li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

.alternative-contact {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
}

/* CONTATTI PAGE */
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.method-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
  border-top: 4px solid #C41E3A;
}

.method-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.method-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #C41E3A;
  font-size: 18px;
  margin-bottom: 8px;
}

.method-card p {
  color: #666;
  margin-bottom: 16px;
}

.method-card .note {
  font-size: 14px;
  font-style: italic;
}

.location-details {
  max-width: 800px;
  margin: 0 auto;
}

.address {
  text-align: center;
  font-size: 20px;
  margin-bottom: 32px;
}

.directions h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.hours-grid {
  max-width: 600px;
  margin: 32px auto;
}

.hours-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
  gap: 8px;
}

.hours-day .day {
  font-weight: 600;
  color: #333;
}

.hours-day .time {
  color: #C41E3A;
  font-weight: 600;
}

.note {
  text-align: center;
  color: #666;
  font-style: italic;
  font-size: 14px;
  margin-top: 16px;
}

.booking-benefits {
  max-width: 600px;
  margin: 32px auto;
  list-style: none;
}

.booking-benefits li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #333;
}

.booking-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
  font-size: 20px;
  background: rgba(196, 30, 58, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

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

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper a {
  color: #C41E3A;
  text-decoration: underline;
}

.legal-cta,
.gdpr-forms,
.cookie-preferences,
.legal-acceptance {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  text-align: center;
}

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

.form-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 280px;
  text-align: center;
  border-top: 4px solid #C41E3A;
}

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

.form-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 0;
}

.contact-info,
.preferences-info {
  margin-top: 32px;
  color: #666;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: #C41E3A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.subheadline,
.confirmation-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 16px;
}

.next-steps,
.explore-more,
.contact-reminder,
.social-proof {
  padding: 60px 20px;
}

.next-steps {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  justify-content: center;
}

.step-card,
.link-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 320px;
  text-align: center;
  border-top: 4px solid #C41E3A;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.step-card h3,
.link-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step-card p,
.link-card p {
  color: #666;
  margin-bottom: 16px;
}

.urgency-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
}

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

.contact-item {
  text-align: center;
  max-width: 300px;
}

.contact-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #C41E3A;
  font-size: 20px;
  margin-bottom: 8px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 48px;
  margin-bottom: 8px;
}

.stat p {
  color: #666;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonial-short {
  max-width: 600px;
  margin: 32px auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #C41E3A;
}

.testimonial-short p {
  color: #333;
  font-style: italic;
  margin-bottom: 8px;
}

.testimonial-short .author {
  color: #666;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
}

/* HIGHLIGHTS */
.highlights {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.highlights span {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #C41E3A;
  border: 1px solid rgba(196, 30, 58, 0.2);
}

/* TRUST ELEMENTS */
.trust-text,
.trust-elements,
.badges {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 24px;
}

.trust-list,
.guarantee-list {
  max-width: 700px;
  margin: 32px auto;
  list-style: none;
}

.trust-list li,
.guarantee-list li {
  padding: 12px 0 12px 40px;
  position: relative;
  color: #333;
}

.trust-list li::before,
.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
  font-size: 20px;
  background: rgba(196, 30, 58, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.footer-section img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

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

.footer-section h4 {
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-size: 16px;
}

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

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

.footer-nav a:hover {
  color: white;
  padding-left: 5px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #333 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-banner.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;
  min-width: 250px;
}

.cookie-text p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

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

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

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accept-all {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
}

.accept-all:hover {
  background: linear-gradient(135deg, #8B1428 0%, #6B0F1E 100%);
  transform: translateY(-2px);
}

.reject-all {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reject-all:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #C41E3A;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 150px;
}

.save-preferences {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1428 100%);
  color: white;
}

.save-preferences:hover {
  background: linear-gradient(135deg, #8B1428 0%, #6B0F1E 100%);
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  
  /* Header adjustments */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Section padding */
  .section,
  .value-proposition,
  .services-featured,
  .process,
  .testimonials,
  .cta-section,
  .contact-info,
  .next-steps,
  .explore-more,
  .contact-reminder,
  .social-proof,
  .quote-benefits,
  .legal-content,
  .legal-cta,
  .gdpr-forms,
  .cookie-preferences {
    padding: 40px 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-internal {
    padding: 40px 20px 30px;
  }
  
  /* Grid adjustments */
  .stats-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .contact-grid,
  .values-grid,
  .team-grid,
  .benefits-grid,
  .methods-grid,
  .forms-grid,
  .steps-grid,
  .links-grid {
    gap: 20px;
  }
  
  .stat-card,
  .service-card,
  .step,
  .testimonial-card,
  .value-card,
  .team-member,
  .benefit-card,
  .method-card,
  .form-card,
  .step-card,
  .link-card {
    max-width: 100%;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  /* Button adjustments */
  .hero-cta,
  .cta-buttons,
  .cookie-buttons,
  .cookie-modal-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary,
  .cookie-buttons button,
  .cookie-modal-buttons button {
    width: 100%;
    min-width: auto;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Cookie modal mobile */
  .cookie-modal-content {
    padding: 30px 20px;
    max-height: 85vh;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Form container mobile */
  .form-container {
    padding: 24px;
  }
  
  .content-wrapper {
    padding: 24px;
  }
  
  /* Stats row mobile */
  .stats-row {
    gap: 24px;
  }
  
  /* Hours grid mobile */
  .hours-day {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  /* Contact quick mobile */
  .contact-quick {
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-item {
    max-width: 100%;
  }
  
  /* Milestone adjustments */
  .milestones {
    gap: 16px;
  }
  
  .milestone {
    min-width: 120px;
  }
  
  /* Trust indicators mobile */
  .trust-indicators {
    gap: 12px;
  }
  
  .trust-indicators span {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  /* Thank you hero mobile */
  .thank-you-hero {
    padding: 60px 20px;
  }
  
  .success-icon {
    width: 60px;
    height: 60px;
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  /* Further typography adjustments */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 { font-size: 32px; }
  
  /* Stat card adjustments */
  .stat-card h3 {
    font-size: 36px;
  }
  
  .stat h3 {
    font-size: 36px;
  }
  
  /* Service price */
  .service-card .price {
    font-size: 24px;
  }
  
  .service-detail .price {
    font-size: 28px;
  }
  
  /* Phone number */
  .phone-number {
    font-size: 20px;
  }
  
  /* Mobile menu adjustments */
  .mobile-menu {
    width: 90%;
    padding: 70px 20px 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}