/* =================================
   SERENE CRAFTERS - VINTAGE RETRO CSS
   Design Style: Vintage & Retro-Inspired
   ================================= */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3d2817;
  background-color: #f5ede0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(210, 180, 140, 0.05) 10px, rgba(210, 180, 140, 0.05) 20px);
}

/* VINTAGE RETRO COLOR SCHEME */
:root {
  --primary-color: #8b4513;
  --secondary-color: #d2691e;
  --accent-color: #daa520;
  --text-color: #3d2817;
  --background: #f5ede0;
  --cream: #faf6ed;
  --brown-dark: #5d3a1a;
  --mustard: #d4a574;
  --rust: #b7410e;
  --sage: #9d9d7f;
}

/* TYPOGRAPHY - VINTAGE FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1.3;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  border-bottom: 3px double var(--secondary-color);
  padding-bottom: 16px;
}

h2 {
  font-size: 32px;
  color: var(--primary-color);
  border-left: 6px solid var(--accent-color);
  padding-left: 20px;
}

h3 {
  font-size: 24px;
  color: var(--secondary-color);
}

p {
  margin-bottom: 16px;
  color: var(--text-color);
}

a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-style: wavy;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--rust);
  text-decoration-style: solid;
}

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

/* HEADER STYLES */
header {
  background-color: var(--cream);
  border-bottom: 4px solid var(--primary-color);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  background-image: linear-gradient(180deg, #faf6ed 0%, #f5ede0 100%);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  filter: sepia(30%) saturate(150%);
}

.logo a {
  text-decoration: none;
}

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

.main-nav a {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: var(--rust);
}

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

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--primary-color);
  color: var(--cream);
  border: 3px solid var(--accent-color);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--rust);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--cream);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(139, 69, 19, 0.03) 20px, rgba(139, 69, 19, 0.03) 40px);
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 6px solid var(--primary-color);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--rust);
  color: var(--cream);
  border: 3px solid var(--accent-color);
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--brown-dark);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-family: 'Courier New', Courier, monospace;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-dark);
  text-decoration: none;
  text-transform: uppercase;
  padding: 16px 20px;
  border: 2px dashed var(--primary-color);
  background-color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background-color: var(--mustard);
  color: var(--cream);
  border-style: solid;
  transform: translateX(8px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--secondary-color) 100%);
  background-image: 
    linear-gradient(135deg, var(--mustard) 0%, var(--secondary-color) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px double var(--brown-dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  color: var(--cream);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  border-bottom: none;
}

.subheadline {
  font-size: 24px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-style: italic;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTTONS - VINTAGE STYLE */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary, .btn-secondary {
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: 3px solid var(--brown-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--brown-dark);
}

.btn-primary:hover {
  background-color: var(--rust);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--brown-dark);
}

.btn-secondary {
  background-color: var(--cream);
  color: var(--primary-color);
  box-shadow: 4px 4px 0 var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--mustard);
  color: var(--cream);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--primary-color);
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  background-color: rgba(61, 40, 23, 0.4);
  padding: 10px 20px;
  border: 2px dashed var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.value-proposition,
.services-overview,
.process,
.testimonials,
.cta-section,
.trust-badges-section,
.story,
.values,
.team,
.production,
.certifications,
.services-detailed,
.materials,
.portfolio,
.statistics,
.consultation-types,
.benefits,
.contact-info,
.contact-options,
.showroom,
.service-area,
.business-hours,
.popular-links,
.error-help {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.value-proposition {
  background-color: var(--cream);
  border-top: 4px solid var(--accent-color);
  border-bottom: 4px solid var(--accent-color);
}

.services-overview {
  background-color: #fff;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(139, 69, 19, 0.02) 50px, rgba(139, 69, 19, 0.02) 100px);
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto 48px;
  font-style: italic;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.process-steps,
.testimonials-grid,
.badges-grid,
.values-grid,
.types-grid,
.options-grid,
.help-grid,
.stats-grid,
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* CARDS - VINTAGE STYLE */
.benefit,
.service-card,
.step,
.testimonial-card,
.badge,
.value,
.type,
.option,
.help-option,
.stat,
.info-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: var(--cream);
  border: 3px solid var(--primary-color);
  padding: 32px 24px;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
}

.benefit::before,
.service-card::before,
.value::before,
.type::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px dashed var(--mustard);
  pointer-events: none;
}

.benefit:hover,
.service-card:hover,
.step:hover,
.type:hover,
.value:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(139, 69, 19, 0.3);
}

