/* ===================================
   TWINKLE MENTOR - TECH FUTURISTIC CSS
   Futuristic tech-inspired design with neon accents
   =================================== */

/* 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: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

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

a:hover {
  color: #FF4757;
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

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

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::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;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4), 0 0 40px rgba(230, 57, 70, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6), 0 0 60px rgba(230, 57, 70, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #457B9D;
  border: 2px solid #457B9D;
  box-shadow: 0 0 20px rgba(69, 123, 157, 0.3);
}

.btn-secondary:hover {
  background: #457B9D;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(69, 123, 157, 0.5);
}

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 57, 70, 0.2);
  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;
  padding: 16px 0;
  gap: 24px;
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
  transition: filter 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.8));
}

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

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E63946, #457B9D);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFFFFF;
  background: rgba(230, 57, 70, 0.1);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.7);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(230, 57, 70, 0.3);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #E63946;
  border: 2px solid #E63946;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #B0B0B0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  background: rgba(230, 57, 70, 0.2);
  border-color: rgba(230, 57, 70, 0.5);
  transform: translateX(10px);
  box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(69, 123, 157, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #E63946 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 20px rgba(230, 57, 70, 0.5); }
  to { text-shadow: 0 0 40px rgba(230, 57, 70, 0.8); }
}

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

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

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

.trust-indicators span {
  color: #457B9D;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(69, 123, 157, 0.3);
  border-radius: 20px;
  background: rgba(69, 123, 157, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  text-align: center;
  border-bottom: 1px solid rgba(230, 57, 70, 0.2);
}

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

.page-hero p {
  font-size: 18px;
  color: #B0B0B0;
  max-width: 700px;
  margin: 0 auto 16px;
}

.last-updated {
  font-size: 14px;
  color: #457B9D;
  font-style: italic;
}

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

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

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
}

/* CARDS & GRIDS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.services-grid-detailed,
.testimonials-grid,
.values-grid,
.stats-grid,
.routes-grid,
.regions-grid,
.posts-grid,
.categories-grid,
.paths-grid,
.training-grid,
.methods-grid,
.locations-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* BENEFIT CARDS */
.benefit-card,
.service-card,
.testimonial-card,
.value-card,
.stat-card,
.route-card,
.region-card,
.post-card,
.category-card,
.path-card,
.training-type-card,
.method-card,
.location-card,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover,
.service-card:hover,
.value-card:hover,
.route-card:hover,
.region-card:hover,
.post-card:hover,
.category-card:hover,
.path-card:hover,
.training-type-card:hover,
.method-card:hover,
.location-card:hover,
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.5);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.3);
  background: rgba(26, 31, 58, 0.8);
}

.benefit-card img,
.value-card img,
.category-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.route-card h3,
.category-card h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-card p,
.service-card p,
.value-card p,
.training-type-card p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* SERVICE CARDS DETAILED */
.service-card-detailed {
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 57, 70, 0.5);
  box-shadow: 0 8px 40px rgba(230, 57, 70, 0.3);
}

.service-card-detailed img {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
}

.service-card-detailed h3 {
  color: #FFFFFF;
  font-size: 22px;
}

