/* ========================================
   AUTOMEISTER PRO - VINTAGE RETRO STYLE
   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.6;
  color: #2C1810;
  background-color: #F5E6D3;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ========================================
   VINTAGE RETRO COLOR PALETTE
======================================== */
:root {
  --vintage-red: #8B1529;
  --vintage-dark-red: #5A0E1A;
  --vintage-gold: #D4A574;
  --vintage-cream: #F5E6D3;
  --vintage-brown: #4A3728;
  --vintage-beige: #E8D5B7;
  --vintage-orange: #E6A24A;
  --text-dark: #2C1810;
  --text-light: #6B5444;
}

/* ========================================
   TYPOGRAPHY - VINTAGE STYLE
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--vintage-dark-red);
  letter-spacing: 0.5px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

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

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

strong {
  font-weight: 700;
  color: var(--vintage-dark-red);
}

em {
  font-style: italic;
  color: var(--text-light);
}

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

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

/* ========================================
   HEADER - VINTAGE STYLE
======================================== */
header {
  background: linear-gradient(135deg, var(--vintage-dark-red) 0%, var(--vintage-red) 100%);
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid var(--vintage-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  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: var(--vintage-cream);
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--vintage-gold);
  border-bottom-color: var(--vintage-gold);
  transform: translateY(-2px);
}

header .cta-button {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--vintage-dark-red);
  box-shadow: 4px 4px 0 var(--vintage-dark-red);
  transition: all 0.3s ease;
}

header .cta-button:hover {
  background-color: var(--vintage-orange);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--vintage-dark-red);
}

/* ========================================
   MOBILE MENU
======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: var(--vintage-red);
  color: var(--vintage-cream);
  border: 3px solid var(--vintage-gold);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--vintage-dark-red);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--vintage-dark-red);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--vintage-dark-red);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--vintage-dark-red) 0%, var(--vintage-red) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  border-left: 4px solid var(--vintage-gold);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  border: 3px solid var(--vintage-dark-red);
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: var(--vintage-cream);
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 20px;
  border: 2px solid var(--vintage-gold);
  border-radius: 4px;
  text-align: center;
  background-color: rgba(212, 165, 116, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  transform: translateX(10px);
}

/* ========================================
   HERO SECTION - VINTAGE RETRO
======================================== */
.hero {
  background: linear-gradient(135deg, var(--vintage-beige) 0%, var(--vintage-cream) 50%, var(--vintage-beige) 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 6px double var(--vintage-red);
  border-bottom: 6px double var(--vintage-red);
  position: relative;
  margin-bottom: 60px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--vintage-gold) 0px, var(--vintage-gold) 10px, transparent 10px, transparent 20px);
}

.hero::before {
  top: 10px;
}

.hero::after {
  bottom: 10px;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  color: var(--vintage-dark-red);
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 var(--vintage-gold);
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges span {
  background-color: var(--vintage-red);
  color: var(--vintage-cream);
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--vintage-gold);
  box-shadow: 4px 4px 0 var(--vintage-dark-red);
}

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

/* ========================================
   BUTTONS - VINTAGE STYLE
======================================== */
.cta-primary,
.cta-secondary,
.cta-button {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
}

.cta-primary {
  background-color: var(--vintage-red);
  color: var(--vintage-cream);
  border-color: var(--vintage-dark-red);
}

.cta-primary:hover {
  background-color: var(--vintage-dark-red);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
}

.cta-secondary {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  border-color: var(--vintage-red);
}

.cta-secondary:hover {
  background-color: var(--vintage-orange);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
}

.cta-button {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  border-color: var(--vintage-dark-red);
  padding: 14px 32px;
  font-size: 16px;
}

.cta-button:hover {
  background-color: var(--vintage-orange);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
}

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

/* ========================================
   SERVICES OVERVIEW - VINTAGE CARDS
======================================== */
.services-overview {
  background-color: var(--vintage-cream);
  padding: 60px 20px;
  text-align: center;
}

.services-overview h2 {
  margin-bottom: 20px;
}

.services-overview > p {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: var(--text-light);
}

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

.service-card {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 350px;
  text-align: center;
  box-shadow: 6px 6px 0 var(--vintage-dark-red);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px dashed var(--vintage-gold);
  border-radius: 4px;
  pointer-events: none;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--vintage-dark-red);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  filter: sepia(0.4) hue-rotate(-10deg);
}

.service-card h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-dark);
  flex-grow: 1;
}

