/* ========================================
   MYSTERIOUS HOLLOWS IMMOBILIEN - VINTAGE RETRO DESIGN
   CSS Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: #3d2817;
  background-color: #f5ebe0;
  overflow-x: hidden;
}

/* ========================================
   VINTAGE RETRO TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C5F7C;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 36px;
  letter-spacing: 1.5px;
}

h3 {
  font-size: 28px;
  letter-spacing: 1px;
}

h4 {
  font-size: 22px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a3728;
}

a {
  color: #8B4513;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2C5F7C;
  text-decoration: underline;
}

ul {
  list-style: none;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

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

/* ========================================
   VINTAGE RETRO BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 3px solid #8B4513;
  border-radius: 0;
  background-color: #E8D5C4;
  color: #3d2817;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background-color: #8B4513;
  color: #f5ebe0;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.4);
}

.btn-primary {
  background-color: #2C5F7C;
  border-color: #2C5F7C;
  color: #f5ebe0;
  box-shadow: 4px 4px 0 rgba(44, 95, 124, 0.3);
}

.btn-primary:hover {
  background-color: #8B4513;
  border-color: #8B4513;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.4);
}

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

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #f5ebe0;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
  background: linear-gradient(135deg, #2C5F7C 0%, #3d7293 100%);
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-bottom: 4px solid #8B4513;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  color: #f5ebe0;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

.nav-menu a:hover {
  background-color: rgba(232, 213, 196, 0.1);
  text-decoration: none;
}

/* ========================================
   MOBILE MENU
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #2C5F7C;
  color: #f5ebe0;
  border: 3px solid #8B4513;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #8B4513;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F7C 0%, #3d7293 100%);
  box-shadow: -4px 0 12px rgba(0,0,0,0.3);
  z-index: 1999;
  transition: right 0.4s ease;
  padding: 80px 30px 30px;
  border-left: 4px solid #8B4513;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #8B4513;
  color: #f5ebe0;
  border: 3px solid #f5ebe0;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #f5ebe0;
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background-color: rgba(232, 213, 196, 0.1);
}

.mobile-nav a:hover {
  border-left-color: #E8D5C4;
  background-color: rgba(232, 213, 196, 0.2);
  padding-left: 28px;
  text-decoration: none;
}

/* ========================================
   HERO SECTION - VINTAGE RETRO STYLE
   ======================================== */

.hero {
  background: linear-gradient(135deg, #E8D5C4 0%, #d4c4b0 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #8B4513;
  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.05) 10px, rgba(139,69,19,0.05) 20px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(44,95,124,0.05) 10px, rgba(44,95,124,0.05) 20px);
  pointer-events: none;
}

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

.hero h1 {
  color: #2C5F7C;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.subheadline {
  font-size: 20px;
  color: #4a3728;
  margin-bottom: 32px;
  font-style: italic;
  line-height: 1.6;
}

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

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

.trust-badges span {
  font-family: 'Georgia', serif;
  font-size: 14px;
  color: #3d2817;
  padding: 10px 20px;
  background-color: rgba(255,255,255,0.5);
  border: 2px solid #8B4513;
  box-shadow: 2px 2px 0 rgba(139, 69, 19, 0.2);
}

/* ========================================
   SECTION STYLES - VINTAGE PATTERNS
   ======================================== */

