/* ===================================
   SPARKTRUCK CSS - MONOCHROME SOPHISTICATED
   ================================== */

/* CSS RESET & NORMALIZE */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATION
   ================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

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

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

a:hover {
  color: #666666;
}

ul {
  list-style: none;
}

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

/* ===================================
   LAYOUT CONTAINERS
   ================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

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

/* ===================================
   HEADER & NAVIGATION - DRAMATIC BLACK
   ================================== */

header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 24px 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid #ffffff;
}

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

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

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

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

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

.main-nav a:hover {
  color: #cccccc;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===================================
   MOBILE MENU - ELEGANT SLIDE
   ================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
  z-index: 2500;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.6);
  border-left: 3px solid #ffffff;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 20px;
  border: 2px solid #333333;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateX(8px);
}

/* ===================================
   HERO SECTION - DRAMATIC CONTRAST
   ================================== */

.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 50%, #000000 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #ffffff;
}

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

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  color: #e0e0e0;
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

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

/* ===================================
   BUTTONS - MONOCHROME ELEGANCE
   ================================== */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 3px solid #000000;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: 0;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn:hover {
  color: #000000;
  border-color: #000000;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

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

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
}

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

/* ===================================
   CARDS & GRIDS - SOPHISTICATED LAYOUT
   ================================== */

.value-grid,
.services-grid,
.benefits-grid,
.programs-grid,
.workshops-grid,
.shows-grid,
.stats-grid,
.contact-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-item,
.service-card,
.benefit,
.program-card,
.workshop-card,
.show-card,
.stat,
.contact-card,
.category-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.value-item::before,
.service-card::before,
.benefit::before,
.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #000000 0%, #666666 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-item:hover::before,
.service-card:hover::before,
.benefit:hover::before,
.program-card:hover::before {
  transform: scaleX(1);
}

.value-item:hover,
.service-card:hover,
.benefit:hover,
.program-card:hover,
.workshop-card:hover,
.show-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
}

.value-item img,
.benefit img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0);
}

.service-card h3,
.program-card h3,
.workshop-card h3,
.show-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ===================================
   SECTIONS - STRUCTURED SPACING
   ================================== */

.value-proposition,
.featured-services,
.how-it-works,
.benefits,
.testimonials,
.stats,
.programs,
.workshops,
.shows {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.value-proposition {
  background: #f9f9f9;
  text-align: center;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
}

.supporting-text {
  margin-top: 32px;
  font-size: 18px;
  color: #666666;
  font-style: italic;
}

/* ===================================
   HOW IT WORKS - STEP PROCESS
   ================================== */

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

.step,
.process-step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border: 2px solid #000000;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
}

.step:hover .step-number,
.process-step:hover .step-number {
  background: #ffffff;
  color: #000000;
  border: 3px solid #000000;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   ================================== */

.testimonials {
  background: #f5f5f5;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonial-slider,
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border: 3px solid #000000;
  position: relative;
  margin-bottom: 20px;
}

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

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.author {
  color: #000000;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

.rating {
  color: #000000;
  font-size: 20px;
  margin-top: 12px;
  letter-spacing: 4px;
}

/* ===================================
   STATS - BOLD NUMBERS
   ================================== */

.stats {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.stats h2 {
  color: #ffffff;
}

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

.stat {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
  background: transparent;
  border: 3px solid #ffffff;
  padding: 40px 20px;
}

.stat h3 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 800;
}

.stat p {
  color: #e0e0e0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================
   CTA BANNER - DRAMATIC CALL TO ACTION
   ================================== */

.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
}

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

/* ===================================
   PAGE HERO - BREADCRUMB NAVIGATION
   ================================== */

.page-hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 60px 20px;
  border-bottom: 3px solid #000000;
}

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

.breadcrumb a {
  color: #000000;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.subtitle {
  font-size: 20px;
  color: #333333;
  max-width: 800px;
  margin: 0 auto;
}

/* ===================================
   TIMELINE - JOURNEY VISUALIZATION
   ================================== */

.timeline {
  padding: 80px 20px;
  margin-bottom: 60px;
}

.timeline-items,
.timeline-gallery-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  position: relative;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #000000;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-left: 80px;
  position: relative;
  margin-bottom: 20px;
}

.year {
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  position: absolute;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 3px #000000;
}

/* ===================================
   FOOTER - ELEGANT CLOSURE
   ================================== */

footer {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 4px solid #ffffff;
}

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

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