.service-card .price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--vintage-red);
  background-color: var(--vintage-gold);
  padding: 8px 20px;
  border-radius: 4px;
  border: 2px solid var(--vintage-dark-red);
  display: inline-block;
  margin-top: 12px;
}

/* ========================================
   VALUE PROPOSITION - FEATURES
======================================== */
.value-proposition {
  background: linear-gradient(135deg, var(--vintage-red) 0%, var(--vintage-dark-red) 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 6px double var(--vintage-gold);
  border-bottom: 6px double var(--vintage-gold);
}

.value-proposition h2 {
  color: var(--vintage-cream);
  margin-bottom: 50px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature-block {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-gold);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature-block img {
  width: 70px;
  height: 70px;
  filter: sepia(0.3);
}

.feature-block h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
  margin-bottom: 8px;
}

.feature-block p {
  font-size: 15px;
  color: var(--text-dark);
}

/* ========================================
   TESTIMONIALS - VINTAGE REVIEWS
======================================== */
.testimonials {
  background-color: var(--vintage-cream);
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 50px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 32px 28px;
  width: 100%;
  max-width: 500px;
  box-shadow: 6px 6px 0 var(--vintage-dark-red);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: 'Georgia', serif;
  color: var(--vintage-gold);
  line-height: 1;
}

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

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--vintage-gold);
}

.testimonial-card .author strong {
  font-family: 'Georgia', serif;
  font-size: 18px;
  color: var(--vintage-dark-red);
}

.testimonial-card .author span {
  color: var(--vintage-orange);
  font-size: 18px;
}

/* ========================================
   CTA SECTIONS
======================================== */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, var(--vintage-gold) 0%, var(--vintage-orange) 100%);
  padding: 60px 20px;
  text-align: center;
  border: 6px solid var(--vintage-red);
  border-radius: 8px;
  margin: 60px 20px;
  box-shadow: 8px 8px 0 var(--vintage-dark-red);
}

.cta-final h2,
.cta-section h2 {
  color: var(--vintage-dark-red);
  margin-bottom: 16px;
}

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

/* ========================================
   DETAILED SERVICES PAGE
======================================== */
.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 30px;
  box-shadow: 5px 5px 0 var(--vintage-dark-red);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-detail h2 {
  color: var(--vintage-dark-red);
  font-size: 28px;
  margin-bottom: 12px;
}

.service-detail p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
}

.service-detail .price {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--vintage-red);
  background-color: var(--vintage-gold);
  padding: 10px 24px;
  border-radius: 4px;
  border: 3px solid var(--vintage-dark-red);
  display: inline-block;
  align-self: flex-start;
}

.service-detail .duration {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  background-color: var(--vintage-cream);
  padding: 6px 16px;
  border-radius: 4px;
  border: 2px solid var(--vintage-gold);
  display: inline-block;
  align-self: flex-start;
}

/* ========================================
   GUARANTEES SECTION
======================================== */
.guarantees {
  background-color: var(--vintage-cream);
  padding: 60px 20px;
  text-align: center;
}

.guarantees h2 {
  margin-bottom: 40px;
}

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.guarantee-card {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-gold);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-red);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guarantee-card h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
}

.guarantee-card p {
  font-size: 15px;
  color: var(--text-dark);
}

/* ========================================
   COMPANY STORY & VALUES
======================================== */
.company-story,
.values,
.team {
  padding: 60px 20px;
  background-color: var(--vintage-cream);
}

.company-story h2,
.values h2,
.team h2 {
  text-align: center;
  margin-bottom: 30px;
}

.company-story p,
.team p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 16px;
  line-height: 1.8;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 40px auto 0;
}

.milestone {
  background-color: var(--vintage-beige);
  border-left: 6px solid var(--vintage-red);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--vintage-dark-red);
}

.milestone strong {
  font-family: 'Georgia', serif;
  font-size: 24px;
  color: var(--vintage-red);
  display: block;
  margin-bottom: 8px;
}

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

.value-card {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-dark-red);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.value-card h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
}

.value-card p {
  font-size: 15px;
  color: var(--text-dark);
}

.team ul {
  max-width: 600px;
  margin: 30px auto 0;
}

.team li {
  background-color: var(--vintage-beige);
  border-left: 4px solid var(--vintage-gold);
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 4px;
  font-size: 16px;
  color: var(--text-dark);
}

/* ========================================
   FACILITY & EQUIPMENT
======================================== */
.facility,
.equipment,
.specializations {
  padding: 60px 20px;
  background-color: var(--vintage-cream);
  text-align: center;
}

