/* ============================================
   SPARK ESCAPE - VINTAGE RETRO DESIGN SYSTEM
   CSS Reset & Base Styles
   ============================================ */

* {
  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.7;
  color: #3a3226;
  background-color: #f8f3e8;
  overflow-x: hidden;
}

/* ============================================
   VINTAGE RETRO TYPOGRAPHY
   Classic typewriter and vintage fonts
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F4F;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(212, 165, 116, 0.3);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  border-bottom: 4px double #D4A574;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #4a7c59;
}

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

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

a {
  color: #2C5F4F;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px dotted transparent;
}

a:hover {
  color: #D4A574;
  border-bottom: 2px dotted #D4A574;
}

/* ============================================
   CONTAINER & LAYOUT SYSTEM
   Flexbox-based layout (NO CSS GRID)
   ============================================ */

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

/* ============================================
   VINTAGE RETRO HEADER & NAVIGATION
   Classic newspaper-style header
   ============================================ */

header {
  background-color: #2C5F4F;
  padding: 24px 0;
  border-bottom: 6px double #D4A574;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.main-nav a {
  color: #F4F1E8;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.main-nav a:hover {
  color: #D4A574;
  border: 2px solid #D4A574;
  background-color: rgba(212, 165, 116, 0.1);
  border-bottom: 2px solid #D4A574;
}

/* ============================================
   MOBILE BURGER MENU
   Vintage slide-in menu
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #2C5F4F;
  border: 3px solid #D4A574;
  color: #F4F1E8;
  font-size: 28px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background-color: #2C5F4F;
  border-left: 6px double #D4A574;
  padding: 80px 40px 40px 40px;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: 3px solid #D4A574;
  color: #F4F1E8;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.mobile-menu-close:hover {
  background-color: #D4A574;
  color: #2C5F4F;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #F4F1E8;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 20px;
  border: 3px solid #D4A574;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Georgia', serif;
  background-color: rgba(212, 165, 116, 0.1);
}

.mobile-nav a:hover {
  background-color: #D4A574;
  color: #2C5F4F;
  border-color: #F4F1E8;
  transform: translateX(-5px);
}

/* ============================================
   VINTAGE HERO SECTION
   Retro-inspired hero with textured background
   ============================================ */

.hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #4a7c59 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 8px double #D4A574;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(244, 241, 232, 0.03) 10px, rgba(244, 241, 232, 0.03) 20px);
  pointer-events: none;
}

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

.hero h1 {
  color: #F4F1E8;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(212, 165, 116, 0.4);
}

.tagline {
  font-size: 24px;
  color: #D4A574;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 600;
}

.hero p {
  color: #F4F1E8;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ============================================
   VINTAGE RETRO BUTTONS
   Classic stamp-style buttons
   ============================================ */

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

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 4px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  font-family: 'Georgia', serif;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px dashed rgba(255, 255, 255, 0.3);
  margin: 4px;
  pointer-events: none;
}

.btn-primary {
  background-color: #D4A574;
  color: #2C5F4F;
  border-color: #2C5F4F;
}

.btn-primary:hover {
  background-color: #2C5F4F;
  color: #F4F1E8;
  border-color: #D4A574;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #F4F1E8;
  border-color: #F4F1E8;
}

.btn-secondary:hover {
  background-color: #F4F1E8;
  color: #2C5F4F;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(244, 241, 232, 0.3);
}

/* ============================================
   TRUST BADGES - VINTAGE STAMPS
   Retro stamp-style badges
   ============================================ */

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

.badge {
  background-color: #F4F1E8;
  color: #2C5F4F;
  padding: 12px 24px;
  border: 4px double #D4A574;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.2);
  position: relative;
}

.badge::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1px dashed #D4A574;
  pointer-events: none;
}

/* ============================================
   SECTIONS - VINTAGE NEWSPAPER LAYOUT
   Classic column-style sections
   ============================================ */

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

