/* =================================================================
   FusionTide Hausmeisterservice - Vintage Retro Design
   Style: vintage_retro
   ================================================================= */

/* CSS RESET & NORMALIZE */
* {
  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: #3a2a1a;
  background-color: #f5f0e8;
  overflow-x: hidden;
}

/* VINTAGE RETRO COLORS */
:root {
  --primary-color: #8b4513;
  --secondary-color: #d2691e;
  --accent-color: #f4e4c1;
  --text-dark: #3a2a1a;
  --text-light: #6b5b4a;
  --retro-cream: #fffbf0;
  --retro-beige: #e8dcc4;
  --retro-brown: #5d4e37;
  --retro-orange: #ff8c42;
  --retro-green: #8b9556;
}

/* TYPOGRAPHY - VINTAGE STYLE */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  color: var(--retro-brown);
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 2px 2px 0px rgba(139, 69, 19, 0.1);
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  border-bottom: 3px double var(--primary-color);
  padding-bottom: 12px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--retro-brown);
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: var(--retro-brown);
}

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

/* HEADER - VINTAGE STYLE */
header {
  background: linear-gradient(180deg, #fffbf0 0%, #e8dcc4 100%);
  border-bottom: 4px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  height: 60px;
  width: auto;
  filter: sepia(30%) saturate(80%);
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--retro-brown);
  padding: 8px 16px;
  border: 2px solid transparent;
  background: var(--retro-cream);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background: var(--primary-color);
  color: var(--retro-cream);
  border-color: var(--retro-brown);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
}

/* CTA BUTTON - VINTAGE STYLE */
.cta-button,
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--retro-brown);
  border-radius: 8px;
  box-shadow: 4px 4px 0px var(--retro-brown);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover,
.btn-primary:hover {
  background: var(--primary-color);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--retro-brown);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--retro-cream);
  color: var(--retro-brown);
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 4px 4px 0px var(--primary-color);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--accent-color);
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--primary-color);
  text-decoration: none;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: var(--retro-orange);
  color: #fff;
  border: 3px solid var(--retro-brown);
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0px var(--retro-brown);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary-color);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0px var(--retro-brown);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #fffbf0 0%, #e8dcc4 100%);
  border-left: 4px solid var(--primary-color);
  box-shadow: -4px 0 20px rgba(139, 69, 19, 0.3);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 24px 24px 24px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--retro-brown);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  display: block;
  padding: 16px;
  background: var(--retro-cream);
  color: var(--retro-brown);
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--retro-orange);
  color: #fff;
  transform: translateX(8px);
  text-decoration: none;
}

/* HERO SECTION - VINTAGE RETRO */
.hero {
  background: linear-gradient(135deg, #f4e4c1 0%, #d2b48c 100%);
  padding: 80px 20px;
  border-bottom: 6px double var(--primary-color);
  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(139, 69, 19, 0.03) 10px, rgba(139, 69, 19, 0.03) 20px);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: var(--retro-brown);
  margin-bottom: 20px;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.15);
}

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

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--retro-cream);
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  color: var(--retro-brown);
}

/* HERO INTERNAL */
.hero-internal {
  background: linear-gradient(135deg, #e8dcc4 0%, #d2b48c 100%);
  padding: 60px 20px 40px;
  border-bottom: 4px solid var(--primary-color);
}

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--retro-brown);
  font-weight: 600;
}

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

.section-intro {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-family: 'Georgia', serif;
  font-style: italic;
}

/* USPs SECTION - RETRO CARDS */
.usps {
  background: var(--retro-cream);
  padding: 60px 20px;
  border-top: 4px double var(--primary-color);
  border-bottom: 4px double var(--primary-color);
}

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

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 6px 6px 0px var(--retro-beige);
  flex: 1 1 250px;
  max-width: 280px;
  transition: all 0.3s ease;
}

.usp-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px var(--retro-beige);
}

.usp-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(40%) saturate(80%) hue-rotate(-10deg);
}