.problem-solution,
.services-overview,
.process-preview,
.location-highlight,
.testimonials,
.cta-section,
.process-overview,
.district-overview,
.financing-basics,
.company-story,
.mission-vision,
.contact-options {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.problem-solution {
  background-color: #fff;
  border-top: 4px solid #2C5F7C;
  border-bottom: 4px solid #2C5F7C;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 24px;
}

.problem-solution p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

.benefits {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.benefits li {
  padding: 16px 28px;
  background-color: #E8D5C4;
  border: 3px solid #8B4513;
  font-family: 'Georgia', serif;
  font-size: 16px;
  font-weight: 600;
  color: #3d2817;
  box-shadow: 3px 3px 0 rgba(139, 69, 19, 0.2);
}

/* ========================================
   SERVICES GRID - VINTAGE CARDS
   ======================================== */

.services-overview {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8ddd0 100%);
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  background-color: #fff;
  border: 4px solid #8B4513;
  padding: 32px 24px;
  box-shadow: 6px 6px 0 rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px dashed #2C5F7C;
  opacity: 0.3;
  pointer-events: none;
}

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

.service-card h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  margin-bottom: 16px;
  color: #4a3728;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

.service-card .btn {
  margin-top: 20px;
  width: 100%;
}

/* ========================================
   PROCESS STEPS - TIMELINE STYLE
   ======================================== */

.process-preview {
  background-color: #2C5F7C;
  color: #f5ebe0;
}

.process-preview h2 {
  text-align: center;
  color: #E8D5C4;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 200px;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background-color: rgba(232, 213, 196, 0.1);
  border: 3px solid #E8D5C4;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background-color: #8B4513;
  border: 3px solid #E8D5C4;
  border-radius: 50%;
}

.step h3 {
  color: #E8D5C4;
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.step p {
  color: #f5ebe0;
  font-size: 14px;
}

.process-preview .btn {
  display: block;
  max-width: 400px;
  margin: 40px auto 0;
}

/* ========================================
   LOCATION HIGHLIGHT
   ======================================== */

.location-highlight {
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #f5ebe0;
  text-align: center;
  padding: 60px 20px;
  border-top: 6px solid #E8D5C4;
  border-bottom: 6px solid #E8D5C4;
}

.location-highlight h2 {
  color: #E8D5C4;
  margin-bottom: 16px;
}

.location-highlight p {
  color: #f5ebe0;
  font-size: 20px;
  margin-bottom: 32px;
}

/* ========================================
   TESTIMONIALS - VINTAGE CARDS
   ======================================== */

.testimonials {
  background-color: #fff;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background-color: #E8D5C4;
  padding: 32px;
  border: 4px solid #8B4513;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.2);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #8B4513;
  font-family: 'Georgia', serif;
  opacity: 0.3;
}

.testimonial-card p {
  font-style: italic;
  color: #3d2817;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F7C;
  font-style: normal;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #8B4513;
  font-size: 18px;
  margin: 0;
}

.trust-indicator {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #2C5F7C;
  margin-top: 24px;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
  background: linear-gradient(135deg, #2C5F7C 0%, #3d7293 100%);
  color: #f5ebe0;
  text-align: center;
  padding: 80px 20px;
  border-top: 6px solid #8B4513;
  border-bottom: 6px solid #8B4513;
}

.cta-section h2 {
  color: #E8D5C4;
  margin-bottom: 24px;
}

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

.contact-info {
  margin-top: 40px;
}

.contact-info p {
  color: #E8D5C4;
  margin-bottom: 8px;
}

/* ========================================
   DISTRICTS SECTION
   ======================================== */

.district-card {
  background-color: #fff;
  border: 4px solid #8B4513;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.2);
  transition: all 0.3s ease;
}

.district-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(139, 69, 19, 0.3);
}

.district-card h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

.district-card .tagline {
  font-style: italic;
  color: #8B4513;
  font-size: 18px;
  margin-bottom: 16px;
}

.district-card p {
  color: #4a3728;
  margin-bottom: 12px;
}

.district-card strong {
  color: #2C5F7C;
}

/* ========================================
   PROCESS DETAIL STEPS
   ======================================== */

.step-detail {
  background-color: #fff;
  border-left: 6px solid #8B4513;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 3px 3px 0 rgba(139, 69, 19, 0.1);
}

.step-detail h2 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.step-detail ul {
  margin: 20px 0;
  padding-left: 24px;
}

.step-detail ul li {
  list-style: disc;
  color: #4a3728;
  margin-bottom: 8px;
  padding-left: 8px;
}

.step-detail ul li::marker {
  color: #8B4513;
}

/* ========================================
   SERVICE DETAIL PAGES
   ======================================== */

.service-detail {
  background-color: #fff;
  border: 4px solid #2C5F7C;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 5px 5px 0 rgba(44, 95, 124, 0.2);
}

.service-detail h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  font-weight: 700;
  color: #8B4513;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* ========================================
   FINANCING SECTIONS
   ======================================== */

.loan-type {
  background-color: #E8D5C4;
  border: 3px solid #8B4513;
  padding: 24px;
  margin-bottom: 24px;
}

.loan-type h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

/* ========================================
   COST BREAKDOWN
   ======================================== */

.cost-breakdown {
  background-color: #fff;
  padding: 40px 20px;
  border-top: 4px solid #8B4513;
  border-bottom: 4px solid #8B4513;
}

.cost-breakdown h2 {
  text-align: center;
  margin-bottom: 32px;
}

.cost-breakdown ul {
  max-width: 600px;
  margin: 0 auto;
}

.cost-breakdown ul li {
  background-color: #E8D5C4;
  padding: 16px 24px;
  margin-bottom: 16px;
  border-left: 6px solid #8B4513;
  font-size: 16px;
  color: #3d2817;
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-member {
  background-color: #fff;
  border: 4px solid #2C5F7C;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 4px 4px 0 rgba(44, 95, 124, 0.2);
}

.team-member h3 {
  color: #2C5F7C;
  margin-bottom: 8px;
}

.team-member p:first-of-type {
  color: #8B4513;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 12px;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline li {
  background-color: #E8D5C4;
  padding: 16px 24px;
  margin-bottom: 16px;
  border-left: 6px solid #2C5F7C;
  position: relative;
  padding-left: 50px;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #8B4513;
  border: 3px solid #2C5F7C;
  border-radius: 50%;
}

/* ========================================
   STATISTICS
   ======================================== */

.statistics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.statistics li {
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  background-color: #2C5F7C;
  color: #f5ebe0;
  padding: 24px;
  text-align: center;
  border: 3px solid #8B4513;
  box-shadow: 4px 4px 0 rgba(139, 69, 19, 0.2);
  font-size: 18px;
  font-weight: 600;
}

/* ========================================
   CONTACT FORMS & OPTIONS
   ======================================== */

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

.contact-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  background-color: #fff;
  border: 4px solid #8B4513;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(139, 69, 19, 0.2);
}

.contact-option h3 {
  color: #2C5F7C;
  margin-bottom: 16px;
}

.form-placeholder {
  background-color: #E8D5C4;
  border: 4px solid #8B4513;
  padding: 48px 32px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #3d2817;
}

/* ========================================
   LEGAL CONTENT
   ======================================== */

.legal-content {
  background-color: #fff;
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content ul {
  padding-left: 24px;
  margin: 16px 0;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #4a3728;
}

.legal-content ul li::marker {
  color: #8B4513;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #3d7293 100%);
  color: #f5ebe0;
  text-align: center;
  padding: 80px 20px;
  border-bottom: 6px solid #8B4513;
}

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

.thank-you-hero p {
  color: #f5ebe0;
  font-size: 20px;
}

.next-steps,
.helpful-resources,
.contact-alternative,
.testimonial-single {
  padding: 40px 20px;
}

.next-steps ul,
.helpful-resources ul {
  max-width: 600px;
  margin: 24px auto;
  padding-left: 24px;
}

.next-steps ul li,
.helpful-resources ul li {
  list-style: disc;
  margin-bottom: 12px;
  color: #4a3728;
  font-size: 16px;
}

.next-steps ul li::marker,
.helpful-resources ul li::marker {
  color: #8B4513;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */

.guarantee {
  background-color: #E8D5C4;
  padding: 40px 20px;
  border-top: 4px solid #2C5F7C;
  border-bottom: 4px solid #2C5F7C;
}

.guarantee h2 {
  text-align: center;
  margin-bottom: 32px;
}

.guarantee ul {
  max-width: 700px;
  margin: 0 auto;
  padding-left: 24px;
}

.guarantee ul li {
  list-style: disc;
  margin-bottom: 16px;
  font-size: 18px;
  color: #3d2817;
}

.guarantee ul li::marker {
  color: #8B4513;
}

/* ========================================
   FOOTER - VINTAGE STYLE
   ======================================== */

footer {
  background: linear-gradient(135deg, #3d2817 0%, #4a3728 100%);
  color: #E8D5C4;
  padding: 48px 20px 24px;
  border-top: 6px solid #8B4513;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
}

.footer-col h4 {
  color: #E8D5C4;
  margin-bottom: 16px;
  font-size: 18px;
  border-bottom: 2px solid #8B4513;
  padding-bottom: 8px;
}

.footer-col p {
  color: #d4c4b0;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col ul {
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #d4c4b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #E8D5C4;
  padding-left: 4px;
}

.copyright {
  text-align: center;
  color: #a89580;
  font-size: 14px;
  border-top: 1px solid rgba(139, 69, 19, 0.3);
  padding-top: 24px;
  margin-top: 32px;
}

/* ========================================
   COOKIE CONSENT BANNER - VINTAGE STYLE
   ======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #3d2817 0%, #4a3728 100%);
  color: #E8D5C4;
  padding: 24px 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  z-index: 1500;
  border-top: 4px solid #8B4513;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
  color: #d4c4b0;
  font-size: 14px;
}

.cookie-text p {
  color: #f5ebe0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

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

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

.cookie-modal-content {
  background-color: #f5ebe0;
  border: 6px solid #8B4513;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  box-shadow: 8px 8px 0 rgba(139, 69, 19, 0.3);
  position: relative;
}

.cookie-modal h2 {
  color: #2C5F7C;
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #fff;
  border: 3px solid #8B4513;
  padding: 16px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #2C5F7C;
  font-size: 18px;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

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

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  /* Navigation */
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  /* Cards */
  .service-card,
  .district-card,
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Process Steps */
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .footer-col {
    flex: 1 1 100%;
  }

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

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

  .cookie-buttons .btn {
    width: 100%;
  }

  /* Statistics */
  .statistics li {
    flex: 1 1 100%;
  }

  /* Contact Grid */
  .contact-option {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card {
    flex: 1 1 calc(50% - 24px);
  }

  .step {
    flex: 1 1 calc(33.333% - 24px);
  }

  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

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

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

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

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

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

/* ========================================
   ANIMATIONS
   ======================================== */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

/* Selection color */
::selection {
  background-color: #8B4513;
  color: #f5ebe0;
}

::-moz-selection {
  background-color: #8B4513;
  color: #f5ebe0;
}