.facility h2,
.equipment h2,
.specializations h2 {
  margin-bottom: 24px;
}

.facility p,
.specializations p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
}

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

.fact {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-dark-red);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fact strong {
  font-family: 'Georgia', serif;
  font-size: 48px;
  color: var(--vintage-red);
  display: block;
}

.fact span {
  font-size: 16px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.equipment-card {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-gold);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-red);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.equipment-card h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
}

.equipment-card p {
  font-size: 15px;
  color: var(--text-dark);
}

/* ========================================
   PRICING PAGE
======================================== */
.pricing {
  padding: 40px 20px;
  background-color: var(--vintage-cream);
}

.pricing h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.price-row {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 4px 4px 0 var(--vintage-dark-red);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-info {
  flex: 1;
  min-width: 250px;
}

.service-info h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
  margin-bottom: 8px;
}

.service-info p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 0;
}

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

.price-info .price {
  font-family: 'Georgia', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--vintage-red);
  background-color: var(--vintage-gold);
  padding: 8px 20px;
  border-radius: 4px;
  border: 3px solid var(--vintage-dark-red);
}

.price-info .duration {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-info {
  padding: 60px 20px;
  background-color: var(--vintage-cream);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  background-color: var(--vintage-beige);
  border: 4px solid var(--vintage-red);
  border-radius: 8px;
  padding: 32px 24px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  box-shadow: 5px 5px 0 var(--vintage-dark-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-card img {
  width: 60px;
  height: 60px;
  filter: sepia(0.4);
}

.contact-card h3 {
  font-size: 22px;
  color: var(--vintage-dark-red);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-dark);
}

.contact-card a {
  color: var(--vintage-red);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--vintage-dark-red);
  border-bottom-color: var(--vintage-gold);
}

.opening-hours {
  padding: 60px 20px;
  background-color: var(--vintage-beige);
  text-align: center;
}

.opening-hours h2 {
  margin-bottom: 40px;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-row {
  background-color: var(--vintage-cream);
  border: 3px solid var(--vintage-red);
  border-radius: 4px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  box-shadow: 3px 3px 0 var(--vintage-dark-red);
}

.hours-row span:first-child {
  font-weight: 700;
  color: var(--vintage-dark-red);
}

.hours-row span:last-child {
  color: var(--text-dark);
}

.location {
  padding: 60px 20px;
  background-color: var(--vintage-cream);
  text-align: center;
}

.location h2 {
  margin-bottom: 24px;
}

.location p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 16px;
  color: var(--text-dark);
}

/* ========================================
   LEGAL PAGES
======================================== */
.legal-page {
  padding: 60px 20px;
  background-color: var(--vintage-cream);
  min-height: 60vh;
}

.legal-page .container {
  max-width: 900px;
}

.legal-page h1 {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 4px solid var(--vintage-red);
}

.legal-page h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--vintage-red);
}

.legal-page h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 16px;
}

.legal-page p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-page ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-page li {
  list-style: disc;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.7;
}

/* ========================================
   THANK YOU PAGE
======================================== */
.thank-you {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--vintage-beige) 0%, var(--vintage-cream) 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
  text-align: center;
  background-color: var(--vintage-beige);
  border: 6px solid var(--vintage-red);
  border-radius: 8px;
  padding: 60px 40px;
  box-shadow: 8px 8px 0 var(--vintage-dark-red);
}

.success-icon {
  font-size: 80px;
  color: var(--vintage-red);
  background-color: var(--vintage-gold);
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 30px;
  border: 6px solid var(--vintage-dark-red);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

.thank-you-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--vintage-dark-red);
}

