/* ========================================
   SEO GOESLING - GLOBAL STYLES
   Elegantes, warmes Design
   ======================================== */

/* CSS Variables - Warmes, elegantes Farbschema */
:root {
  /* Brand Colors - Warme, edle Töne */
  --color-dark-blue: #1E2A3A;
  --color-gold: #C9A962;
  --color-gold-light: #D4B978;
  --color-gold-dark: #B5984F;
  --color-white: #FFFFFF;
  --color-cream: #FAF8F5;
  --color-warm-gray: #6B6B6B;
  --color-light-gray: #F5F3F0;
  --color-text: #2D2D2D;
  --color-text-light: #5A5A5A;
  --color-charcoal: #3D3D3D;
  
  /* Gradients - Warm und edel */
  --gradient-hero: linear-gradient(145deg, #1E2A3A 0%, #2D3A4A 50%, #1A2535 100%);
  --gradient-gold: linear-gradient(145deg, #C9A962 0%, #D4B978 50%, #B5984F 100%);
  --gradient-warm: linear-gradient(180deg, #FAF8F5 0%, #F5F3F0 100%);
  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Playfair Display', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows - Weicher, eleganter */
  --shadow-sm: 0 2px 8px rgba(30, 42, 58, 0.06);
  --shadow-md: 0 4px 20px rgba(30, 42, 58, 0.08);
  --shadow-lg: 0 8px 40px rgba(30, 42, 58, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.8;
  background-color: var(--color-cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-dark-blue);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
}

a {
  color: var(--color-gold-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--color-dark-blue);
}

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

ul, ol {
  list-style: none;
}

/* ========================================
   ACCESSIBILITY - BARRIEREFREIHEIT
   ======================================== */

/* Skip Link für Tastaturnutzer */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: 1rem 2rem;
  z-index: 9999;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Screenreader-only Text (visuell versteckt, aber für Screenreader sichtbar) */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Fokus-Indikatoren für alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Fokus für Navigation */
.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Reduced Motion - Respektierung von Benutzereinstellungen */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  :root {
    --color-text: #000000;
    --color-text-light: #333333;
    --color-dark-blue: #000000;
    --color-gold: #B8860B;
    --color-gold-dark: #8B6914;
  }
  
  .btn-primary {
    border: 2px solid #000;
  }
  
  .btn-secondary {
    border: 2px solid #000;
  }
}

/* Utility Classes */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--spacing-lg) 0;
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--color-white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-light {
  background-color: var(--color-light-gray);
}

.section-cream {
  background-color: var(--color-cream);
}

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

/* Buttons - Eleganter Stil */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--color-dark-blue);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 98, 0.3);
  color: var(--color-dark-blue);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--color-gold);
}

.btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-dark-blue);
}

.btn-dark {
  background: var(--color-dark-blue);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

/* Button Fokus-Styles */
.btn:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.3);
}

/* Formular-Elemente Barrierefreiheit */
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--color-dark-blue);
}

.form-group label .required {
  color: #C41E3A;
  margin-left: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1rem;
  background: var(--color-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.15);
  outline: none;
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #C41E3A;
}

input:invalid:not(:placeholder-shown):focus,
textarea:invalid:not(:placeholder-shown):focus {
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.15);
}

/* Fehlermeldungen */
.error-message {
  color: #C41E3A;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Erfolgsmeldungen */
.success-message {
  color: #2D7A3E;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Accordion Barrierefreiheit */
.accordion-header {
  width: 100%;
  padding: 1.25rem;
  background: var(--color-white);
  border: none;
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-dark-blue);
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background: var(--color-cream);
}

.accordion-header:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
  position: relative;
  z-index: 1;
}

.accordion-header[aria-expanded="true"] {
  background: var(--color-cream);
}

/* Mobile Toggle Barrierefreiheit */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.mobile-toggle:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
}

/* Karten und Links */
.service-card,
.region-card,
.location-item {
  position: relative;
}

.service-card:focus-within,
.region-card:focus-within {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-md);
}

/* Link unterstrichen für bessere Sichtbarkeit */
.content-section a,
article a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.content-section a:hover,
article a:hover {
  text-decoration-thickness: 2px;
}

/* Gold Accent */
.gold-accent {
  color: var(--color-gold);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-md);
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-warm-gray);
  font-size: 1.1rem;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.75);
}

/* Cards - Eleganter mit warmem Schatten */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.15);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-gold);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-dark-blue);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flex */
.flex {
  display: flex;
}

.flex-wrap { flex-wrap: wrap; }
.flex-center { justify-content: center; align-items: center; }
.flex-between { justify-content: space-between; align-items: center; }
.flex-column { flex-direction: column; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }

