/* ============================================
   CLARISPA RECHTSBERATUNG - INDUSTRIAL MODERN STYLE
   Complete CSS Styles for All Pages
   Design Style: Industrial Modern Aesthetic
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  background-color: #1a1a1a;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #e0e0e0;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 36px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 24px;
  color: #d4af37;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #b0b0b0;
}

a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  color: #f0c050;
  border-bottom: 1px solid #f0c050;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #b0b0b0;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #e0e0e0;
}

em {
  font-style: italic;
  color: #c0c0c0;
}

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

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background-color: #242424;
  border-left: 4px solid #8B4513;
}

/* ============================================
   HEADER - INDUSTRIAL METALLIC
   ============================================ */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #8B4513;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
  transition: transform 0.3s ease;
}

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

/* ============================================
   NAVIGATION - INDUSTRIAL STYLE
   ============================================ */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #b0b0b0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* ============================================
   MOBILE MENU - SLIDE-IN INDUSTRIAL
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  border: 2px solid #d4af37;
  color: #fff;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #a0522d 0%, #8B4513 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  border-left: 4px solid #8B4513;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #b0b0b0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: rgba(42, 42, 42, 0.5);
  border-radius: 4px;
}

.mobile-nav a:hover {
  color: #d4af37;
  border-left-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(8px);
}

/* ============================================
   BUTTONS - INDUSTRIAL METALLIC
   ============================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a0522d 0%, #8B4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
  border-color: #f0c050;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #d4af37;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #d4af37;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-link {
  color: #d4af37;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #d4af37;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 12px;
}

.btn-link:hover {
  color: #f0c050;
  border-bottom-color: #f0c050;
  transform: translateX(4px);
}

/* ============================================
   HERO SECTION - INDUSTRIAL DRAMATIC
   ============================================ */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #8B4513;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 69, 19, 0.05) 10px,
    rgba(139, 69, 19, 0.05) 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;
  margin-bottom: 24px;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: 20px;
  color: #c0c0c0;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

/* ============================================
   TRUST BADGES - INDUSTRIAL METRICS
   ============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: rgba(42, 42, 42, 0.8);
  border: 2px solid #8B4513;
  border-radius: 4px;
  min-width: 150px;
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.badge-number {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Merriweather', serif;
}

.badge-icon {
  font-size: 36px;
  color: #d4af37;
}

.badge-text {
  font-size: 14px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ============================================
   HERO INTERNAL - BREADCRUMB INDUSTRIAL
   ============================================ */
.hero-internal {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 60px 20px 40px;
  border-bottom: 4px solid #8B4513;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #808080;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: #d4af37;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  border-bottom-color: #d4af37;
}

.breadcrumb span {
  color: #b0b0b0;
}

/* ============================================
   SERVICES GRID - FLEXBOX INDUSTRIAL CARDS
   ============================================ */
.services-overview {
  padding: 80px 20px;
  background: #1a1a1a;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto 60px;
}

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

.service-card {
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #8B4513;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-6px);
  border-left-color: #d4af37;
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.3);
  border-color: #4a4a4a;
}

.service-card h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #b0b0b0;
  flex-grow: 1;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Merriweather', serif;
  margin-top: 12px;
  margin-bottom: 8px;
}

.service-card.highlight {
  border: 3px solid #d4af37;
  border-left: 6px solid #d4af37;
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
  position: relative;
}

.service-card.highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 4px;
}

.service-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #d4af37;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #1a1a1a;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   FEATURES GRID - INDUSTRIAL LAYOUT
   ============================================ */
.why-choose-us {
  padding: 80px 20px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  border-top: 4px solid #8B4513;
}

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

