/* ===================================
   NOVA LEARNER - TECH FUTURISTIC CSS
   Design Style: Futuristic tech-inspired
   =================================== */

/* 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 50%, #0D1B2A 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #00BFFF, #1E90FF, #00CED1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #00BFFF;
}

h3 {
  font-size: 24px;
  color: #1E90FF;
}

h4 {
  font-size: 18px;
  color: #00CED1;
}

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

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

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

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

li {
  margin-bottom: 8px;
}

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

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

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 191, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.2);
}

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

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

.logo img:hover {
  transform: scale(1.05) rotate(2deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  color: #00BFFF;
}

.main-nav a:hover {
  background: rgba(0, 191, 255, 0.1);
  border-color: #00BFFF;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(0, 191, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 30px rgba(0, 191, 255, 0.3);
  border-left: 2px solid rgba(0, 191, 255, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #00BFFF;
  border: 2px solid #00BFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(0, 191, 255, 0.05);
  border-left: 4px solid #00BFFF;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #FFFFFF;
}

.mobile-nav a:hover {
  background: rgba(0, 191, 255, 0.15);
  border-left-width: 8px;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  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, #00BFFF, #1E90FF);
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.4);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00BFFF;
  border-color: #00BFFF;
  position: relative;
  z-index: 1;
}

.btn-secondary:hover {
  background: rgba(0, 191, 255, 0.1);
  border-color: #00CED1;
  color: #00CED1;
  box-shadow: 0 4px 20px rgba(0, 191, 255, 0.3);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 191, 255, 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; }
}

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

.hero h1 {
  margin-bottom: 24px;
  font-size: 56px;
}

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

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

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

.trust-indicators span {
  font-size: 14px;
  color: #00BFFF;
  padding: 8px 16px;
  background: rgba(0, 191, 255, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

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

.page-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
  text-align: center;
  border-bottom: 2px solid rgba(0, 191, 255, 0.3);
}

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

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

/* CARDS & GRIDS */
.services-grid,
.problem-list,
.process-steps,
.specialization-grid,
.trust-grid,
.testimonials-grid,
.services-overview .services-grid,
.service-list,
.method-grid,
.case-grid,
.problems-list,
.factors-grid,
.principles-grid,
.countries-list,
.scenarios-grid,
.mission-grid,
.reasons-grid,
.stats-grid,
.price-list,
.guarantee-list,
.contact-grid,
.remote-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.step,
.spec-item,
.trust-item,
.testimonial-card,
.service-item,
.method-item,
.case-item,
.problem-item,
.factor-item,
.principle-item,
.country-group,
.scenario-item,
.mission-item,
.reason-item,
.stat-item,
.price-item,
.guarantee-item,
.contact-method,
.remote-option {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before,
.step::before,
.spec-item::before,
.trust-item::before,
.service-item::before,
.method-item::before,
.case-item::before,
.problem-item::before,
.factor-item::before,
.principle-item::before,
.scenario-item::before,
.mission-item::before,
.reason-item::before,
.price-item::before,
.guarantee-item::before,
.contact-method::before,
.remote-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00BFFF, #1E90FF, #00CED1);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover,
.step:hover,
.spec-item:hover,
.trust-item:hover,
.service-item:hover,
.method-item:hover,
.case-item:hover,
.problem-item:hover,
.factor-item:hover,
.principle-item:hover,
.scenario-item:hover,
.mission-item:hover,
.reason-item:hover,
.price-item:hover,
.guarantee-item:hover,
.contact-method:hover,
.remote-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 191, 255, 0.3);
  border-color: #00BFFF;
}

.service-card:hover::before,
.step:hover::before,
.spec-item:hover::before,
.trust-item:hover::before,
.service-item:hover::before,
.method-item:hover::before,
.case-item:hover::before,
.problem-item:hover::before,
.factor-item:hover::before,
.principle-item:hover::before,
.scenario-item:hover::before,
.mission-item:hover::before,
.reason-item:hover::before,
.price-item:hover::before,
.guarantee-item:hover::before,
.contact-method:hover::before,
.remote-option:hover::before {
  transform: scaleX(1);
}

