/* ===================================
   VINTAGE RETRO CSS - WaschFix Bregenz
   Design Style: Vintage and retro-inspired
   =================================== */

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

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

body {
  font-family: 'Courier New', Courier, monospace;
  line-height: 1.6;
  color: #2C3E50;
  background: #F5E6D3;
  overflow-x: hidden;
}

/* VINTAGE RETRO TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1E5A8E;
  margin-bottom: 16px;
  text-shadow: 2px 2px 0px rgba(230, 126, 34, 0.15);
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  border-bottom: 3px solid #E67E22;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: #C85A00;
}

h4 {
  font-size: 20px;
}

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

a {
  color: #1E5A8E;
  text-decoration: underline;
  text-decoration-color: #E67E22;
  text-decoration-thickness: 2px;
  transition: all 0.3s ease;
}

a:hover {
  color: #C85A00;
  text-decoration-color: #C85A00;
}

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

li {
  margin-bottom: 8px;
}

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

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

/* VINTAGE RETRO COLORS & PATTERNS */
.vintage-pattern {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(230, 126, 34, 0.05) 10px, rgba(230, 126, 34, 0.05) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(30, 90, 142, 0.05) 10px, rgba(30, 90, 142, 0.05) 20px);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1E5A8E 0%, #2C3E50 100%);
  padding: 16px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 4px solid #E67E22;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.tagline {
  font-family: 'Georgia', serif;
  font-size: 12px;
  color: #F5E6D3;
  font-style: italic;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.main-nav a {
  color: #F5E6D3;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background: rgba(230, 126, 34, 0.2);
  border-color: #E67E22;
  color: #FFD700;
}