.feature {
  background: rgba(42, 42, 42, 0.8);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-top: 4px solid #8B4513;
  flex: 1 1 calc(50% - 32px);
  min-width: 260px;
  max-width: 500px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature:hover {
  border-top-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
}

.feature h3 {
  color: #d4af37;
  font-size: 20px;
}

.feature p {
  color: #b0b0b0;
}

/* ============================================
   TESTIMONIALS - INDUSTRIAL CARDS
   ============================================ */
.testimonials {
  padding: 80px 20px;
  background: #1a1a1a;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #8B4513;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.25);
  border-left-color: #d4af37;
}

.rating {
  color: #d4af37;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: #2a2a2a;
  font-style: italic;
  line-height: 1.7;
  font-size: 16px;
}

.testimonial-author {
  color: #4a4a4a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

/* ============================================
   SERVICES DETAILED - INDUSTRIAL SECTIONS
   ============================================ */
.services-detailed {
  padding: 60px 20px;
  background: #1a1a1a;
}

.intro-text {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 60px;
  line-height: 1.8;
}

.service-detail {
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  border-left: 6px solid #8B4513;
  border: 2px solid #3a3a3a;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-left-color: #d4af37;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
}

.service-detail h2 {
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detail p {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.service-details-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.service-details-list li {
  padding-left: 28px;
  position: relative;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.service-details-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
  font-size: 18px;
}

.service-detail.highlight {
  border: 3px solid #d4af37;
  border-left: 8px solid #d4af37;
  background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
}

/* ============================================
   CTA SECTIONS - INDUSTRIAL CALL-TO-ACTION
   ============================================ */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  text-align: center;
  border-top: 4px solid #d4af37;
  border-bottom: 4px solid #d4af37;
}

.cta-section h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 16px;
}

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

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

.cta-section .btn-primary {
  background: #1a1a1a;
  border-color: #d4af37;
}

.cta-section .btn-primary:hover {
  background: #2a2a2a;
  border-color: #f0c050;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.cta-section .btn-secondary:hover {
  background: #fff;
  color: #8B4513;
}

/* ============================================
   MISSION & VALUES - INDUSTRIAL BLOCKS
   ============================================ */
.mission-vision {
  padding: 80px 20px;
  background: #1a1a1a;
}

.mission-block {
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 4px;
  border-left: 6px solid #8B4513;
  border: 2px solid #3a3a3a;
}

.mission-block h2 {
  color: #d4af37;
  margin-bottom: 20px;
}

.mission-block p {
  font-size: 18px;
  color: #b0b0b0;
  line-height: 1.8;
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.value {
  background: rgba(42, 42, 42, 0.8);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-top: 4px solid #8B4513;
  flex: 1 1 calc(50% - 24px);
  min-width: 240px;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.value:hover {
  border-top-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
}

.value h3 {
  color: #d4af37;
  font-size: 20px;
  margin-bottom: 12px;
}

.value p {
  color: #b0b0b0;
  font-size: 14px;
}

/* ============================================
   TIMELINE - INDUSTRIAL HISTORY
   ============================================ */
.firm-history {
  padding: 80px 20px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  border-top: 4px solid #8B4513;
}

.firm-history h2 {
  text-align: center;
  margin-bottom: 20px;
}

.firm-history > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 18px;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.milestone {
  background: rgba(42, 42, 42, 0.8);
  padding: 24px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #8B4513;
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
}

.milestone:hover {
  border-left-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.milestone .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Merriweather', serif;
  margin-bottom: 12px;
}

.milestone p {
  color: #b0b0b0;
  font-size: 14px;
}

/* ============================================
   OFFICE LOCATION - INDUSTRIAL CONTACT
   ============================================ */
.office-location {
  padding: 80px 20px;
  background: #1a1a1a;
}

.office-location h2 {
  text-align: center;
  margin-bottom: 20px;
}

.location-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #b0b0b0;
}

.address-block {
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-left: 6px solid #8B4513;
}

.address-block p {
  color: #b0b0b0;
  margin-bottom: 16px;
  line-height: 1.8;
}

.address-block strong {
  color: #d4af37;
}

/* ============================================
   PRICING TABLE - INDUSTRIAL CARDS
   ============================================ */
.pricing-philosophy {
  padding: 60px 20px;
  background: #1a1a1a;
}

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

.pricing-philosophy p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #b0b0b0;
}

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

.benefits-list li {
  padding-left: 32px;
  position: relative;
  color: #b0b0b0;
  margin-bottom: 16px;
  font-size: 16px;
}

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

.pricing-table {
  padding: 80px 20px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  border-top: 4px solid #8B4513;
}

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

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

.pricing-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #353535 100%);
  padding: 40px 32px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-top: 4px solid #8B4513;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-top-color: #d4af37;
  box-shadow: 0 12px 32px rgba(139, 69, 19, 0.3);
}

.pricing-card h3 {
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Merriweather', serif;
  margin: 16px 0;
}

.pricing-card > p {
  color: #b0b0b0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.pricing-card ul li {
  padding-left: 24px;
  position: relative;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.pricing-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
}

.pricing-card.highlight {
  border: 3px solid #d4af37;
  border-top: 6px solid #d4af37;
  background: linear-gradient(135deg, #2d2d2d 0%, #404040 100%);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d4af37;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #1a1a1a;
}

/* ============================================
   COST EXAMPLES - INDUSTRIAL LIST
   ============================================ */
.cost-examples {
  padding: 60px 20px;
  background: #1a1a1a;
}

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

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

.cost-list li {
  background: rgba(42, 42, 42, 0.8);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #8B4513;
  color: #b0b0b0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cost-list li:hover {
  border-left-color: #d4af37;
  transform: translateX(4px);
  background: rgba(42, 42, 42, 0.9);
}

.disclaimer {
  text-align: center;
  font-size: 14px;
  color: #808080;
  font-style: italic;
  margin-top: 32px;
}

/* ============================================
   FAQ SECTION - INDUSTRIAL ACCORDION
   ============================================ */
.faq-section {
  padding: 60px 20px;
  background: #1a1a1a;
}

.faq-section h2 {
  margin-bottom: 40px;
  color: #d4af37;
  text-align: center;
}

.faq-item {
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-left: 4px solid #8B4513;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #d4af37;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(139, 69, 19, 0.2);
}

.faq-item h3 {
  color: #d4af37;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #b0b0b0;
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTIONS - INDUSTRIAL FORMS
   ============================================ */
.contact-methods {
  padding: 60px 20px;
  background: #1a1a1a;
}

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

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

.contact-method {
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-top: 4px solid #8B4513;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  border-top-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 69, 19, 0.3);
}

.contact-method h3 {
  color: #d4af37;
  margin-bottom: 16px;
}

.contact-method p {
  color: #b0b0b0;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  border-top: 4px solid #8B4513;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-section p {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #b0b0b0;
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(42, 42, 42, 0.8);
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #d4af37;
  border: 2px solid #3a3a3a;
}

.form-note p {
  color: #b0b0b0;
  text-align: left;
  margin-bottom: 12px;
}

.office-info {
  padding: 60px 20px;
  background: #1a1a1a;
}

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

.office-details {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-left: 6px solid #8B4513;
}

.office-details h3 {
  color: #d4af37;
  margin-top: 24px;
  margin-bottom: 12px;
}

.office-details p {
  color: #b0b0b0;
  line-height: 1.8;
}

.map-directions {
  padding: 60px 20px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  border-top: 4px solid #8B4513;
}

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

.directions {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(42, 42, 42, 0.8);
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #3a3a3a;
  border-left: 6px solid #8B4513;
}

.directions h3 {
  color: #d4af37;
  margin-bottom: 16px;
}

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

.directions ul li {
  padding-left: 28px;
  position: relative;
  color: #b0b0b0;
  margin-bottom: 12px;
}

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

.directions p {
  color: #b0b0b0;
  margin-top: 24px;
}

.quick-booking {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  text-align: center;
  border-top: 4px solid #d4af37;
}

.quick-booking h2 {
  color: #fff;
  margin-bottom: 16px;
}

.quick-booking > .container > p {
  color: #f5f5f5;
  font-size: 18px;
  margin-bottom: 32px;
}

.express-features {
  max-width: 500px;
  margin: 0 auto 24px;
  list-style: none;
  padding-left: 0;
}

.express-features li {
  color: #f5f5f5;
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  text-align: left;
}

.express-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: 700;
  font-size: 20px;
}

.express-price {
  font-size: 32px;
  color: #fff;
  margin: 32px 0;
}

.express-price strong {
  color: #d4af37;
}

/* ============================================
   LEGAL CONTENT - INDUSTRIAL DOCUMENT STYLE
   ============================================ */
.legal-content {
  padding: 60px 20px;
  background: #1a1a1a;
}

.legal-content h2 {
  color: #d4af37;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #8B4513;
}

.legal-content h3 {
  color: #b0b0b0;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: #b0b0b0;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: #d4af37;
  border-bottom: 1px solid #d4af37;
}

.legal-content a:hover {
  color: #f0c050;
  border-bottom-color: #f0c050;
}

/* ============================================
   THANK YOU PAGE - INDUSTRIAL SUCCESS
   ============================================ */
.confirmation-message {
  padding: 80px 20px;
  background: #1a1a1a;
  text-align: center;
}

.success-icon {
  font-size: 80px;
  color: #d4af37;
  margin-bottom: 24px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  border: 4px solid #d4af37;
  margin: 0 auto 32px;
  background: rgba(212, 175, 55, 0.1);
}

.confirmation-message h2 {
  margin-bottom: 24px;
}

.confirmation-message p {
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: 18px;
  color: #b0b0b0;
}

.next-steps {
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.next-steps li {
  counter-increment: step-counter;
  padding-left: 60px;
  position: relative;
  color: #b0b0b0;
  margin-bottom: 20px;
  font-size: 16px;
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: -4px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #d4af37;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 20px;
  border-radius: 50%;
  font-family: 'Merriweather', serif;
}

.contact-info-summary {
  padding: 60px 20px;
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  text-align: center;
  border-top: 4px solid #8B4513;
  border-bottom: 4px solid #8B4513;
}

.contact-info-summary h2 {
  margin-bottom: 20px;
}

.contact-info-summary p {
  color: #b0b0b0;
  font-size: 16px;
  margin-bottom: 12px;
}

.additional-resources {
  padding: 60px 20px;
  background: #1a1a1a;
  text-align: center;
}

.additional-resources h2 {
  margin-bottom: 32px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  list-style: none;
  padding-left: 0;
}

.resource-links li {
  margin-bottom: 0;
}

.resource-links a {
  display: inline-block;
  background: linear-gradient(135deg, #242424 0%, #2d2d2d 100%);
  color: #d4af37;
  padding: 12px 24px;
  border-radius: 4px;
  border: 2px solid #d4af37;
  font-weight: 600;
  transition: all 0.3s ease;
}

.resource-links a:hover {
  background: #d4af37;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.social-proof {
  padding: 60px 20px;
  background: linear-gradient(135deg, #242424 0%, #1a1a1a 100%);
  text-align: center;
  border-top: 4px solid #8B4513;
}

.social-proof h2 {
  margin-bottom: 40px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  min-width: 140px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #d4af37;
  font-family: 'Merriweather', serif;
}

.stat-label {
  font-size: 14px;
  color: #b0b0b0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-statement {
  font-size: 20px;
  color: #d4af37;
  font-weight: 600;
  font-style: italic;
}

.back-to-home {
  padding: 60px 20px;
  background: #1a1a1a;
  text-align: center;
}

.contact-cta {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  text-align: center;
  border-top: 4px solid #d4af37;
  border-bottom: 4px solid #d4af37;
}

.contact-cta h2 {
  color: #fff;
  margin-bottom: 16px;
}

.contact-cta p {
  color: #f5f5f5;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ============================================
   FOOTER - INDUSTRIAL DARK
   ============================================ */
footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 60px 20px 20px;
  border-top: 4px solid #8B4513;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #2a2a2a;
}

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(1.2);
}

.footer-column h3 {
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-column p,
.footer-column a {
  color: #808080;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.footer-column a {
  display: block;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.footer-column a:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.tagline {
  color: #b0b0b0 !important;
  font-style: italic;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #808080;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.copyright {
  text-align: center;
  color: #606060;
  font-size: 13px;
}

/* ============================================
   COOKIE CONSENT BANNER - INDUSTRIAL STYLE
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 24px;
  border-top: 4px solid #8B4513;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.7);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  color: #b0b0b0;
  font-size: 14px;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-banner button {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
}

.cookie-accept {
  background: linear-gradient(135deg, #8B4513 0%, #a0522d 100%);
  color: #fff;
  border-color: #d4af37;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #a0522d 0%, #8B4513 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #b0b0b0;
  border-color: #606060;
}

.cookie-reject:hover {
  background: #2a2a2a;
  color: #d4af37;
  border-color: #d4af37;
}

.cookie-settings {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
}

.cookie-settings:hover {
  background: #d4af37;
  color: #1a1a1a;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border-radius: 4px;
  border: 3px solid #8B4513;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #d4af37;
  margin-bottom: 24px;
  font-size: 28px;
}

.cookie-category {
  background: rgba(42, 42, 42, 0.5);
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 3px solid #8B4513;
}

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

.cookie-category p {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 12px;
}

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

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3a3a3a;
  transition: 0.3s;
  border-radius: 26px;
  border: 2px solid #606060;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #b0b0b0;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #8B4513;
  border-color: #d4af37;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
  background-color: #d4af37;
}

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

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

.cookie-modal button {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Cards & Grids */
  .services-grid,
  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .contact-grid,
  .values-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .testimonial-card,
  .pricing-card,
  .contact-method,
  .value {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Timeline */
  .timeline {
    flex-direction: column;
  }
  
  .milestone {
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  /* Cookie Banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner button {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Sections */
  .section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .feature,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .hero-cta,
  .cta-section,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    background: #fff;
    color: #000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000;
  }
  
  p, li {
    color: #333;
  }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
*:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}

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

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Smooth scrolling for all browsers */
html {
  scroll-behavior: smooth;
}

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

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

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

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.p-0 { padding: 0; }
.p-8 { padding: 8px; }
.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.p-32 { padding: 32px; }

/* END OF CSS */