.service-card-detailed ul {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.service-card-detailed li {
  color: #B0B0B0;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-card-detailed li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #E63946;
}

.price {
  color: #E63946;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  margin: 16px 0;
  display: block;
  text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

/* TESTIMONIALS */
.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: rgba(241, 250, 238, 0.05);
  border: 1px solid rgba(69, 123, 157, 0.2);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.testimonial-author strong {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.testimonial-author span {
  color: #457B9D;
  font-size: 14px;
}

/* STATS */
.stat-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(69, 123, 157, 0.3);
  border-radius: 12px;
  margin-bottom: 24px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #E63946;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.stat-label {
  display: block;
  color: #B0B0B0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ROUTE CARDS */
.route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}

.route-meta span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.route-location {
  background: rgba(69, 123, 157, 0.2);
  color: #457B9D;
  border: 1px solid rgba(69, 123, 157, 0.3);
}

.route-distance {
  background: rgba(230, 57, 70, 0.2);
  color: #E63946;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.route-difficulty {
  background: rgba(241, 250, 238, 0.1);
  color: #F1FAEE;
  border: 1px solid rgba(241, 250, 238, 0.3);
}

/* REGION CARDS */
.region-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 12px;
  margin-bottom: 24px;
}

.routes-count {
  display: block;
  color: #457B9D;
  font-size: 14px;
  margin-top: 8px;
  font-weight: 600;
}

/* POST CARDS */
.post-category {
  display: inline-block;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(230, 57, 70, 0.2);
  color: #E63946;
  border: 1px solid rgba(230, 57, 70, 0.3);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.post-meta span {
  color: #457B9D;
  font-size: 13px;
}

.post-date,
.post-time {
  display: inline-block;
}

/* PATH CARDS */
.path-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(69, 123, 157, 0.3);
  border-radius: 12px;
  margin-bottom: 24px;
}

.duration {
  display: block;
  color: #E63946;
  font-size: 14px;
  margin-top: 12px;
  font-weight: 600;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
  padding: 60px 20px;
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
  border: 1px solid rgba(230, 57, 70, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-banner h2 {
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #B0B0B0;
  position: relative;
  z-index: 1;
}

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

.cta-note,
.urgency-note,
.response-badge,
.guarantee-badge {
  display: block;
  margin-top: 16px;
  color: #457B9D;
  font-size: 14px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.price-display {
  display: block;
  font-size: 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #E63946;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(230, 57, 70, 0.5);
}

.benefits-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.benefits-list span {
  color: #B0B0B0;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(69, 123, 157, 0.3);
  border-radius: 20px;
  background: rgba(69, 123, 157, 0.05);
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.content-wrapper h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #E63946;
}

.content-wrapper h3 {
  text-align: left;
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #457B9D;
}

.content-wrapper p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 16px 0 16px 24px;
  color: #B0B0B0;
}

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* QUICK SUMMARY */
.quick-summary {
  padding: 40px 20px;
  background: rgba(69, 123, 157, 0.05);
  border-radius: 12px;
  margin: 40px 0;
}

.quick-summary h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #457B9D;
}

.quick-summary ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.quick-summary li {
  color: #B0B0B0;
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.quick-summary li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

/* RIGHTS EXERCISE */
.rights-exercise {
  padding: 40px 20px;
}

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

.step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(69, 123, 157, 0.3);
  border-radius: 12px;
  margin-bottom: 24px;
}

.step h3 {
  color: #E63946;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: #B0B0B0;
  font-size: 14px;
}

/* CONTACT PAGE */
.contact-form-section {
  padding: 60px 20px;
  background: rgba(26, 31, 58, 0.3);
}

.form-note {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 12px;
  text-align: center;
}

.form-note p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.form-note strong {
  color: #E63946;
  font-weight: 600;
}

/* LOCATION DETAILS */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}

.location-info {
  flex: 1 1 400px;
  background: rgba(26, 31, 58, 0.6);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.location-info h3 {
  color: #E63946;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.location-info h3:first-child {
  margin-top: 0;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 0 20px rgba(230, 57, 70, 0.5));
}

.next-steps,
.explore-more,
.while-you-wait {
  padding: 60px 20px;
}

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

.step-card,
.explore-card,
.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step-card h3,
.explore-card h3,
.suggestion-card h3 {
  color: #E63946;
  font-size: 20px;
}

.contact-info-repeat {
  padding: 60px 20px;
  text-align: center;
  background: rgba(26, 31, 58, 0.3);
}

.contact-details {
  max-width: 600px;
  margin: 32px auto 0;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(69, 123, 157, 0.3);
  border-radius: 12px;
}

.contact-details p {
  margin-bottom: 12px;
  color: #B0B0B0;
}

/* GROUP BENEFITS */
.group-benefits {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
}

.group-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

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

.group-benefits li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #E63946;
}

