/* ===================================
   LUMINARY DUNGEON - INDUSTRIAL MODERN
   Complete CSS Stylesheet
   =================================== */

/* CSS RESET & BASE */
* {
  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', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #E0E0E0;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #B23310;
  padding-left: 16px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #AFAFAF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #B8B8B8;
  line-height: 1.8;
}

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #B23310;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

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

.main-nav a {
  color: #B8B8B8;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.main-nav a:hover {
  color: #FFF4E6;
  background: rgba(178, 51, 16, 0.2);
  border-color: #B23310;
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #B23310;
  color: #FFF4E6;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(178, 51, 16, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8B2709;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0,0,0,0.8);
  border-left: 3px solid #B23310;
}

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

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

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

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

.mobile-nav a {
  color: #B8B8B8;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #FFF4E6;
  background: rgba(178, 51, 16, 0.2);
  border-left-color: #B23310;
  padding-left: 28px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-primary {
  background: #B23310;
  color: #FFF4E6;
  border-color: #B23310;
}

.btn-primary:hover {
  background: #8B2709;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(178, 51, 16, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #FFF4E6;
  border-color: #B23310;
}

.btn-secondary:hover {
  background: rgba(178, 51, 16, 0.2);
  border-color: #8B2709;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C2C2C 0%, #3A3A3A 50%, #2C2C2C 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #B23310;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(178, 51, 16, 0.05) 10px,
    rgba(178, 51, 16, 0.05) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #FFF4E6;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-subheadline {
  font-size: 18px;
  color: #C5C5C5;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: #242424;
  border-left: 4px solid #B23310;
}

section {
  padding: 60px 20px;
  background: #242424;
  margin-bottom: 40px;
}

section:nth-child(even) {
  background: #1F1F1F;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(135deg, #2C2C2C 0%, #242424 100%);
  border-top: 3px solid #B23310;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.value-card {
  flex: 1 1 300px;
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  border-left: 4px solid #B23310;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #B23310, transparent);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.value-card h3 {
  color: #FFF4E6;
  margin-bottom: 16px;
}

.value-card p {
  color: #B8B8B8;
}

/* SERVICES */
.services-overview,
.services-detailed {
  background: #1F1F1F;
}

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

.service-card {
  flex: 1 1 320px;
  background: #2C2C2C;
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B23310, #8B2709);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.service-card h3 {
  color: #FFF4E6;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #B23310;
  margin-top: auto;
}

.service-detailed {
  background: #242424;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.service-detailed h2 {
  color: #FFF4E6;
  border-left: none;
  padding-left: 0;
}

.service-detailed ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detailed li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #B8B8B8;
  border-bottom: 1px solid #3A3A3A;
}

.service-detailed li:last-child {
  border-bottom: none;
}

.service-detailed li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #B23310;
  font-size: 18px;
}

.service-detailed .price {
  font-size: 32px;
  font-weight: 700;
  color: #B23310;
  margin: 24px 0;
  display: block;
}

/* TESTIMONIALS */
.social-proof,
.testimonials {
  background: linear-gradient(135deg, #2C2C2C 0%, #1F1F1F 100%);
  border-top: 3px solid #B23310;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 450px;
  background: #FFF4E6;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 80px;
  color: rgba(178, 51, 16, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.4);
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #5D1C08;
  font-style: normal;
  margin-top: auto;
}

/* STATISTICS */
.statistics {
  background: #1A1A1A;
  text-align: center;
}

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

.stat-card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 24px;
  background: #242424;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: #B23310;
}

.stat-card:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

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

.stat-label {
  font-size: 14px;
  color: #B8B8B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FILTERS */
.filter-system {
  background: #2C2C2C;
  padding: 40px 20px;
}

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

.filter-group {
  flex: 1 1 300px;
}

.filter-group h3 {
  color: #FFF4E6;
  margin-bottom: 16px;
  font-size: 18px;
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tag {
  padding: 8px 16px;
  background: #1A1A1A;
  color: #B8B8B8;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.filter-tag:hover {
  background: rgba(178, 51, 16, 0.2);
  border-color: #B23310;
  color: #FFF4E6;
}

/* RECIPE GRID */
.recipe-grid {
  background: #1F1F1F;
}

.recipes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.recipe-card {
  flex: 1 1 280px;
  background: #2C2C2C;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.recipe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B23310, #8B2709);
}

.recipe-card:hover {
  transform: translateY(-4px);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.recipe-card h3 {
  color: #FFF4E6;
}

.recipe-meta {
  color: #888;
  font-size: 14px;
}

/* PREMIUM CALLOUT */
.premium-callout {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  text-align: center;
  padding: 60px 20px;
  border: 3px solid #B23310;
  position: relative;
}

.premium-callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(178, 51, 16, 0.05) 20px,
    rgba(178, 51, 16, 0.05) 40px
  );
  pointer-events: none;
}

.benefits-list {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  color: #B8B8B8;
  position: relative;
}

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

.premium-callout .price {
  font-size: 36px;
  font-weight: 700;
  color: #B23310;
  margin: 24px 0;
}

/* WORKSHOP DETAILS */
.workshop-details,
.workshop-categories {
  background: #242424;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 300px;
  background: #1A1A1A;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.feature h3 {
  color: #FFF4E6;
  font-size: 18px;
}

/* CATEGORIES */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 260px;
  background: #2C2C2C;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}

.category-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #B23310;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.category-card h3 {
  color: #FFF4E6;
}

