/* ==========================================
   BRIGHTFUSE - INDUSTRIAL MODERN DESIGN
   Complete CSS Stylesheet
   ========================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #f5f5f5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 3px solid #B8340A;
  padding-bottom: 12px;
  display: inline-block;
}

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

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

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

a:hover {
  color: #F39C12;
  text-shadow: 0 0 8px rgba(243, 156, 18, 0.5);
}

ul {
  list-style: none;
}

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

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

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

/* HEADER - INDUSTRIAL STYLE */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  padding: 16px 0;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 0 20px rgba(232, 85, 45, 0.2);
  border-bottom: 2px solid #B8340A;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(232, 85, 45, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 15px rgba(243, 156, 18, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8552D, #F39C12);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #F39C12;
  border-color: #E8552D;
  background: rgba(232, 85, 45, 0.1);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #B8340A, #E8552D);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 85, 45, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #8A2707;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #E8552D, #F39C12);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 0 25px rgba(243, 156, 18, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  border-left: 3px solid #E8552D;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #E8552D;
  border: 2px solid #E8552D;
  font-size: 32px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-weight: 700;
}

.mobile-menu-close:hover {
  background: #E8552D;
  color: #fff;
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(232, 85, 45, 0.6);
}

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

.mobile-nav a {
  color: #d4d4d4;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 20px;
  border: 2px solid #2C3E50;
  border-left: 4px solid #E8552D;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  background: rgba(44, 62, 80, 0.3);
}

.mobile-nav a:hover {
  background: rgba(232, 85, 45, 0.2);
  border-left-width: 8px;
  padding-left: 24px;
  color: #F39C12;
  box-shadow: 0 4px 12px rgba(232, 85, 45, 0.4);
}

/* CTA BUTTONS - INDUSTRIAL STYLE */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #E8552D;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #B8340A, #E8552D);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), inset 0 -2px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, #E8552D, #F39C12);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 85, 45, 0.5), 0 0 30px rgba(243, 156, 18, 0.3);
  border-color: #F39C12;
}

.cta-button.primary {
  background: linear-gradient(135deg, #E8552D, #F39C12);
  border-color: #F39C12;
}

.cta-button.secondary {
  background: transparent;
  color: #E8552D;
  border: 2px solid #E8552D;
  text-shadow: none;
}

.cta-button.secondary:hover {
  background: rgba(232, 85, 45, 0.2);
  color: #F39C12;
  border-color: #F39C12;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

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

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #f5f5f5;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8), 0 0 20px rgba(232, 85, 45, 0.4);
}

.hero-subtitle {
  font-size: 20px;
  color: #d4d4d4;
  margin-bottom: 32px;
  font-weight: 400;
}

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

.trust-badges span {
  color: #F39C12;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  border: 2px solid #E8552D;
  background: rgba(26, 26, 26, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #E8552D;
  margin-bottom: 40px;
}

.page-hero h1 {
  font-size: 48px;
  color: #f5f5f5;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #d4d4d4;
}

/* ERROR HERO (404) */
.error-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  padding: 80px 20px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #E8552D;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8), 0 0 30px rgba(232, 85, 45, 0.5);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 24px;
}

.subheadline {
  font-size: 20px;
  color: #d4d4d4;
  margin-top: 16px;
}

/* CARD CONTAINERS - FLEXBOX ONLY */
.card-container,
.value-grid,
.services-grid,
.testimonials-grid,
.categories-grid,
.programs-grid,
.membership-grid,
.steps-grid,
.suggestion-grid,
.contact-grid,
.featured-articles,
.articles-grid,
.categories-list,
.explore-grid,
.cta-grid,
.recovery-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: space-between;
}

/* CARDS - INDUSTRIAL STYLE */
.value-card,
.service-card,
.testimonial-card,
.category-card,
.program-card,
.membership-card,
.step,
.suggestion-card,
.contact-card,
.coaching-card,
.topic-card,
.featured-article,
.article-card,
.explore-card,
.cta-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 24px;
  border: 2px solid #2C3E50;
  border-left: 4px solid #E8552D;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.category-card:hover,
.program-card:hover,
.membership-card:hover,
.suggestion-card:hover,
.contact-card:hover,
.coaching-card:hover,
.topic-card:hover,
.featured-article:hover,
.article-card:hover,
.explore-card:hover,
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.8), 0 0 30px rgba(232, 85, 45, 0.3);
  border-left-width: 8px;
  border-color: #F39C12;
}

.service-card h3,
.value-card h3,
.category-card h3,
.program-card h3,
.membership-card h3,
.coaching-card h3,
.topic-card h3 {
  color: #E8552D;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.value-card p,
.category-card p,
.program-card p,
.membership-card p,
.coaching-card p,
.topic-card p {
  color: #d4d4d4;
  margin-bottom: 16px;
}

.price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #F39C12;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #2C3E50 0%, #1a1a1a 100%);
  padding: 60px 20px;
  margin: 60px 0;
  border-top: 3px solid #E8552D;
  border-bottom: 3px solid #E8552D;
}