/* STORY CONTENT */
.story-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(26, 31, 58, 0.6);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid rgba(230, 57, 70, 0.2);
}

.story-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

/* KEY POINTS */
.key-points {
  padding: 40px 20px;
  background: rgba(69, 123, 157, 0.05);
}

.key-points h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #457B9D;
}

.key-points ul {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.key-points li {
  color: #B0B0B0;
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.key-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E63946;
  font-weight: 700;
  font-size: 18px;
}

/* CTA BUTTONS */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 1px solid rgba(230, 57, 70, 0.2);
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-section img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(230, 57, 70, 0.5));
}

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

.footer-section p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(230, 57, 70, 0.1);
}

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

/* COOKIE CONSENT BANNER */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98) 0%, rgba(26, 31, 58, 0.98) 100%);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 9999;
  border-top: 2px solid rgba(230, 57, 70, 0.5);
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all-cookies {
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

#accept-all-cookies:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(230, 57, 70, 0.6);
}

#reject-all-cookies {
  background: transparent;
  color: #B0B0B0;
  border: 1px solid rgba(176, 176, 176, 0.3);
}

#reject-all-cookies:hover {
  background: rgba(176, 176, 176, 0.1);
  color: #FFFFFF;
}

#cookie-settings-btn {
  background: transparent;
  color: #457B9D;
  border: 1px solid rgba(69, 123, 157, 0.3);
}

#cookie-settings-btn:hover {
  background: rgba(69, 123, 157, 0.1);
  border-color: rgba(69, 123, 157, 0.5);
}

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

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

.modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border: 2px solid rgba(230, 57, 70, 0.3);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.8);
}

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

.modal-header h2 {
  color: #E63946;
  font-size: 24px;
  margin-bottom: 0;
}

#close-modal {
  background: transparent;
  color: #E63946;
  border: 2px solid #E63946;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#close-modal:hover {
  background: #E63946;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 0;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

.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: rgba(176, 176, 176, 0.3);
  border: 1px solid rgba(176, 176, 176, 0.5);
  transition: 0.3s;
  border-radius: 26px;
}

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

input:checked + .slider {
  background: rgba(230, 57, 70, 0.3);
  border-color: #E63946;
}

input:checked + .slider:before {
  transform: translateX(24px);
  background: #E63946;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

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

.modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

#save-preferences {
  flex: 1;
  padding: 12px 24px;
  background: linear-gradient(135deg, #E63946 0%, #C41E2A 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.5);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* MOBILE MENU */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 28px; }
  
  /* SECTIONS */
  section,
  .section { padding: 40px 20px; }
  
  /* HERO */
  .hero { padding: 60px 20px; }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* CARDS */
  .benefit-card,
  .service-card,
  .service-card-detailed,
  .testimonial-card,
  .value-card,
  .stat-card,
  .route-card,
  .region-card,
  .post-card,
  .category-card,
  .path-card,
  .training-type-card,
  .method-card,
  .location-card,
  .card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE CONSENT */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* MODAL */
  .modal-content {
    padding: 24px;
  }
  
  /* LOCATION DETAILS */
  .location-details {
    flex-direction: column;
  }
  
  /* STORY CONTENT */
  .story-content {
    padding: 24px;
  }
  
  /* CONTENT WRAPPER */
  .content-wrapper {
    padding: 24px;
  }
  
  /* STEPS */
  .step,
  .step-card,
  .explore-card,
  .suggestion-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* CARDS 2 COLUMNS ON TABLET */
  .benefit-card,
  .service-card,
  .value-card,
  .route-card,
  .post-card,
  .category-card,
  .training-type-card,
  .method-card,
  .location-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .stat-card,
  .region-card,
  .path-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease-out;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-settings-modal {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .btn {
    border: 1px solid black;
  }
}