/* PRICING */
.pricing {
  background: #1F1F1F;
  text-align: center;
}

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

.pricing-card {
  flex: 1 1 300px;
  background: #2C2C2C;
  padding: 40px 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B23310, #8B2709);
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #B23310;
  box-shadow: 0 12px 32px rgba(178, 51, 16, 0.4);
}

.pricing-card h3 {
  color: #FFF4E6;
  font-size: 24px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 700;
  color: #B23310;
  margin: 16px 0;
}

.pricing-card .original-price {
  text-decoration: line-through;
  color: #888;
  font-size: 18px;
}

/* BRAND STORY */
.brand-story {
  background: #242424;
}

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

.milestone {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background: #1A1A1A;
  border-radius: 4px;
  border-top: 3px solid #B23310;
  position: relative;
  margin-bottom: 20px;
}

.milestone h3 {
  font-size: 32px;
  color: #B23310;
  margin-bottom: 12px;
}

/* MISSION & VALUES */
.mission-values {
  background: #1F1F1F;
}

.mission {
  font-size: 20px;
  color: #E0E0E0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 32px;
  background: #2C2C2C;
  border-left: 4px solid #B23310;
  border-radius: 4px;
}

/* IMPACT */
.impact {
  background: linear-gradient(135deg, #2C2C2C 0%, #242424 100%);
  text-align: center;
}

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

.impact-stat {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 24px;
  background: #1A1A1A;
  border: 3px solid #B23310;
  border-radius: 4px;
  margin-bottom: 20px;
  position: relative;
}

.impact-stat .number {
  font-size: 56px;
  font-weight: 700;
  color: #B23310;
  font-family: 'Playfair Display', serif;
}

.impact-stat p {
  color: #B8B8B8;
  font-size: 16px;
}

/* LOCATION */
.location {
  background: #242424;
  padding: 60px 20px;
}

.location p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* BLOG */
.blog-categories {
  background: #2C2C2C;
}

.blog-grid {
  background: #1F1F1F;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.post-card {
  flex: 1 1 320px;
  background: #2C2C2C;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #B23310, #8B2709);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.post-card h3 {
  color: #FFF4E6;
}

.post-meta {
  color: #888;
  font-size: 14px;
  font-style: italic;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  text-align: center;
  padding: 60px 20px;
  border: 3px solid #B23310;
}

.newsletter-form {
  max-width: 600px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.form-note {
  color: #B8B8B8;
}

/* CONTACT */
.contact-methods {
  background: #242424;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 400px;
  background: #1A1A1A;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.contact-card h3 {
  color: #FFF4E6;
  margin-bottom: 16px;
}

.contact-card a {
  color: #B23310;
  text-decoration: underline;
}

.contact-card a:hover {
  color: #8B2709;
}

/* CONTACT FORM */
.contact-form-section {
  background: #1F1F1F;
}

.form-info {
  max-width: 600px;
  margin: 32px auto 0;
}

.form-info ul {
  margin-top: 16px;
}

.form-info li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #B8B8B8;
}

.form-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #B23310;
  font-size: 20px;
}

/* FAQ */
.faq {
  background: #242424;
}

.faq-item {
  background: #1A1A1A;
  padding: 24px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
}

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

.faq-item p {
  color: #B8B8B8;
}

/* LEGAL CONTENT */
.legal-content {
  background: #1F1F1F;
}

.legal-section {
  background: #242424;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
}

.legal-section h2 {
  color: #FFF4E6;
  margin-bottom: 16px;
  border-left: none;
  padding-left: 0;
}

.legal-section ul {
  margin: 16px 0;
}

.legal-section li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #B8B8B8;
  line-height: 1.8;
}

.legal-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #B23310;
}

.legal-section a {
  color: #B23310;
  text-decoration: underline;
}

.legal-section a:hover {
  color: #8B2709;
}

/* THANK YOU PAGE */
.confirmation-details {
  background: #242424;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #1A1A1A;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #B23310;
  color: #FFF4E6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.timeline-step p {
  margin: 0;
}