.header-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.phone {
  color: #FFD700;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #E67E22;
  color: #FFFFFF;
  border: 3px solid #2C3E50;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C85A00;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1E5A8E;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 4px solid #E67E22;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E67E22;
  color: #FFFFFF;
  border: 3px solid #2C3E50;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F5E6D3;
  text-decoration: none;
  font-family: 'Georgia', serif;
  font-size: 20px;
  padding: 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.mobile-nav a:hover {
  border-left-color: #E67E22;
  background: rgba(230, 126, 34, 0.3);
  padding-left: 24px;
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta .btn-primary {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* BUTTONS - VINTAGE RETRO STYLE */
.btn-primary {
  background: #E67E22;
  color: #FFFFFF;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 3px solid #2C3E50;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover {
  background: #C85A00;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: #1E5A8E;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 3px solid #1E5A8E;
  box-shadow: 5px 5px 0px rgba(30, 90, 142, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: #1E5A8E;
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(30, 90, 142, 0.3);
  text-decoration: none;
}

.btn-emergency,
.btn-emergency-large {
  background: #D32F2F;
  color: #FFFFFF;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 3px solid #8B0000;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-emergency:hover,
.btn-emergency-large:hover {
  background: #B71C1C;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.btn-link {
  color: #1E5A8E;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #C85A00;
  text-decoration-color: #C85A00;
}

/* HERO SECTION - VINTAGE RETRO */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1E5A8E 100%);
  color: #F5E6D3;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #E67E22;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(230, 126, 34, 0.1) 50px, rgba(230, 126, 34, 0.1) 100px);
  pointer-events: none;
}

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

.hero h1 {
  color: #FFD700;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(230, 126, 34, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #F5E6D3;
  font-family: 'Georgia', serif;
  font-style: italic;
}

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

.trust-badges span {
  background: rgba(230, 126, 34, 0.2);
  padding: 12px 24px;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  border: 2px solid #E67E22;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

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

/* EMERGENCY BANNER */
.emergency-banner {
  background: #D32F2F;
  color: #FFFFFF;
  padding: 20px;
  border-top: 4px solid #8B0000;
  border-bottom: 4px solid #8B0000;
}

.emergency-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.emergency-icon {
  font-size: 32px;
  animation: pulse 2s infinite;
}

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

/* SECTIONS */
.services-overview,
.services-detailed,
.why-choose-us,
.brands-supported,
.testimonials,
.company-story,
.mission-values,
.expertise {
  padding: 60px 20px;
  background: #F5E6D3;
}

.section-subtitle,
.section-intro {
  text-align: center;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #2C3E50;
  font-family: 'Georgia', serif;
  font-style: italic;
}

/* CARDS - VINTAGE RETRO STYLE */
.services-grid,
.features-grid,
.problems-grid,
.values-grid,
.expertise-grid,
.reasons-grid,
.benefits-grid,
.brands-grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.feature,
.problem,
.value,
.expertise-item,
.reason,
.benefit,
.brand-card-simple {
  flex: 1 1 300px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 8px;
  border: 4px solid #2C3E50;
  box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.feature::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(230, 126, 34, 0.1) 10px,
    rgba(230, 126, 34, 0.1) 20px
  );
  border-radius: 8px;
  z-index: -1;
}

.service-card:hover,
.feature:hover,
.problem:hover,
.value:hover,
.expertise-item:hover,
.reason:hover,
.benefit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px rgba(44, 62, 80, 0.3);
  border-color: #E67E22;
}

.service-card h3,
.feature h3,
.problem h3,
.value h3,
.expertise-item h3,
.reason h3,
.benefit h3 {
  color: #1E5A8E;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
}

.price {
  display: block;
  font-size: 24px;
  color: #C85A00;
  font-weight: 700;
  margin: 16px 0;
  font-family: 'Georgia', serif;
}

/* BRANDS SECTION */
.brands-grid,
.brands-grid-large {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.brand-name {
  background: #FFFFFF;
  padding: 16px 32px;
  border: 3px solid #2C3E50;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 18px;
  color: #1E5A8E;
  box-shadow: 4px 4px 0px rgba(44, 62, 80, 0.3);
  transition: all 0.3s ease;
}

.brand-name:hover {
  background: #FFD700;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
}

/* TESTIMONIALS - VINTAGE RETRO */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 400px;
  background: #FFFEF7;
  padding: 28px;
  border-radius: 8px;
  border: 4px solid #2C3E50;
  box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-card p {
  color: #2C3E50;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #1E5A8E;
  font-weight: 700;
  font-family: 'Georgia', serif;
  display: block;
  text-align: right;
}

.rating {
  text-align: center;
  margin-top: 32px;
}

.stars {
  color: #FFD700;
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(230, 126, 34, 0.3);
}

/* CTA SECTIONS */
.cta-final,
.cta-services,
.cta-about,
.cta-brands,
.cta-contact {
  background: linear-gradient(135deg, #E67E22 0%, #C85A00 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  border-top: 8px solid #2C3E50;
  border-bottom: 8px solid #2C3E50;
}

.cta-final h2,
.cta-services h2,
.cta-about h2,
.cta-brands h2,
.cta-contact h2 {
  color: #FFFFFF;
  border-bottom: 3px solid #FFFFFF;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

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

.trust-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.trust-elements span {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: 2px solid #FFFFFF;
  font-family: 'Georgia', serif;
}

/* PAGE HERO */
.page-hero,
.page-hero-simple {
  background: linear-gradient(135deg, #1E5A8E 0%, #2C3E50 100%);
  color: #F5E6D3;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #E67E22;
}

.page-hero h1,
.page-hero-simple h1 {
  color: #FFD700;
  text-shadow: 3px 3px 0px rgba(230, 126, 34, 0.5);
}

.breadcrumb {
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
}

.breadcrumb a {
  color: #F5E6D3;
  text-decoration: none;
}

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

/* EMERGENCY SECTIONS */
.emergency-hero {
  background: linear-gradient(135deg, #D32F2F 0%, #8B0000 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #FFD700;
}

.urgent-badge {
  background: #FFD700;
  color: #8B0000;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 24px;
  border: 3px solid #8B0000;
  font-family: 'Georgia', serif;
  font-size: 18px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
}

.emergency-contact-large {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.emergency-phone-large {
  font-size: 42px;
  font-weight: 700;
  color: #FFD700;
  font-family: 'Georgia', serif;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.5);
}

/* STEPS & PROCESSES */
.response-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.step {
  flex: 1 1 250px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border: 3px solid #2C3E50;
  box-shadow: 5px 5px 0px rgba(44, 62, 80, 0.3);
  text-align: center;
  margin-bottom: 20px;
}

.step-number {
  display: block;
  width: 60px;
  height: 60px;
  background: #E67E22;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  margin: 0 auto 16px;
  border: 4px solid #2C3E50;
  box-shadow: 4px 4px 0px rgba(44, 62, 80, 0.3);
  font-family: 'Georgia', serif;
}

/* CONTACT FORMS */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 4px solid #2C3E50;
  box-shadow: 8px 8px 0px rgba(44, 62, 80, 0.3);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #2C3E50;
  font-family: 'Georgia', serif;
}

.input-placeholder,
.textarea-placeholder,
.select-placeholder {
  width: 100%;
  padding: 14px;
  border: 3px solid #2C3E50;
  border-radius: 6px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background: #F5E6D3;
  color: #666;
  min-height: 48px;
}

.textarea-placeholder {
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-actions {
  margin-top: 32px;
  text-align: center;
}

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

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

.footer-column {
  flex: 1 1 220px;
}

.footer-column h4 {
  color: #FFD700;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  border-bottom: 2px solid #E67E22;
  padding-bottom: 8px;
}

.footer-column a {
  display: block;
  color: #F5E6D3;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
}

.footer-column a:hover {
  color: #FFD700;
  border-left-color: #E67E22;
  padding-left: 10px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(230, 126, 34, 0.3);
  color: #F5E6D3;
  font-family: 'Georgia', serif;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3E50;
  color: #F5E6D3;
  padding: 24px;
  z-index: 999;
  border-top: 4px solid #E67E22;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
}

.cookie-consent-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 400px;
  font-family: 'Georgia', serif;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: 3px solid #E67E22;
  border-radius: 6px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
  font-size: 14px;
}

.btn-accept-all {
  background: #E67E22;
  color: #FFFFFF;
}

.btn-reject-all {
  background: transparent;
  color: #F5E6D3;
}

.btn-cookie-settings {
  background: transparent;
  color: #F5E6D3;
}

.cookie-buttons button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.3);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  border: 4px solid #2C3E50;
  box-shadow: 8px 8px 0px rgba(44, 62, 80, 0.5);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #F5E6D3;
  border-radius: 6px;
  border: 2px solid #2C3E50;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #FFD700;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  color: #27AE60;
  border-radius: 50%;
  font-size: 60px;
  line-height: 100px;
  margin: 0 auto 24px;
  border: 6px solid #FFD700;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
  background: #F5E6D3;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  border: 4px solid #2C3E50;
  box-shadow: 6px 6px 0px rgba(44, 62, 80, 0.3);
}

.content-wrapper h2 {
  color: #1E5A8E;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: #C85A00;
  margin-top: 24px;
  margin-bottom: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .services-grid,
  .features-grid,
  .problems-grid,
  .values-grid,
  .expertise-grid,
  .reasons-grid,
  .benefits-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .problem,
  .value,
  .expertise-item,
  .reason,
  .benefit {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .emergency-phone-large {
    font-size: 32px;
  }
  
  .form-container {
    padding: 24px;
  }
  
  .content-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .emergency-phone-large {
    font-size: 28px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

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

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

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

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

button:focus,
a:focus {
  outline: 3px solid #FFD700;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
}