/* Navigation - Eleganter */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 248, 245, 0.98);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--color-dark-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-dark-blue);
  letter-spacing: -0.01em;
}

.logo-text span {
  color: var(--color-warm-gray);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--color-charcoal);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-dark-blue);
}

.nav-cta {
  background: var(--gradient-gold);
  color: var(--color-dark-blue);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-normal);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201, 169, 98, 0.35);
  color: var(--color-dark-blue);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2.5px;
  background: var(--color-dark-blue);
  transition: var(--transition-fast);
  border-radius: 2px;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 2.5rem;
    gap: 1.75rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    transition: var(--transition-normal);
  }
  
  .nav-menu.active {
    transform: translateY(0);
  }
}

/* Hero Section - Eleganter */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 85px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(201, 169, 98, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(250, 248, 245, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.75rem;
  line-height: 1.15;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 4.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.stat-item h3 {
  font-size: 2.75rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.stat-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* USP Section */
.usp-section {
  background: var(--gradient-gold);
  padding: var(--spacing-md) 0;
  text-align: center;
}

.usp-section h2 {
  color: var(--color-dark-blue);
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: rgba(201, 169, 98, 0.2);
}

.service-card .card-icon {
  margin: 0 auto 1.75rem;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--color-dark-blue);
}

.service-card p {
  color: var(--color-warm-gray);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.service-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--color-gold-dark);
}

/* KI SEO Section */
.ki-section {
  background: linear-gradient(145deg, #1A2535 0%, #1E2A3A 50%, #253545 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.ki-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.ki-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.ki-features {
  display: grid;
  gap: 1.75rem;
}

.ki-feature {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.ki-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 169, 98, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ki-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
}

.ki-feature h4 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ki-feature p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 992px) {
  .ki-content {
    grid-template-columns: 1fr;
  }
}

/* Process Section */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 50%, var(--color-gold) 100%);
  opacity: 0.25;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-dark-blue);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  color: var(--color-dark-blue);
}

.process-step p {
  color: var(--color-warm-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* FAQ / Accordion Section */
.faq-section {
  background: var(--color-light-gray);
}

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

.accordion-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  transition: all var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(201, 169, 98, 0.03);
}

.accordion-header svg {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.active .accordion-header svg {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-body {
  padding: 0 2rem 1.75rem;
  color: var(--color-warm-gray);
  line-height: 1.8;
}

.accordion-body p {
  margin-bottom: 0.75rem;
}

.accordion-body p:last-child {
  margin-bottom: 0;
}

/* Expandable Text Section */
.expandable-section {
  background: var(--color-cream);
}

.expandable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.expandable-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.expandable-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201, 169, 98, 0.15);
}

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

.expandable-card h4 {
  font-size: 1.05rem;
  color: var(--color-dark-blue);
  margin: 0;
}

.expandable-card svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.expandable-card.active svg {
  transform: rotate(45deg);
}

.expandable-card-content {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.expandable-card.active .expandable-card-content {
  max-height: 300px;
  padding-top: 1rem;
}

.expandable-card-content p {
  color: var(--color-warm-gray);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .expandable-grid {
    grid-template-columns: 1fr;
  }
}

/* Local Map Section */
.map-section {
  background: var(--color-light-gray);
}

.map-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.map-container {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--color-dark-blue);
  transition: all var(--transition-fast);
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.location-item:hover {
  background: var(--color-gold);
  color: var(--color-dark-blue);
  border-color: var(--color-gold);
  transform: translateX(4px);
}

.location-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  transition: all var(--transition-fast);
}

.location-item:hover svg {
  color: var(--color-dark-blue);
}

@media (max-width: 992px) {
  .map-content {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 320px;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gradient-hero);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 98, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Contact Form - Eleganter */
.contact-form {
  max-width: 650px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 98, 0.1);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-dark-blue);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid #E8E4DE;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  transition: all var(--transition-fast);
  background: var(--color-cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.form-group textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2rem;
  }
}

/* Footer - Eleganter */
.footer {
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: var(--spacing-md);
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  margin: 1.5rem 0;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.footer-social a:hover svg {
  color: var(--color-dark-blue);
}

.footer h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.125rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Page Header */
.page-header {
  background: var(--gradient-hero);
  color: var(--color-white);
  padding: 160px 0 90px;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255,255,255,0.65);
}

.breadcrumbs a:hover {
  color: var(--color-gold);
}

.breadcrumbs span {
  color: rgba(255,255,255,0.4);
}

.breadcrumbs .current {
  color: var(--color-gold);
}

/* Content Section */
.content-section {
  padding: var(--spacing-lg) 0;
}

.content-section h2 {
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
}

.content-section h3 {
  margin: 2rem 0 1rem;
  color: var(--color-charcoal);
}

