/* ========================================
   WILDSCOVE FITNESS - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ======================================== */

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

/* TYPOGRAPHY - Industrial Modern */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  border-left: 4px solid #E85D04;
  padding-left: 16px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #F4A261;
  text-decoration: underline;
}

strong {
  font-weight: 700;
  color: #FFFFFF;
}

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

/* HEADER - Industrial Steel Look */
header {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  border-bottom: 3px solid #E85D04;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

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

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

.main-nav a {
  color: #CCCCCC;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #E85D04;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

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

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #E85D04;
  border: 2px solid #F4A261;
  color: #FFFFFF;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.4);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C2C2C 0%, #1A1A1A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 3px solid #E85D04;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E85D04;
  color: #FFFFFF;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #CCCCCC;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  background: rgba(232, 93, 4, 0.1);
  border-left-color: #E85D04;
  text-decoration: none;
  padding-left: 24px;
}

/* BUTTONS - Industrial Metal Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #E85D04;
  color: #FFFFFF;
  border-color: #E85D04;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

.btn-primary:hover {
  background: #F4A261;
  border-color: #F4A261;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 93, 4, 0.4);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: #E85D04;
  color: #FFFFFF;
  transform: translateY(-2px);
  text-decoration: none;
}

/* HERO SECTION - Industrial Urban */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(232, 93, 4, 0.03) 10px,
    rgba(232, 93, 4, 0.03) 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;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

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

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

.trust-badge {
  font-size: 14px;
  color: #F4A261;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* HERO PAGE */
.hero-page {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 60px 20px 40px;
  border-bottom: 2px solid #E85D04;
}

.hero-page h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

/* BREADCRUMBS */
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 24px;
  color: #999999;
}

.breadcrumbs a {
  color: #E85D04;
}

.breadcrumbs span {
  color: #CCCCCC;
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.benefits,
.services-preview,
.how-it-works,
.testimonials,
.story,
.mission-vision,
.team-intro,
.achievements,
.services-list,
.programs-list,
.trainers-list,
.blog-grid,
.contact-options {
  background: #2C2C2C;
  padding: 60px 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #CCCCCC;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* CARD LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.mission-vision-grid,
.achievements-grid,
.articles-grid,
.contact-methods,
.resources-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* BENEFIT CARDS */
.benefit-card {
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover {
  border-color: #E85D04;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.2);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(98%) contrast(97%);
}

.benefit-card h3 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #AAAAAA;
}

/* STATS - Industrial Counter Style */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: #1A1A1A;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #E85D04;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* SERVICE CARDS */
.service-card,
.program-card,
.trainer-card,
.article-card {
  background: #1A1A1A;
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.program-card:hover,
.trainer-card:hover,
.article-card:hover {
  border-color: #E85D04;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 93, 4, 0.2);
}

.service-card h3,
.program-card h3,
.trainer-card h3,
.article-card h3 {
  color: #FFFFFF;
  font-size: 22px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #E85D04;
  margin: 16px 0;
}

.price-large {
  font-size: 32px;
  font-weight: 800;
  color: #E85D04;
  margin: 20px 0;
}

/* DETAILED SERVICE */
.service-detailed {
  background: #1A1A1A;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 4px;
  border-left: 4px solid #E85D04;
  border-right: 2px solid #3A3A3A;
  border-top: 2px solid #3A3A3A;
  border-bottom: 2px solid #3A3A3A;
}

.tagline {
  font-size: 18px;
  color: #F4A261;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge {
  display: inline-block;
  background: #E85D04;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  margin: 24px 0;
}

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #CCCCCC;
  line-height: 1.6;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E85D04;
  font-size: 20px;
  font-weight: bold;
}

.ideal-for,
.guarantee,
.trial,
.success-rate {
  font-size: 14px;
  color: #F4A261;
  font-weight: 600;
  margin-top: 20px;
}

/* STEPS */
.step {
  background: #1A1A1A;
  padding: 32px 24px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #E85D04;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  border: 3px solid #F4A261;
  box-shadow: 0 4px 12px rgba(232, 93, 4, 0.3);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* TESTIMONIALS - HIGH CONTRAST FOR READABILITY */
.testimonial-card {
  background: #F5F5F5;
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid #E85D04;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.testimonial-author,
.author {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: right;
  margin-top: 16px;
}

.quote {
  font-style: italic;
  color: #666666;
  border-left: 3px solid #E85D04;
  padding-left: 16px;
  margin: 16px 0;
}

.rating {
  color: #E85D04;
  font-size: 16px;
  font-weight: 600;
  margin: 8px 0;
}

/* TRAINER DETAILS */
.trainer-title {
  font-size: 16px;
  color: #F4A261;
  font-weight: 600;
  text-transform: uppercase;
}

.trainer-card .success {
  background: rgba(232, 93, 4, 0.1);
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  color: #E85D04;
  margin-top: 16px;
}

/* BLOG */
.featured-article {
  background: #1A1A1A;
  padding: 48px;
  border-radius: 4px;
  border: 2px solid #E85D04;
  margin-bottom: 40px;
}

.category-badge {
  display: inline-block;
  background: #2A9D8F;
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.meta {
  font-size: 13px;
  color: #999999;
  margin-top: 12px;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 40px 0;
}

.filter-btn {
  background: #1A1A1A;
  color: #CCCCCC;
  border: 2px solid #3A3A3A;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #E85D04;
  color: #FFFFFF;
  border-color: #E85D04;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: #1A1A1A;
  padding: 40px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #CCCCCC;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  background: #2C2C2C;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #E85D04;
  box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.security-note,
.privacy-note {
  font-size: 12px;
  color: #999999;
  margin-top: 16px;
  text-align: center;
}

/* CONTACT METHODS */
.contact-method {
  background: #1A1A1A;
  padding: 32px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-method img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(346deg) brightness(98%) contrast(97%);
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.response-time,
.note {
  font-size: 13px;
  color: #F4A261;
  font-weight: 600;
  margin-top: 8px;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #E85D04 0%, #F4A261 100%);
  padding: 80px 20px;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-final h2,
.cta-section h2 {
  font-size: 38px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

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

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

.guarantee {
  font-size: 14px;
  color: #FFFFFF;
  opacity: 0.9;
}

/* THANK YOU PAGE */
.thank-you-hero,
.thank-you-page {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  padding: 100px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #2A9D8F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 32px;
  border: 4px solid #F4A261;
  box-shadow: 0 8px 24px rgba(42, 157, 143, 0.3);
}

.next-steps {
  background: #2C2C2C;
  padding: 60px 20px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #1A1A1A;
  padding: 20px;
  border-radius: 4px;
  border-left: 4px solid #E85D04;
}

.step-icon {
  font-size: 32px;
  min-width: 40px;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: #1A1A1A;
  padding: 48px;
  border-radius: 4px;
  border: 2px solid #3A3A3A;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 26px;
}

.legal-content h3 {
  margin-top: 24px;
  font-size: 20px;
}

.legal-content ul {
  margin: 16px 0 16px 24px;
  color: #CCCCCC;
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.updated {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-bottom: 32px;
}

/* FOOTER - Industrial Dark */
footer {
  background: #1A1A1A;
  border-top: 3px solid #E85D04;
  padding: 60px 20px 24px;
  color: #CCCCCC;
}

.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-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(100%);
}

.footer-section h4 {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-nav a {
  color: #AAAAAA;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #E85D04;
  text-decoration: none;
  padding-left: 8px;
}

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

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.legal-nav a {
  font-size: 13px;
  color: #999999;
}

.legal-nav a:hover {
  color: #E85D04;
}

.footer-legal p {
  font-size: 13px;
  color: #666666;
}

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

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #CCCCCC;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: #E85D04;
  color: #FFFFFF;
  border-color: #E85D04;
}

.cookie-accept:hover {
  background: #F4A261;
  border-color: #F4A261;
}

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

.cookie-reject:hover {
  color: #FFFFFF;
  border-color: #666666;
}

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

.cookie-settings:hover {
  background: rgba(232, 93, 4, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #2C2C2C;
  border: 2px solid #E85D04;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
}

.cookie-modal h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.cookie-category {
  background: #1A1A1A;
  padding: 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 3px solid #E85D04;
}

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 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: #3A3A3A;
  border-radius: 26px;
  transition: 0.3s;
}

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

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

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

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

/* NEWSLETTER */
.newsletter {
  background: #1A1A1A;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1 1 300px;
  padding: 14px;
  background: #2C2C2C;
  border: 2px solid #3A3A3A;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 16px;
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: #E85D04;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Cards full width on mobile */
  .benefit-card,
  .service-card,
  .program-card,
  .trainer-card,
  .article-card,
  .step,
  .testimonial-card,
  .contact-method {
    flex: 1 1 100%;
  }
  
  /* Stack layouts */
  .footer-content {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  /* Form adjustments */
  .form-wrapper {
    padding: 24px;
  }
  
  .service-detailed {
    padding: 24px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  /* Stats */
  .stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  .legal-content {
    padding: 24px;
  }
}

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

.benefit-card,
.service-card,
.step {
  animation: fadeInUp 0.6s ease forwards;
}

/* ACCESSIBILITY */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #E85D04;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner {
    display: none;
  }
}