.usp-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--retro-brown);
}

.usp-item p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* SERVICES OVERVIEW - VINTAGE CARDS */
.services-overview {
  background: linear-gradient(180deg, #f5f0e8 0%, #fffbf0 100%);
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  box-shadow: 5px 5px 0px var(--accent-color);
  flex: 1 1 280px;
  max-width: 320px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--accent-color);
}

.service-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  filter: sepia(50%) saturate(90%) hue-rotate(-5deg);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--retro-brown);
}

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

.service-card .price {
  font-family: 'Georgia', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--retro-orange);
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 2px dashed var(--retro-beige);
}

/* SERVICES DETAILED */
.services-detailed {
  background: var(--retro-cream);
  padding: 60px 20px;
}

.services-grid-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card-expanded {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 6px 6px 0px var(--retro-beige);
  flex: 1 1 340px;
  max-width: 380px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card-expanded:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px var(--retro-beige);
}

.service-card-expanded img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: sepia(50%) saturate(90%);
}

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

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

.service-card-expanded ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 15px;
  color: var(--text-dark);
}

.service-card-expanded ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--retro-green);
  font-weight: 700;
  font-size: 18px;
}

/* PROCESS SECTION - RETRO STEPS */
.process {
  background: var(--retro-cream);
  padding: 60px 20px;
  border-top: 4px double var(--primary-color);
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  padding: 24px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--retro-orange);
  color: #fff;
  font-family: 'Georgia', serif;
  font-size: 32px;
  font-weight: 700;
  border: 4px solid var(--retro-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px var(--retro-brown);
}

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

.step p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 0;
}

/* TESTIMONIALS - VINTAGE STYLE */
.testimonials {
  background: linear-gradient(135deg, #fffbf0 0%, #f4e4c1 100%);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  box-shadow: 6px 6px 0px var(--retro-beige);
  flex: 1 1 400px;
  max-width: 500px;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: 'Georgia', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--retro-brown);
  margin-bottom: 12px;
}

.rating {
  color: var(--retro-orange);
  font-size: 20px;
  margin-bottom: 0;
}

/* LOCATION SECTION */
.location {
  background: var(--retro-cream);
  padding: 60px 20px;
  text-align: center;
}

.contact-info-card {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background: #fff;
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 5px 5px 0px var(--retro-beige);
}

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

/* EMERGENCY SERVICE */
.emergency-service {
  background: linear-gradient(135deg, #ff8c42 0%, #d2691e 100%);
  padding: 60px 20px;
  text-align: center;
  border: 4px solid var(--retro-brown);
}

.emergency-service h2,
.emergency-service p {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-emergency {
  background: linear-gradient(135deg, #ff8c42 0%, #d2691e 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px double var(--retro-brown);
}

.hero-emergency h1 {
  color: #fff;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-emergency p {
  color: #fff;
  font-size: 18px;
}

.emergency-badge {
  display: inline-block;
  padding: 12px 24px;
  background: var(--retro-brown);
  color: #fff;
  border: 3px solid #fff;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 20px;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid var(--retro-brown);
}

.cta-final h2,
.cta-section h2 {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.cta-final p,
.cta-section p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* PRICING TABLE */
.pricing-table {
  background: var(--retro-cream);
  padding: 60px 20px;
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  box-shadow: 5px 5px 0px var(--accent-color);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--accent-color);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--retro-brown);
}

.pricing-card .price {
  font-family: 'Georgia', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--retro-orange);
  margin-bottom: 24px;
}

.pricing-card ul {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--retro-green);
  font-weight: 700;
}

/* COMPANY STORY */
.company-story {
  background: #fff;
  padding: 60px 20px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 17px;
  line-height: 1.8;
}

/* MISSION & VALUES */
.mission-values {
  background: var(--retro-cream);
  padding: 60px 20px;
}