.testimonial-card {
  background: #f5f5f5;
  border: 2px solid #ddd;
  border-left: 4px solid #E8552D;
  padding: 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  color: #B8340A;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  font-style: normal;
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
}

/* SERVICE DETAIL */
.service-detail {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 32px;
  margin-bottom: 32px;
  border: 2px solid #2C3E50;
  border-left: 6px solid #E8552D;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  position: relative;
}

.service-detail h3 {
  color: #E8552D;
  font-size: 26px;
  margin-bottom: 16px;
}

.service-detail p {
  color: #d4d4d4;
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-detail .price {
  font-size: 28px;
  color: #F39C12;
  margin: 20px 0;
}

.service-detail .cta-button {
  margin-top: 16px;
}

/* CONTENT SECTIONS */
.value-proposition,
.services-overview,
.location-info,
.cta-final,
.services-detailed,
.booking-process,
.course-categories,
.featured-programs,
.membership-options,
.coaching-intro,
.coaching-services,
.coaching-methodology,
.recovery-expertise,
.story-origin,
.mission-values,
.philosophy-approach,
.facility-info,
.cta-section,
.blog-featured,
.blog-categories,
.blog-grid,
.newsletter-signup,
.contact-info,
.probetraining-section,
.location-details,
.error-suggestions,
.cta-motivational,
.next-steps,
.while-you-wait,
.social-proof,
.thank-you-hero,
.explore-more {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.intro-text {
  font-size: 18px;
  color: #d4d4d4;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* LOCATION & CONTACT */
.location-content,
.contact-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.location-details,
.directions {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 28px;
  border: 2px solid #2C3E50;
  border-left: 4px solid #E8552D;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.location-details h3,
.directions h3 {
  color: #E8552D;
  margin-bottom: 16px;
}

.location-details p,
.directions p {
  color: #d4d4d4;
  margin-bottom: 12px;
}

/* BENEFITS LIST */
.benefits-list ul {
  margin: 24px 0;
  padding-left: 20px;
}

.benefits-list li {
  color: #d4d4d4;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
  list-style: none;
}

.benefits-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #E8552D;
  font-size: 14px;
}

/* BLOG CATEGORIES */
.category-tag {
  display: inline-block;
  padding: 8px 16px;
  margin: 8px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 2px solid #E8552D;
  color: #E8552D;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.category-tag:hover {
  background: rgba(232, 85, 45, 0.2);
  color: #F39C12;
  border-color: #F39C12;
  box-shadow: 0 0 15px rgba(243, 156, 18, 0.3);
}

/* META INFO */
.meta {
  display: block;
  font-size: 14px;
  color: #999;
  margin-top: 12px;
  font-style: italic;
}

/* LEGAL PAGES */
.legal-page {
  padding: 60px 20px;
  background: #1a1a1a;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 40px;
  border: 2px solid #2C3E50;
  border-left: 6px solid #E8552D;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

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

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

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

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

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

.last-updated {
  color: #999;
  font-style: italic;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 18px;
  color: #d4d4d4;
  margin-bottom: 32px;
}

/* FOOTER - INDUSTRIAL */
footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #d4d4d4;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 4px solid #E8552D;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-column h3 {
  color: #E8552D;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #2C3E50;
  padding-bottom: 8px;
}

.footer-column p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #F39C12;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid #2C3E50;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #999;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #E8552D;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C3E50 100%);
  padding: 24px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.8);
  z-index: 1998;
  border-top: 3px solid #E8552D;
  display: none;
  animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

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

.cookie-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid #E8552D;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #B8340A, #E8552D);
  color: #fff;
}

.cookie-button:hover {
  background: linear-gradient(135deg, #E8552D, #F39C12);
  box-shadow: 0 4px 12px rgba(232, 85, 45, 0.5);
}

.cookie-button.secondary {
  background: transparent;
  color: #E8552D;
}

.cookie-button.secondary:hover {
  background: rgba(232, 85, 45, 0.2);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 3px solid #E8552D;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-preference {
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(44, 62, 80, 0.3);
  border: 2px solid #2C3E50;
  border-left: 4px solid #E8552D;
}

.cookie-preference h3 {
  color: #F39C12;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle label {
  color: #d4d4d4;
  cursor: pointer;
  font-size: 14px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  /* Section padding */
  .section,
  .hero,
  .page-hero,
  footer {
    padding: 40px 16px;
  }
  
  /* Card grids */
  .value-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .program-card,
  .membership-card,
  .step,
  .suggestion-card,
  .contact-card,
  .coaching-card,
  .topic-card,
  .featured-article,
  .article-card,
  .explore-card,
  .cta-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-button {
    width: 100%;
  }
  
  /* Mobile menu width */
  .mobile-menu {
    width: 85%;
    max-width: 300px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .value-card,
  .service-card,
  .category-card,
  .program-card,
  .membership-card,
  .step,
  .coaching-card,
  .topic-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 30px;
  }
}

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

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

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

.hidden {
  display: none;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 80px;
}

/* FOCUS STATES FOR ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #F39C12;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-button {
    display: none;
  }
  
  body {
    background: #fff;
    color: #000;
  }
}