.services-preview,
.benefits,
.testimonials,
.about-story,
.values,
.expertise,
.portfolio-intro,
.process-intro,
.services-intro,
.contact-intro {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-preview {
  background-color: #f0e8d5;
  border-top: 6px double #2C5F4F;
  border-bottom: 6px double #2C5F4F;
}

.benefits {
  background-color: #fff;
}

.testimonials {
  background-color: #e8ddc5;
  border: 4px solid #D4A574;
  position: relative;
}

.testimonials::before {
  content: '❝';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 120px;
  color: rgba(212, 165, 116, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================================
   CARDS & GRID LAYOUTS - FLEXBOX ONLY
   Vintage postcard-style cards
   ============================================ */

.services-grid,
.benefits-grid,
.values-grid,
.stats-grid,
.contact-grid,
.resources-grid,
.warranty-grid,
.fabric-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.benefit-item,
.value-item,
.stat,
.contact-card,
.resource-item,
.warranty-item,
.fabric-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: #F4F1E8;
  padding: 32px;
  border: 4px solid #2C5F4F;
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.benefit-item::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  background-color: #D4A574;
  border-radius: 50%;
  border: 3px solid #2C5F4F;
}

.service-card:hover,
.benefit-item:hover,
.value-item:hover,
.contact-card:hover,
.resource-item:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 8px 8px 0px rgba(44, 95, 79, 0.4);
}

.service-card h3,
.benefit-item h3,
.value-item h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
  border-bottom: 2px solid #D4A574;
  padding-bottom: 8px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #D4A574;
  margin-top: 16px;
  font-family: 'Georgia', serif;
}

/* ============================================
   TESTIMONIALS - VINTAGE REVIEW CARDS
   Classic testimonial design
   ============================================ */

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #fff;
  padding: 32px;
  border: 4px double #D4A574;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '★';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  color: #D4A574;
}

.testimonial-card p {
  color: #3a3226;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F4F;
  font-style: normal;
  border-top: 2px solid #D4A574;
  padding-top: 12px;
  margin-bottom: 0;
}

/* ============================================
   STATS - VINTAGE COUNTER STYLE
   Retro number displays
   ============================================ */

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