.mission-statement {
  font-size: 22px;
  font-family: 'Georgia', serif;
  font-style: italic;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--retro-brown);
  padding: 24px;
  background: #fff;
  border: 3px dashed var(--primary-color);
  border-radius: 12px;
}

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  padding: 24px;
}

.value-item img {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
  filter: sepia(40%) saturate(80%);
}

/* TEAM SECTION */
.team {
  background: #fff;
  padding: 60px 20px;
}

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

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  padding: 24px;
  background: var(--retro-cream);
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 4px 4px 0px var(--retro-beige);
}

.team-member img {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  filter: sepia(50%);
}

/* STATS SECTION */
.stats {
  background: linear-gradient(135deg, #d2691e 0%, #8b4513 100%);
  padding: 60px 20px;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 3px solid var(--retro-brown);
  border-radius: 12px;
  box-shadow: 4px 4px 0px rgba(93, 78, 55, 0.5);
}

.stat-item h3 {
  font-size: 48px;
  color: var(--retro-orange);
  margin-bottom: 8px;
}

.stat-item p {
  font-size: 16px;
  color: var(--retro-brown);
  margin-bottom: 0;
  font-weight: 600;
}

/* FAQ SECTION */
.faq {
  background: #fff;
  padding: 60px 20px;
}

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

.faq-item {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 24px;
  background: var(--retro-cream);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  border-left: 6px solid var(--retro-orange);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--retro-brown);
}

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

/* CONTACT SECTIONS */
.contact-options {
  background: var(--retro-cream);
  padding: 60px 20px;
}

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

.method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 240px;
  max-width: 280px;
  padding: 32px;
  background: #fff;
  border: 3px solid var(--secondary-color);
  border-radius: 12px;
  box-shadow: 5px 5px 0px var(--retro-beige);
}

.method img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: sepia(40%);
}

.response-time {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--retro-orange);
  padding: 16px;
  background: #fff;
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info {
  background: #fff;
  padding: 60px 20px;
}

.info-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: var(--retro-cream);
  border: 3px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 5px 5px 0px var(--retro-beige);
}

.info-card p {
  margin-bottom: 24px;
  font-size: 16px;
}

/* SERVICE AREA */
.service-area {
  background: var(--retro-cream);
  padding: 60px 20px;
}

.area-list {
  max-width: 600px;
  margin: 24px auto 0;
  list-style: none;
  padding: 0;
}

.area-list li {
  padding: 12px 16px 12px 40px;
  background: #fff;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
}

.area-list li::before {
  content: '📍';
  position: absolute;
  left: 12px;
  font-size: 18px;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p,
.legal-content ul {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cert-list {
  max-width: 700px;
  margin: 24px auto;
  list-style: none;
  padding: 0;
}

.cert-list li {
  padding: 12px 16px 12px 40px;
  background: var(--retro-cream);
  border-left: 4px solid var(--retro-green);
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--retro-green);
  font-weight: 700;
  font-size: 18px;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #fff;
  color: var(--retro-green);
  font-size: 64px;
  border: 5px solid var(--retro-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(139, 149, 86, 0.3);
}

.confirmation-message {
  font-size: 20px;
  color: var(--retro-brown);
  margin-bottom: 16px;
}

.email-confirmation {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 32px;
}

/* LISTS - VINTAGE STYLE */
.includes-list,
.tips-list {
  max-width: 700px;
  margin: 24px auto;
  list-style: none;
  padding: 0;
}

.includes-list li,
.tips-list li {
  padding: 12px 16px 12px 40px;
  background: #fff;
  border: 2px solid var(--retro-beige);
  border-left: 4px solid var(--retro-orange);
  border-radius: 6px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
}

.includes-list li::before,
.tips-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--retro-green);
  font-weight: 700;
  font-size: 18px;
}

/* SITUATIONS & BENEFITS GRIDS */
.situations-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.situation-item,
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  padding: 24px;
  background: #fff;
  border: 3px solid var(--retro-orange);
  border-radius: 12px;
  box-shadow: 4px 4px 0px var(--retro-beige);
}