.service-card h3,
.step h3,
.spec-item h3,
.trust-item h3,
.service-item h3,
.method-item h3,
.case-item h3,
.problem-item h3,
.factor-item h3,
.principle-item h3,
.scenario-item h3,
.mission-item h3,
.reason-item h3,
.price-item h3,
.guarantee-item h3,
.contact-method h3,
.remote-option h3 {
  margin-bottom: 16px;
  color: #00BFFF;
}

.price,
.service-price {
  font-size: 28px;
  font-weight: 700;
  color: #00CED1;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(0, 206, 209, 0.5);
}

.service-duration,
.duration {
  font-size: 14px;
  color: #78909C;
  font-style: italic;
  margin-top: 16px;
}

/* FEATURED/SPECIAL CARDS */
.featured {
  border: 2px solid #00BFFF;
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
  position: relative;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.savings,
.payment-option {
  font-size: 14px;
  color: #00CED1;
  font-weight: 600;
  margin-top: 12px;
}

/* PROCESS STEPS */
.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
  color: #FFFFFF;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

/* STATISTICS */
.statistics {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

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

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

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

/* TESTIMONIALS */
.testimonial-card {
  background: rgba(26, 31, 58, 0.8);
  border-left: 4px solid #00BFFF;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 24px);
}

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

.testimonial-author {
  color: #00BFFF !important;
  font-weight: 600;
  font-style: italic;
  font-size: 14px !important;
}

/* HIGHLIGHT BOXES */
.highlight-box,
.trust-badge {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), rgba(30, 144, 255, 0.1));
  border: 2px solid #00BFFF;
  border-radius: 12px;
  padding: 24px 32px;
  margin: 32px 0;
  text-align: center;
}

.highlight-box p,
.trust-badge {
  color: #FFFFFF;
  font-size: 18px;
  margin: 0;
}

/* CTA SECTIONS */
.cta-section,
.cta-final {
  background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  margin-top: 60px;
  border: 2px solid rgba(0, 191, 255, 0.3);
}

.cta-section h2,
.cta-final h2 {
  margin-bottom: 16px;
}

.reassurance {
  font-size: 14px;
  color: #78909C;
  margin-top: 16px;
  font-style: italic;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(0, 191, 255, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-section h3,
.footer-section h4 {
  color: #00BFFF;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 191, 255, 0.2);
  color: #78909C;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 58, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid #00BFFF;
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 30px rgba(0, 191, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #E0E0E0;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  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: 2001;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27, #1A1F3A);
  border: 2px solid #00BFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 191, 255, 0.4);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #00BFFF;
  font-size: 28px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(0, 191, 255, 0.05);
  border-left: 4px solid #00BFFF;
  border-radius: 8px;
}

.cookie-category h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 191, 255, 0.3);
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #00BFFF, #1E90FF);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
}

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

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

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

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

/* THANK YOU PAGE */
.thank-you-page {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content,
.next-steps,
.useful-links,
.social-proof {
  max-width: 700px;
  margin: 40px auto;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
}

/* OFFICE DETAILS */
.office-info {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.office-address,
.office-hours,
.directions {
  flex: 1 1 250px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  /* Cards */
  .service-card,
  .step,
  .spec-item,
  .trust-item,
  .testimonial-card,
  .service-item,
  .method-item,
  .case-item,
  .problem-item,
  .factor-item,
  .principle-item,
  .scenario-item,
  .mission-item,
  .reason-item,
  .stat-item,
  .price-item,
  .guarantee-item,
  .contact-method,
  .remote-option {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  /* Padding adjustments */
  .section,
  section {
    padding: 40px 20px;
  }
  
  .hero,
  .page-hero {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .legal-content,
  .cookie-modal-content {
    padding: 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;
}

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

button:focus,
a:focus {
  outline: 2px solid #00CED1;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

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

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

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

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

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

/* FORM ELEMENTS (if needed) */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 191, 255, 0.3);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #00BFFF;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.3);
  outline: none;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* LOADING STATES */
.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 191, 255, 0.2);
  border-top-color: #00BFFF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}