.content-section p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.content-section ul,
.content-section ol {
  margin: 1.25rem 0 1.75rem 1.5rem;
}

.content-section ul li {
  list-style: disc;
  margin-bottom: 0.625rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

.content-section ol li {
  list-style: decimal;
  margin-bottom: 0.625rem;
  color: var(--color-warm-gray);
  line-height: 1.7;
}

.content-section strong {
  color: var(--color-dark-blue);
  font-weight: 600;
}

.highlight-box {
  background: linear-gradient(135deg, var(--color-light-gray) 0%, var(--color-cream) 100%);
  border-left: 3px solid var(--color-gold);
  padding: 2rem;
  margin: 2.5rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}

.highlight-box h4 {
  margin-bottom: 0.875rem;
  color: var(--color-dark-blue);
  font-size: 1.15rem;
}

.highlight-box p {
  margin-bottom: 0;
  color: var(--color-warm-gray);
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 98, 0.15);
}

.blog-image {
  height: 200px;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image svg {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
}

.blog-content {
  padding: 1.75rem;
}

.blog-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--color-warm-gray);
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--color-dark-blue);
}

.blog-card p {
  color: var(--color-warm-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Reference Cards */
.reference-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2.5rem;
  border: 1px solid rgba(201, 169, 98, 0.08);
}

.reference-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reference-company h3 {
  margin-bottom: 0.25rem;
  color: var(--color-dark-blue);
}

.reference-company p {
  color: var(--color-warm-gray);
  font-size: 0.95rem;
  margin: 0;
}

.reference-results {
  display: flex;
  gap: 2.5rem;
}

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

.result-item .number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  color: var(--color-gold);
}

.result-item .label {
  font-size: 0.8rem;
  color: var(--color-warm-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Testimonial */
.testimonial {
  background: var(--gradient-warm);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-top: 1.75rem;
  border-left: 3px solid var(--color-gold);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.25rem;
  color: var(--color-charcoal);
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--color-dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-gold);
  font-size: 0.95rem;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--color-dark-blue);
}

.testimonial-author p {
  font-size: 0.85rem;
  color: var(--color-warm-gray);
  margin: 0;
  font-style: normal;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-gold);
  color: var(--color-dark-blue);
  padding: 10px 16px;
  text-decoration: none;
  z-index: 100;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* Focus Styles (Accessibility) */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .navbar,
  .footer,
  .hero-buttons,
  .nav-cta {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* ========================================
   ADDITIONAL ACCESSIBILITY STYLES
   ======================================== */

/* Form Error States */
input.error,
textarea.error,
select.error {
  border-color: #C41E3A;
  background-color: rgba(196, 30, 58, 0.05);
}

input.error:focus,
textarea.error:focus,
select.error:focus {
  border-color: #C41E3A;
  box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.15);
}

/* Checkbox and Radio Accessibility */
input[type="checkbox"],
input[type="radio"] {
  min-width: 1.2rem;
  min-height: 1.2rem;
  cursor: pointer;
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* Figure and Figcaption */
figure {
  margin: 0;
}

figcaption {
  font-size: 0.875rem;
  color: var(--color-warm-gray);
  margin-top: 0.5rem;
}

/* Service Card Focus Within */
.service-card:focus-within,
.region-card:focus-within,
.blog-card:focus-within {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

/* Service Link Focus */
.service-link:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Navigation Focus */
.nav-link:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Footer Link Focus */
.footer-links a:focus-visible,
.footer-legal a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Breadcrumb Focus */
.breadcrumbs a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Content Section Link Focus */
.content-section a:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Mobile Toggle Focus */
.mobile-toggle:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Accordion Focus */
.accordion-header:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
  position: relative;
  z-index: 1;
}

/* Expandable Card Focus */
.expandable-header:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: -3px;
  position: relative;
  z-index: 1;
}

/* Location Item Focus */
.location-item:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: var(--radius-md);
}

/* Logo Focus */
.logo:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

/* Button Focus Enhancement */
.btn:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(201, 169, 98, 0.3);
}

/* High Contrast Mode - Additional Support */
@media (prefers-contrast: high) {
  .btn-primary {
    border: 3px solid #000 !important;
  }
  
  .btn-secondary {
    border: 3px solid #fff !important;
  }
  
  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  select:focus-visible {
    outline: 4px solid #000 !important;
    outline-offset: 2px !important;
  }
  
  .service-card,
  .region-card,
  .blog-card {
    border: 2px solid #000 !important;
  }
}

/* Target Offset for Skip Links */
:target {
  scroll-margin-top: 100px;
}

/* Reduced Motion for Users Who Prefer It */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  .accordion-content,
  .expandable-card-content {
    transition: none !important;
  }
}