.stat {
  flex: 1 1 250px;
  text-align: center;
  padding: 40px 20px;
  background-color: #2C5F4F;
  border: 5px double #D4A574;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.stat .number {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

.stat .label {
  display: block;
  font-size: 16px;
  color: #F4F1E8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* ============================================
   CTA SECTIONS - VINTAGE CALL-TO-ACTION
   Bold retro CTA blocks
   ============================================ */

.cta-section {
  background-color: #2C5F4F;
  padding: 80px 20px;
  text-align: center;
  border-top: 8px double #D4A574;
  border-bottom: 8px double #D4A574;
  margin: 60px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(244, 241, 232, 0.03) 15px, rgba(244, 241, 232, 0.03) 30px);
  pointer-events: none;
}

.cta-section h2 {
  color: #F4F1E8;
  border-bottom: 4px double #D4A574;
  margin-bottom: 20px;
}

.cta-section p {
  color: #F4F1E8;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PAGE HERO - SUBPAGE HEADERS
   Vintage newspaper-style headers
   ============================================ */

.page-hero {
  background-color: #e8ddc5;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px double #2C5F4F;
  margin-bottom: 60px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 6px;
  background-color: #D4A574;
}

.subheadline {
  font-size: 20px;
  color: #4a7c59;
  font-family: 'Georgia', serif;
  font-style: italic;
  margin-top: 16px;
}

.last-update {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  font-style: italic;
}

/* ============================================
   PROCESS STEPS - VINTAGE TIMELINE
   Retro step-by-step cards
   ============================================ */

.process-steps {
  padding: 60px 20px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: #F4F1E8;
  padding: 32px;
  margin-bottom: 32px;
  border: 4px solid #2C5F4F;
  box-shadow: 6px 6px 0px rgba(44, 95, 79, 0.3);
  position: relative;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4A574;
  font-family: 'Georgia', serif;
  min-width: 80px;
  text-align: center;
  line-height: 1;
  border: 4px double #2C5F4F;
  padding: 16px;
  background-color: #fff;
}

.step-card h3 {
  margin-top: 0;
}

.timeline {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 12px;
  border-top: 2px dotted #D4A574;
  padding-top: 8px;
}

/* ============================================
   PORTFOLIO & PROJECT CARDS
   Vintage photo album style
   ============================================ */

.portfolio-grid {
  padding: 60px 20px;
}

.project-card {
  background-color: #F4F1E8;
  padding: 32px;
  margin-bottom: 32px;
  border: 5px solid #2C5F4F;
  box-shadow: 8px 8px 0px rgba(44, 95, 79, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.project-card::before {
  content: '📷';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  opacity: 0.3;
}

.project-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 10px 10px 0px rgba(44, 95, 79, 0.4);
}

.project-details {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 16px;
  border-top: 2px solid #D4A574;
  padding-top: 12px;
}

/* ============================================
   SERVICES DETAILED LIST
   Classic list layout
   ============================================ */

.services-detailed {
  padding: 60px 20px;
}

.service-item {
  background-color: #fff;
  padding: 32px;
  margin-bottom: 32px;
  border-left: 8px solid #D4A574;
  border-right: 2px solid #2C5F4F;
  border-top: 2px solid #2C5F4F;
  border-bottom: 2px solid #2C5F4F;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-item .price {
  display: inline-block;
  background-color: #D4A574;
  color: #2C5F4F;
  padding: 8px 20px;
  margin-top: 16px;
  border: 3px solid #2C5F4F;
  font-size: 20px;
}

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

/* ============================================
   CONTACT FORMS - VINTAGE STYLE
   Classic form design
   ============================================ */

.contact-form-section {
  padding: 60px 20px;
  background-color: #f0e8d5;
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #F4F1E8;
  padding: 40px;
  border: 4px double #2C5F4F;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2);
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: #2C5F4F;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid #2C5F4F;
  background-color: #fff;
  font-size: 16px;
  font-family: 'Courier New', Courier, monospace;
  color: #3a3226;
  transition: all 0.3s ease;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #D4A574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

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

/* ============================================
   LEGAL CONTENT PAGES
   Vintage document style
   ============================================ */

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background-color: #F4F1E8;
  padding: 32px;
  margin-bottom: 32px;
  border: 3px solid #2C5F4F;
  border-left: 8px solid #D4A574;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}

.legal-section h2 {
  color: #2C5F4F;
  font-size: 24px;
  margin-bottom: 16px;
  border-bottom: 3px double #D4A574;
  padding-bottom: 12px;
}

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

.legal-section ul li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.legal-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: 700;
}

/* ============================================
   THANK YOU PAGE - VINTAGE SUCCESS
   Retro confirmation design
   ============================================ */

.thank-you-hero {
  background-color: #e8ddc5;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 6px double #2C5F4F;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #2C5F4F;
  color: #D4A574;
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 6px double #D4A574;
  border-radius: 50%;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.confirmation-message {
  font-size: 20px;
  color: #4a7c59;
  font-family: 'Georgia', serif;
  font-style: italic;
}

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

.step-item {
  flex: 1 1 300px;
  background-color: #F4F1E8;
  padding: 32px;
  border: 4px solid #2C5F4F;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
}

/* ============================================
   LINKS & UTILITY CLASSES
   Vintage link styles
   ============================================ */

.link-more {
  display: inline-block;
  color: #2C5F4F;
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 2px solid #2C5F4F;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.link-more:hover {
  background-color: #2C5F4F;
  color: #F4F1E8;
  transform: translateX(5px);
  border-color: #D4A574;
}

.benefits-list,
.key-points {
  list-style: none;
  padding-left: 0;
  margin-top: 24px;
}

.benefits-list li,
.key-points li {
  padding-left: 32px;
  margin-bottom: 16px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.benefits-list li::before,
.key-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4A574;
  font-weight: 700;
  font-size: 20px;
}

/* ============================================
   FOOTER - VINTAGE NEWSPAPER STYLE
   Classic footer design
   ============================================ */

footer {
  background-color: #2C5F4F;
  color: #F4F1E8;
  padding: 60px 20px 20px;
  border-top: 8px double #D4A574;
  margin-top: 80px;
}

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

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

.footer-col h4 {
  color: #D4A574;
  margin-bottom: 20px;
  border-bottom: 3px double #D4A574;
  padding-bottom: 12px;
  font-size: 18px;
}

.footer-col a {
  display: block;
  color: #F4F1E8;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-bottom: 1px dotted transparent;
}

.footer-col a:hover {
  color: #D4A574;
  padding-left: 8px;
  border-bottom: 1px dotted #D4A574;
}

.footer-col p {
  color: #F4F1E8;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 3px double #D4A574;
}

.footer-bottom p {
  color: #D4A574;
  font-size: 14px;
  margin: 0;
  letter-spacing: 1px;
}

/* ============================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   Classic cookie notification
   ============================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F4F;
  border-top: 6px double #D4A574;
  padding: 24px 20px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.4);
}

#cookie-banner.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: #F4F1E8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
  background-color: transparent;
}

.cookie-btn-accept {
  background-color: #D4A574;
  color: #2C5F4F;
  border-color: #2C5F4F;
}

.cookie-btn-accept:hover {
  background-color: #2C5F4F;
  color: #D4A574;
  border-color: #D4A574;
}

.cookie-btn-reject,
.cookie-btn-settings {
  background-color: transparent;
  color: #F4F1E8;
  border-color: #F4F1E8;
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background-color: #F4F1E8;
  color: #2C5F4F;
}

/* ============================================
   COOKIE MODAL - VINTAGE PREFERENCES
   Retro settings modal
   ============================================ */

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

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

.modal-content {
  background-color: #F4F1E8;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 6px double #2C5F4F;
  box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: 3px solid #2C5F4F;
  color: #2C5F4F;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  background-color: #2C5F4F;
  color: #F4F1E8;
  transform: rotate(90deg);
}

.modal-content h2 {
  color: #2C5F4F;
  margin-bottom: 24px;
  border-bottom: 4px double #D4A574;
  padding-bottom: 16px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  border: 3px solid #2C5F4F;
  background-color: #fff;
}

.cookie-category h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border: 3px solid #2C5F4F;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #2C5F4F;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #D4A574;
}

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   Breakpoints for vintage retro layout
   ============================================ */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  .tagline { font-size: 18px; }
  
  /* Show mobile menu */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Header adjustments */
  header { padding: 16px 0; }
  .logo img { height: 50px; }
  
  /* Hero section */
  .hero { padding: 60px 20px; }
  
  /* Buttons */
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  
  /* Cards - single column on mobile */
  .service-card,
  .benefit-item,
  .value-item,
  .stat,
  .contact-card,
  .resource-item,
  .warranty-item,
  .fabric-item,
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content { flex-direction: column; }
  .footer-col { flex: 1 1 100%; }
  
  /* Cookie banner */
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; }
  
  /* Step cards */
  .step-card { flex-direction: column; }
  .step-number { min-width: 100%; }
  
  /* Stats */
  .stat .number { font-size: 48px; }
  
  /* Modal */
  .modal-content { padding: 24px; }
  
  /* Forms */
  .form-wrapper { padding: 24px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-item,
  .value-item {
    flex: 1 1 calc(50% - 32px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .stat {
    flex: 1 1 calc(33.333% - 40px);
  }
}

/* ============================================
   ACCESSIBILITY & ANIMATIONS
   Smooth transitions and focus states
   ============================================ */

*:focus {
  outline: 3px dashed #D4A574;
  outline-offset: 4px;
}

button:focus,
a:focus {
  outline: 3px solid #D4A574;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: #D4A574;
  color: #2C5F4F;
}

/* ============================================
   PRINT STYLES - VINTAGE DOCUMENT
   Optimized for printing
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
  
  .service-card,
  .benefit-item,
  .testimonial-card {
    page-break-inside: avoid;
  }
}

/* ============================================
   END OF VINTAGE RETRO STYLESHEET
   All layouts use FLEXBOX (NO CSS GRID)
   ============================================ */