.situation-item img,
.benefit-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  filter: sepia(40%);
}

.situation-item p,
.benefit-item p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 0;
  font-weight: 600;
}

/* HIGHLIGHT & WARNING */
.highlight {
  display: block;
  padding: 16px;
  background: var(--accent-color);
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--retro-brown);
  margin-top: 24px;
}

.warning {
  display: block;
  padding: 16px;
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-left: 6px solid #ff8c42;
  border-radius: 6px;
  color: var(--retro-brown);
  font-weight: 600;
  margin-top: 24px;
}

/* EMERGENCY PRICING & AVAILABILITY */
.emergency-pricing,
.emergency-availability {
  background: var(--retro-cream);
  padding: 60px 20px;
}

.emergency-situations {
  background: #fff;
  padding: 60px 20px;
}

.emergency-process {
  background: var(--retro-cream);
  padding: 60px 20px;
}

.emergency-tips {
  background: #fff;
  padding: 60px 20px;
}

/* FOOTER - VINTAGE STYLE */
footer {
  background: linear-gradient(180deg, #5d4e37 0%, #3a2a1a 100%);
  color: var(--retro-cream);
  padding: 60px 20px 24px;
  border-top: 6px double var(--retro-orange);
}

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

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

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

.tagline {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 0;
}

footer h4 {
  color: var(--retro-orange);
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--retro-orange);
  padding-bottom: 8px;
}

footer p {
  font-size: 14px;
  color: var(--retro-cream);
  margin-bottom: 12px;
  line-height: 1.6;
}

footer a {
  display: block;
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--retro-orange);
  padding-left: 8px;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(232, 220, 196, 0.3);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--retro-beige);
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER - VINTAGE STYLE */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #5d4e37 0%, #3a2a1a 100%);
  border-top: 4px solid var(--retro-orange);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(139, 69, 19, 0.4);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-banner p {
  color: var(--retro-cream);
  font-size: 14px;
  margin-bottom: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-family: 'Georgia', serif;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--retro-orange);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: var(--retro-orange);
  color: #fff;
}

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

.cookie-reject {
  background: transparent;
  color: var(--retro-cream);
}

.cookie-reject:hover {
  background: rgba(255, 251, 240, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--accent-color);
}

.cookie-settings:hover {
  background: rgba(255, 251, 240, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(58, 42, 26, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: var(--retro-cream);
  border: 4px solid var(--primary-color);
  border-radius: 12px;
  box-shadow: 8px 8px 0px var(--retro-brown);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.cookie-modal h2 {
  color: var(--retro-brown);
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  background: #fff;
  border: 2px solid var(--retro-beige);
  border-left: 4px solid var(--retro-orange);
  border-radius: 6px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--retro-green);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--retro-brown);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Hide desktop CTA button on mobile */
  header .cta-button {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .hero-internal h1 {
    font-size: 32px;
  }
  
  /* Section padding */
  section,
  .section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero-internal {
    padding: 40px 16px 32px;
  }
  
  /* Grid adjustments */
  .usps-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .stats-grid,
  .pricing-grid,
  .contact-methods,
  .situations-grid,
  .benefits-grid {
    gap: 20px;
  }
  
  /* Card width adjustments */
  .usp-item,
  .service-card,
  .service-card-expanded,
  .pricing-card,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Step layout */
  .step {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-buttons button {
    flex: 1 1 auto;
  }
  
  /* Buttons */
  .hero-actions,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary,
  .cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  /* Card adjustments */
  .usp-item,
  .service-card,
  .service-card-expanded {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (min-width: 1025px) {
  /* Desktop: hide mobile menu toggle */
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Ensure mobile menu is hidden */
  .mobile-menu {
    display: none;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  section {
    page-break-inside: avoid;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
*:focus {
  outline: 3px solid var(--retro-orange);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid var(--retro-orange);
  outline-offset: 2px;
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: #fff;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
  
  button,
  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
}

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

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

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

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

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

/* END OF STYLES */