.thank-you-content .subtitle {
  font-size: 22px;
  color: var(--vintage-red);
  margin-bottom: 24px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

.thank-you-content > p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.next-steps {
  background-color: var(--vintage-cream);
  border: 3px solid var(--vintage-gold);
  border-radius: 8px;
  padding: 30px;
  margin: 30px 0;
  text-align: left;
}

.next-steps h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.next-steps ol {
  margin-left: 20px;
}

.next-steps li {
  list-style: decimal;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
}

.contact-reminder {
  background-color: var(--vintage-gold);
  border: 3px solid var(--vintage-red);
  border-radius: 8px;
  padding: 24px;
  margin: 30px 0;
}

.contact-reminder h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-reminder p {
  font-size: 15px;
  margin-bottom: 0;
}

.contact-reminder a {
  color: var(--vintage-dark-red);
  font-weight: 700;
  border-bottom: 2px solid var(--vintage-dark-red);
}

.contact-reminder a:hover {
  color: var(--vintage-red);
}

/* ========================================
   FOOTER - VINTAGE STYLE
======================================== */
footer {
  background: linear-gradient(135deg, var(--vintage-dark-red) 0%, var(--vintage-red) 100%);
  color: var(--vintage-cream);
  padding: 50px 20px 20px;
  border-top: 6px solid var(--vintage-gold);
  margin-top: 60px;
}

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

.footer-col {
  flex: 1;
  min-width: 220px;
}

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

.footer-col h4 {
  font-family: 'Georgia', serif;
  font-size: 20px;
  color: var(--vintage-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--vintage-cream);
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: var(--vintage-cream);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.footer-nav a:hover {
  color: var(--vintage-gold);
  border-left-color: var(--vintage-gold);
  padding-left: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--vintage-gold);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--vintage-cream);
  margin: 0;
}

/* ========================================
   COOKIE CONSENT BANNER
======================================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--vintage-dark-red) 0%, var(--vintage-red) 100%);
  color: var(--vintage-cream);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  border-top: 4px solid var(--vintage-gold);
  display: none;
}

#cookie-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;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  border-color: var(--vintage-dark-red);
}

.cookie-btn.accept:hover {
  background-color: var(--vintage-orange);
  transform: translateY(-2px);
}

.cookie-btn.reject {
  background-color: transparent;
  color: var(--vintage-cream);
  border-color: var(--vintage-cream);
}

.cookie-btn.reject:hover {
  background-color: rgba(245, 230, 211, 0.1);
}

.cookie-btn.settings {
  background-color: transparent;
  color: var(--vintage-gold);
  border-color: var(--vintage-gold);
}

.cookie-btn.settings:hover {
  background-color: rgba(212, 165, 116, 0.1);
}

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

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

.cookie-modal-content {
  background-color: var(--vintage-beige);
  border: 6px solid var(--vintage-red);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 var(--vintage-dark-red);
}

.cookie-modal-header {
  background: linear-gradient(135deg, var(--vintage-dark-red) 0%, var(--vintage-red) 100%);
  color: var(--vintage-cream);
  padding: 24px;
  border-bottom: 4px solid var(--vintage-gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  margin: 0;
  color: var(--vintage-cream);
  font-size: 24px;
}

.cookie-close {
  background-color: var(--vintage-gold);
  color: var(--vintage-dark-red);
  border: 2px solid var(--vintage-dark-red);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-close:hover {
  background-color: var(--vintage-orange);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 30px;
}

.cookie-category {
  background-color: var(--vintage-cream);
  border: 3px solid var(--vintage-gold);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin: 0;
  color: var(--vintage-dark-red);
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-dark);
  margin: 0;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--text-light);
  transition: 0.3s;
  border-radius: 26px;
  border: 2px solid var(--vintage-dark-red);
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 2px;
  background-color: var(--vintage-cream);
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: var(--vintage-red);
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-footer {
  background-color: var(--vintage-cream);
  padding: 20px 30px;
  border-top: 3px solid var(--vintage-gold);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
======================================== */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  header .cta-button {
    display: none;
  }

  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Header adjustments */
  .header-content {
    justify-content: center;
  }

  .logo {
    height: 50px;
  }

  /* Hero section */
  .hero {
    padding: 50px 20px;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary,
  .cta-button {
    width: 100%;
    text-align: center;
  }

  /* Service cards */
  .service-grid,
  .features-grid,
  .testimonial-grid,
  .guarantee-grid,
  .values-grid,
  .facts-grid,
  .equipment-grid,
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card,
  .feature-block,
  .testimonial-card,
  .guarantee-card,
  .value-card,
  .fact,
  .equipment-card,
  .contact-card {
    max-width: 100%;
  }

  /* Pricing table */
  .price-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-info {
    align-items: flex-start;
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-nav {
    align-items: center;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Thank you page */
  .thank-you-content {
    padding: 40px 24px;
  }

  .thank-you-content h1 {
    font-size: 32px;
  }

  .success-icon {
    font-size: 60px;
    width: 100px;
    height: 100px;
  }

  /* Section spacing */
  section {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .service-grid,
  .features-grid {
    justify-content: space-around;
  }

  .service-card,
  .feature-block {
    max-width: 300px;
  }
}

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

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid var(--vintage-gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

/* Clearfix */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}