.suggested-actions,
.alternative-contact {
  background: #1F1F1F;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.action-card {
  flex: 1 1 260px;
  background: #2C2C2C;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.action-card:hover {
  transform: translateY(-4px);
  border-color: #B23310;
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.action-card h3 {
  color: #FFF4E6;
}

.next-steps {
  background: #242424;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step-card {
  flex: 1 1 300px;
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 4px;
  border-left: 4px solid #B23310;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(178, 51, 16, 0.3);
}

.step-card h3 {
  color: #FFF4E6;
}

.step-card a {
  color: #B23310;
  font-weight: 600;
  margin-top: auto;
}

.step-card a:hover {
  color: #8B2709;
  text-decoration: underline;
}

/* CTA FINAL */
.cta-final,
.cta {
  background: linear-gradient(135deg, #B23310 0%, #8B2709 100%);
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.cta-final::before,
.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.1) 20px,
    rgba(0, 0, 0, 0.1) 40px
  );
  pointer-events: none;
}

.cta-final h2,
.cta h2 {
  color: #FFF4E6;
  font-size: 40px;
  margin-bottom: 24px;
  border-left: none;
  padding-left: 0;
}

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

.cta-final .btn,
.cta .btn {
  background: #FFF4E6;
  color: #B23310;
  border-color: #FFF4E6;
}

.cta-final .btn:hover,
.cta .btn:hover {
  background: #E0E0E0;
  transform: translateY(-2px) scale(1.05);
}

/* FOOTER */
footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  color: #B8B8B8;
  padding: 60px 20px 20px;
  border-top: 4px solid #B23310;
}

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

.footer-section {
  flex: 1 1 240px;
}

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

.footer-section h4 {
  color: #FFF4E6;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section p {
  color: #888;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a,
.footer-legal a {
  color: #888;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 2px solid transparent;
  padding-left: 8px;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #FFF4E6;
  border-left-color: #B23310;
  padding-left: 16px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #3A3A3A;
}

.footer-bottom p {
  color: #666;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.8);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #B23310;
}

.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: #B8B8B8;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: #B23310;
  color: #FFF4E6;
  border-color: #B23310;
}

.cookie-btn-accept:hover {
  background: #8B2709;
}

.cookie-btn-reject {
  background: transparent;
  color: #B8B8B8;
  border-color: #3A3A3A;
}

.cookie-btn-reject:hover {
  border-color: #B8B8B8;
  color: #FFF4E6;
}

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

.cookie-btn-settings:hover {
  background: rgba(178, 51, 16, 0.2);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  border: 3px solid #B23310;
  box-shadow: 0 8px 32px rgba(0,0,0,0.8);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 2px solid #3A3A3A;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: #FFF4E6;
  margin: 0;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: #B8B8B8;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: #FFF4E6;
  transform: rotate(90deg);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #3A3A3A;
}

.cookie-category:last-child {
  border-bottom: none;
}

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

.cookie-category h4 {
  color: #FFF4E6;
  margin: 0;
  font-size: 16px;
}

.cookie-category p {
  color: #888;
  font-size: 14px;
  margin: 0;
}

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3A3A3A;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: #FFF4E6;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #B23310;
}

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 2px solid #3A3A3A;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Grid layouts */
  .value-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .features-grid,
  .categories-grid,
  .pricing-grid,
  .timeline,
  .impact-grid,
  .posts-grid,
  .contact-grid,
  .actions-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .feature,
  .category-card,
  .pricing-card,
  .milestone,
  .impact-stat,
  .post-card,
  .contact-card,
  .action-card,
  .step-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Service detailed */
  .service-detailed {
    padding: 24px 20px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 36px;
  }
  
  /* Pricing */
  .pricing-card .price {
    font-size: 28px;
  }
  
  /* Mission */
  .mission {
    font-size: 18px;
    padding: 24px;
  }
  
  /* Impact */
  .impact-stat .number {
    font-size: 40px;
  }
  
  /* CTA */
  .cta-final h2,
  .cta h2 {
    font-size: 28px;
  }
  
  .cta-final,
  .cta {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  /* Typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Buttons */
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  /* Hero */
  .hero {
    padding: 40px 16px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Sections */
  section {
    padding: 40px 16px;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .feature,
  .category-card,
  .pricing-card,
  .post-card,
  .action-card,
  .step-card {
    padding: 24px 20px;
  }
  
  /* Stats */
  .stat-number {
    font-size: 32px;
  }
  
  /* Service detailed */
  .service-detailed .price {
    font-size: 28px;
  }
  
  /* Footer */
  footer {
    padding: 40px 16px 16px;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    margin: 0;
    max-height: 100vh;
    border-radius: 0;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .mobile-menu.active {
    right: 0;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  body {
    background: white;
    color: black;
  }
}