/* ============================================
   BRIGHT RETURNS - TECH FUTURISTIC CSS
   Modern, sleek, and energy-focused design
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

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

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

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

a:hover {
  color: #00ffff;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #e0e0e0;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #00d4ff;
}

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

/* HEADER */
header {
  background: rgba(15, 32, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #00d4ff;
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  color: #e0e0e0;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 14px;
}

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

.main-nav a:hover {
  color: #00ffff;
  background: rgba(0, 212, 255, 0.1);
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #00d4ff, #00ffff);
  border: none;
  color: #0f2027;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0f2027 0%, #203a43 100%);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 24px 24px;
  border-left: 2px solid #00d4ff;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 0, 0.8);
  border: none;
  color: #ffffff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 0, 0, 1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #e0e0e0;
  padding: 16px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  font-weight: 500;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
  color: #00ffff;
  transform: translateX(8px);
}

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

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #00ffff);
  color: #0f2027;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
  color: white !important;
}

.btn-secondary {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.2);
  color: #00ffff;
  border-color: #00ffff;
  transform: translateY(-2px);
}

/* SECTIONS */
section {
  padding: 80px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: #b0b0b0;
  margin-bottom: 40px;
  text-align: center;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.9) 0%, rgba(32, 58, 67, 0.9) 100%);
  padding: 120px 20px;
  text-align: center;
  border-bottom: 3px solid #00d4ff;
  position: relative;
  overflow: hidden;
}

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

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #b0b0b0;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.trust-indicators span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00d4ff;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  font-size: 14px;
}

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

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, rgba(15, 32, 39, 0.95) 0%, rgba(32, 58, 67, 0.95) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #00d4ff;
}

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

/* CARDS & GRIDS */
.services-grid,
.courses-grid,
.benefits-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.stats-grid,
.articles-grid-layout,
.resources-grid,
.options-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.course-card,
.benefit-item,
.testimonial-card,
.value-item,
.team-member,
.stat-item,
.article-card,
.resource-card,
.option-card,
.suggestion-card {
  background: rgba(15, 32, 39, 0.8);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  margin-bottom: 24px;
}

.service-card::before,
.course-card::before,
.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #00ffff);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before,
.course-card:hover::before,
.option-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover,
.course-card:hover,
.option-card:hover {
  transform: translateY(-8px);
  border-color: #00d4ff;
  box-shadow: 0 12px 40px rgba(0, 212, 255, 0.3);
  background: rgba(15, 32, 39, 0.95);
}