.service-card h3,
.benefit h3,
.step h3,
.value h3,
.type h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit p,
.step p,
.value p,
.type p {
  color: var(--text-color);
  line-height: 1.6;
}

.price {
  font-family: 'Courier New', Courier, monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--rust);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px dashed var(--mustard);
}

.duration {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: var(--secondary-color);
  font-style: italic;
  margin-bottom: 16px;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background-color: var(--mustard);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 40px);
  padding: 60px 20px;
}

.testimonials h2 {
  color: var(--brown-dark);
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.testimonial-card {
  background-color: var(--cream);
  border: 4px solid var(--brown-dark);
  padding: 32px;
  box-shadow: 8px 8px 0 rgba(61, 40, 23, 0.3);
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 16px;
}

.author {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating {
  color: var(--accent-color);
  font-size: 20px;
  margin-top: 8px;
}

/* PROCESS STEPS */
.process {
  background-color: #fff;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  flex: 1 1 100%;
  border-left: 6px solid var(--accent-color);
  padding-left: 24px;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: var(--accent-color);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
}

.step h3 {
  font-size: 22px;
  color: var(--primary-color);
}

/* PROCESS LIST */
.process-list {
  list-style: none;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  background-color: var(--cream);
  border: 2px solid var(--primary-color);
  position: relative;
  line-height: 1.6;
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Courier New', Courier, monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--rust) 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 6px double var(--accent-color);
  border-bottom: 6px double var(--accent-color);
}

.cta-section h2 {
  color: var(--cream);
  font-size: 36px;
  border-left: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--cream);
  font-size: 18px;
  margin-bottom: 32px;
}

.info-text {
  font-size: 14px;
  color: var(--cream);
  font-style: italic;
  margin-top: 24px;
}

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

/* BADGES GRID */
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.badge {
  flex: 0 1 auto;
  min-width: 180px;
  background-color: var(--cream);
  border: 3px solid var(--primary-color);
  padding: 20px;
  text-align: center;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
}

/* DETAILED SERVICES */
.services-detailed {
  background-color: #fff;
}

.service-detail {
  background-color: var(--cream);
  border: 3px solid var(--primary-color);
  padding: 40px 32px;
  margin-bottom: 32px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.2);
}

.service-detail h2 {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.service-detail li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.6;
}

.service-detail li::before {
  content: '▸';
  position: absolute;
  left: 8px;
  color: var(--accent-color);
  font-size: 18px;
}

/* MATERIALS SECTION */
.materials {
  background-color: var(--cream);
  padding: 60px 20px;
}

.materials ul {
  list-style: none;
  padding-left: 0;
}

.materials li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 16px;
  background-color: #fff;
  border-left: 4px solid var(--accent-color);
  position: relative;
  line-height: 1.6;
}

.materials li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 700;
}

/* PORTFOLIO/PROJECTS */
.portfolio {
  background-color: #fff;
}

.project {
  background-color: var(--cream);
  border: 3px solid var(--primary-color);
  padding: 40px 32px;
  margin-bottom: 40px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.2);
}

.project h2 {
  color: var(--primary-color);
  font-size: 26px;
  margin-bottom: 16px;
}

.project .testimonial {
  font-style: italic;
  color: var(--text-color);
  background-color: rgba(139, 69, 19, 0.05);
  padding: 16px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

/* STATISTICS */
.statistics {
  background: linear-gradient(135deg, var(--mustard) 0%, var(--secondary-color) 100%);
  padding: 60px 20px;
  text-align: center;
}

.statistics h2 {
  color: var(--brown-dark);
  border-left: none;
  padding-left: 0;
}

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

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background-color: var(--cream);
  border: 4px solid var(--brown-dark);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 6px 6px 0 rgba(61, 40, 23, 0.3);
}

.number {
  font-family: 'Courier New', Courier, monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 8px;
}

/* CONTACT FORMS & INFO */
.contact-form-section,
.contact-options,
.showroom,
.business-hours {
  background-color: var(--cream);
  padding: 60px 20px;
}

.form-notice {
  background-color: #fff;
  border: 3px solid var(--primary-color);
  padding: 32px;
  margin-top: 32px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
}

.form-notice ul {
  list-style: none;
  padding-left: 0;
  margin-top: 16px;
}

.form-notice li {
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
}