.footer-section h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 12px;
}

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

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333333;
  color: #999999;
  font-size: 14px;
}

/* ===================================
   LEGAL PAGES
   ================================== */

.legal-content {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #e0e0e0;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #000000;
}

.legal-section h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.legal-section ul {
  list-style: disc;
  margin-left: 32px;
  margin-bottom: 16px;
}

.legal-section li {
  margin-bottom: 8px;
  color: #333333;
}

/* ===================================
   CONTACT PAGE
   ================================== */

.contact-info {
  padding: 60px 20px;
  background: #f9f9f9;
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  background: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.response-time,
.flexibility,
.availability {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #666666;
  font-style: italic;
}

.form-note {
  background: #fff3cd;
  border: 2px solid #000000;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.form-placeholder {
  background: #f5f5f5;
  border: 3px dashed #000000;
  padding: 40px;
  text-align: center;
}

.form-placeholder ul {
  list-style: none;
  margin-top: 20px;
}

.form-placeholder li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

.thank-you-hero {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 32px;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #000000;
}

.next-steps,
.while-waiting {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.steps-grid,
.suggestions-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.step-card,
.suggestion-card,
.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover,
.suggestion-card:hover,
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  background: #f5f5f5;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-height: 100px;
}

/* ===================================
   GALLERY PAGE
   ================================== */

.programs-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.program-showcase {
  background: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  margin-bottom: 20px;
  border-left: 8px solid #000000;
}

.moments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.moment-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #f5f5f5;
  border: 3px solid #000000;
  padding: 32px;
  margin-bottom: 20px;
}

/* ===================================
   ABOUT PAGE - SPECIAL SECTIONS
   ================================== */

.mission {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
  margin-bottom: 60px;
}

.mission p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.8;
}

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

.value-tag {
  background: #000000;
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.value-tag:hover {
  background: #ffffff;
  color: #000000;
}

.approach-grid,
.included-grid,
.highlights-grid,
.skills-grid,
.area-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.approach-item,
.included-item,
.highlight,
.skill-item,
.area-item,
.safety-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.approach-item:hover,
.included-item:hover,
.highlight:hover,
.skill-item:hover {
  background: #f5f5f5;
  transform: scale(1.03);
}

.impact-grid,
.cta-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.impact-card,
.cta-option {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #000000;
  color: #ffffff;
  border: 3px solid #000000;
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.impact-card:hover,
.cta-option:hover {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
}

.impact-card h3 {
  color: #ffffff;
  font-size: 48px;
}

.impact-card:hover h3 {
  color: #000000;
}

.cta-option h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.cta-option:hover h3 {
  color: #000000;
}

.cta-option p {
  color: #cccccc;
  margin-bottom: 20px;
}

.cta-option:hover p {
  color: #333333;
}

/* ===================================
   SAFETY & TRUST BADGES
   ================================== */

.safety {
  padding: 60px 20px;
  background: #f5f5f5;
  margin-bottom: 60px;
}

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

.trust-badge {
  text-align: center;
  margin-top: 32px;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===================================
   COOKIE CONSENT BANNER
   ================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: #ffffff;
  padding: 24px;
  z-index: 3000;
  border-top: 3px solid #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-text p {
  color: #e0e0e0;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #ffffff;
  color: #000000;
}

.cookie-btn-accept {
  background: #ffffff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background: transparent;
  color: #ffffff;
}

/* ===================================
   COOKIE MODAL
   ================================== */

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

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

.modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #000000;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: #333333;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  border: 2px solid #e0e0e0;
}

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

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cccccc;
  transition: 0.3s;
  border: 2px solid #000000;
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #000000;
  transition: 0.3s;
}

input:checked + .slider {
  background: #000000;
}

input:checked + .slider:before {
  transform: translateX(24px);
  background: #ffffff;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Grids */
  .value-item,
  .service-card,
  .benefit,
  .program-card,
  .workshop-card,
  .show-card,
  .step,
  .process-step,
  .stat,
  .contact-card,
  .category-card,
  .step-card,
  .suggestion-card,
  .moment-card,
  .approach-item,
  .included-item,
  .highlight,
  .skill-item,
  .area-item,
  .safety-item,
  .impact-card,
  .cta-option {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Timeline */
  .timeline-items::before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .year {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .service-card,
  .benefit,
  .program-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat,
  .impact-card {
    flex: 1 1 calc(50% - 40px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   ================================== */

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Smooth scrolling */
html {
  scroll-padding-top: 80px;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
}

/* End of CSS */