.service-card.featured,
.course-card.featured,
.option-card.featured {
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff, #00ffff);
  color: #0f2027;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #00ffff;
  margin: 16px 0;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.duration {
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 16px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.course-features li {
  padding: 8px 0;
  color: #e0e0e0;
  position: relative;
  padding-left: 24px;
}

.course-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
}

/* TESTIMONIAL CARDS */
.testimonial-card {
  background: rgba(15, 32, 39, 0.9);
  border: 2px solid rgba(0, 212, 255, 0.3);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
}

.testimonial-card .quote {
  font-size: 18px;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.8;
}

.testimonial-card .author {
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #ffd700;
  font-size: 18px;
}

/* PROBLEM-SOLUTION */
.problem-solution {
  background: rgba(32, 58, 67, 0.5);
}

.problem-box,
.solution-box {
  background: rgba(15, 32, 39, 0.8);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.problem-box {
  border-left: 4px solid #ff6b6b;
}

.solution-box {
  border-left: 4px solid #00d4ff;
}

/* BENEFITS */
.benefit-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.results-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
  padding: 32px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 16px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.results-stats p {
  color: #ffffff;
  font-size: 18px;
}

.results-stats strong {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  color: #00ffff;
}

/* STATS */
.stats-inline {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.stats-inline span {
  color: #00d4ff;
  font-weight: 600;
  font-size: 16px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* FEATURED STORY */
.featured-story {
  background: rgba(15, 32, 39, 0.9);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid #00d4ff;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.featured-story blockquote {
  font-size: 24px;
  font-style: italic;
  color: #ffffff;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 4px solid #00d4ff;
}

.story-content h3 {
  color: #00d4ff;
  margin-top: 32px;
}

.role,
.credentials,
.specialty {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 8px;
}

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

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.milestone strong {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
  color: #00ffff;
}

/* ARTICLES */
.article-featured {
  background: rgba(15, 32, 39, 0.9);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid #00d4ff;
  margin-bottom: 60px;
}

.article-meta,
.meta {
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 16px;
}

/* NEWSLETTER */
.newsletter-box {
  background: rgba(15, 32, 39, 0.9);
  padding: 48px;
  border-radius: 16px;
  border: 2px solid #00d4ff;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
}

.newsletter-box .benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.subscribers {
  color: #00d4ff;
  font-weight: 600;
  margin-top: 24px;
}

/* CONTACT FORMS */
.form-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.form-info,
.form-container {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.form-info {
  background: rgba(15, 32, 39, 0.8);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.contact-details {
  margin-top: 24px;
}

.contact-details p {
  margin-bottom: 16px;
  color: #e0e0e0;
}

.form-note,
.form-instruction {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 16px;
}

/* LOCATION */
.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.location-details {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background: rgba(15, 32, 39, 0.8);
  padding: 32px;
  border-radius: 16px;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.address {
  font-size: 18px;
  margin-bottom: 24px;
}

.note {
  color: #00d4ff;
  font-style: italic;
  margin-top: 16px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: rgba(15, 32, 39, 0.8);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00d4ff;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.2);
}

.faq-item h3 {
  color: #00d4ff;
  margin-bottom: 12px;
}

/* LEGAL CONTENT */
.legal-hero {
  background: rgba(15, 32, 39, 0.9);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 2px solid #00d4ff;
}

.last-updated {
  color: #b0b0b0;
  font-size: 14px;
  margin-bottom: 16px;
}

.legal-content {
  background: rgba(32, 58, 67, 0.5);
}

.legal-content h2 {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.legal-content h3 {
  color: #00d4ff;
  margin-top: 24px;
}

/* THANK YOU */
.thank-you-hero {
  padding: 120px 20px;
  text-align: center;
}

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

.checkmark {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4ff, #00ffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0f2027;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.subtitle {
  color: #00d4ff;
  font-size: 20px;
  margin-bottom: 16px;
}

.next-steps {
  background: rgba(32, 58, 67, 0.5);
}

.steps-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: rgba(15, 32, 39, 0.8);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid rgba(0, 212, 255, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d4ff, #00ffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  color: #0f2027;
  margin: 0 auto 24px;
}

/* CTA SECTIONS */
.cta-section,
.final-cta {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%);
  text-align: center;
  padding: 80px 20px;
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 16px;
  margin: 40px 20px;
}

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

.guarantee,
.trust-note {
  color: #00d4ff;
  font-weight: 600;
  margin-top: 24px;
  font-size: 14px;
}

/* FOOTER */
footer {
  background: rgba(15, 32, 39, 0.95);
  border-top: 3px solid #00d4ff;
  padding: 60px 20px 24px;
  margin-top: 80px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 212, 255, 0.3);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 32, 39, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid #00d4ff;
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 auto;
  color: #e0e0e0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 100%);
  border: 2px solid #00d4ff;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 0, 0, 0.8);
  border: none;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 0, 0, 1);
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(0, 212, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #00d4ff;
  font-size: 18px;
  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;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #00d4ff, #00ffff);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  .hero h1 { font-size: 48px; }
  
  .service-card,
  .course-card,
  .benefit-item,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .hero h1 { font-size: 36px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  .header-cta {
    display: none;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .service-card,
  .course-card,
  .benefit-item,
  .testimonial-card,
  .value-item,
  .team-member,
  .stat-item,
  .article-card,
  .resource-card,
  .option-card,
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  .results-stats,
  .stats-inline {
    flex-direction: column;
    gap: 16px;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .form-wrapper,
  .location-content {
    flex-direction: column;
  }
  
  .milestones {
    flex-direction: column;
  }
  
  .steps-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero h1 { font-size: 28px; }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .course-card,
  .option-card,
  .featured-story,
  .newsletter-box {
    padding: 24px;
  }
  
  .price {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

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

.service-card,
.course-card,
.benefit-item,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 2px solid #00ffff;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    text-shadow: none;
  }
}