.form-notice li::before {
  content: '→';
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

/* TEXT CONTENT */
.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-content p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* LINK LIST */
.link-list {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 32px auto;
}

.link-list li {
  margin-bottom: 16px;
}

.link-list a {
  display: block;
  padding: 16px 20px;
  background-color: var(--cream);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
}

.link-list a:hover {
  background-color: var(--mustard);
  color: var(--cream);
  transform: translateX(8px);
}

/* 404 ERROR PAGE */
.hero-404 {
  background: linear-gradient(135deg, var(--rust) 0%, var(--primary-color) 100%);
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  color: var(--cream);
}

.error-code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 120px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin: 24px 0;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.error-help {
  padding: 60px 20px;
  background-color: var(--cream);
}

/* THANK YOU PAGE */
.hero-thankyou {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--mustard) 100%);
  padding: 100px 20px;
  text-align: center;
}

.thankyou-content h1 {
  color: var(--brown-dark);
  font-size: 48px;
}

.confirmation,
.next-steps {
  padding: 60px 20px;
  background-color: #fff;
}

.confirmation ol {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 0;
  list-style: none;
  counter-reset: confirm-counter;
}

.confirmation li {
  counter-increment: confirm-counter;
  padding: 20px 20px 20px 60px;
  margin-bottom: 16px;
  background-color: var(--cream);
  border: 2px solid var(--primary-color);
  position: relative;
  line-height: 1.6;
}

.confirmation li::before {
  content: counter(confirm-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
}

/* LEGAL CONTENT */
.legal-content {
  background-color: var(--cream);
  padding: 60px 20px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
}

.legal-content ul {
  list-style: none;
  padding-left: 0;
}

.legal-content li {
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  line-height: 1.7;
}

.legal-content li::before {
  content: '■';
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

/* FOOTER */
footer {
  background-color: var(--brown-dark);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 40px);
  color: var(--cream);
  padding: 60px 20px 24px;
  border-top: 6px solid var(--accent-color);
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  font-family: 'Courier New', Courier, monospace;
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 8px;
}

.footer-section p {
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-nav a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  transition: left 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-color);
}

.footer-nav a:hover::before {
  left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px dashed var(--accent-color);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--cream);
  font-family: 'Courier New', Courier, monospace;
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--brown-dark);
  border-top: 4px solid var(--accent-color);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent.show {
  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;
  color: var(--cream);
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons button {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#accept-all {
  background-color: var(--accent-color);
  color: var(--brown-dark);
}

#accept-all:hover {
  background-color: var(--mustard);
  color: var(--cream);
}

#reject-all {
  background-color: transparent;
  color: var(--cream);
}

#reject-all:hover {
  background-color: var(--rust);
}

#cookie-settings {
  background-color: transparent;
  color: var(--cream);
}

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

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

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

.modal-content {
  background-color: var(--cream);
  border: 4px solid var(--primary-color);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 rgba(61, 40, 23, 0.3);
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px dashed var(--mustard);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  font-size: 18px;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

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

.modal-buttons button {
  flex: 1 1 auto;
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#save-preferences {
  background-color: var(--primary-color);
  color: var(--cream);
}

#save-preferences:hover {
  background-color: var(--rust);
}

#close-modal {
  background-color: transparent;
  color: var(--primary-color);
}

#close-modal:hover {
  background-color: var(--mustard);
  color: var(--cream);
}

/* TRUST ELEMENTS */
.trust-elements {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-elements span {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  color: var(--cream);
  background-color: rgba(61, 40, 23, 0.4);
  padding: 8px 16px;
  border: 2px dashed var(--cream);
  text-transform: uppercase;
}

/* TEAM INFO */
.team-info {
  background-color: var(--cream);
  border: 3px solid var(--primary-color);
  padding: 32px;
  margin-top: 32px;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
}

.team-info p {
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-color);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .benefit,
  .service-card,
  .testimonial-card,
  .type,
  .option {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  /* MOBILE MENU VISIBILITY */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* TYPOGRAPHY */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* CARDS */
  .benefit,
  .service-card,
  .step,
  .testimonial-card,
  .value,
  .type,
  .option,
  .help-option,
  .stat,
  .info-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE CONSENT */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* STATS GRID */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  /* MODAL */
  .modal-content {
    padding: 24px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  .modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .number {
    font-size: 36px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

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

/* FOCUS STYLES */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

/* SELECTION */
::selection {
  background-color: var(--accent-color);
  color: var(--brown-dark);
}

::-moz-selection {
  background-color: var(--accent-color);
  color: var(--brown-dark);
}