/* ===================================
   ADAPTIVE SPARK - VIBRANT ENERGETIC CSS
   Vibrant and energetic design
   =================================== */

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

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

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

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

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

ul, ol {
  list-style-position: inside;
}

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

h1 {
  font-size: 48px;
  color: #C84C3C;
  text-shadow: 3px 3px 0px rgba(240, 168, 71, 0.3);
}

h2 {
  font-size: 32px;
  color: #1B4B7F;
  border-bottom: 4px solid #F0A847;
  padding-bottom: 8px;
  display: inline-block;
}

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

h4 {
  font-size: 18px;
  color: #1B4B7F;
}

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

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

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

/* HEADER - VIBRANT ENERGETIC */
header {
  background: linear-gradient(135deg, #1B4B7F 0%, #C84C3C 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(199, 76, 60, 0.3);
  border-bottom: 5px solid #F0A847;
}

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

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

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

.logo:hover img {
  transform: scale(1.1) rotate(-5deg);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background: #F0A847;
  color: #1B4B7F;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(240, 168, 71, 0.4);
}

/* CTA BUTTON - HIGH ENERGY */
.cta-button {
  background: linear-gradient(135deg, #F0A847 0%, #C84C3C 100%);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(199, 76, 60, 0.4);
  transition: all 0.3s ease;
  border: 3px solid #ffffff;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(240, 168, 71, 0.6);
  background: linear-gradient(135deg, #C84C3C 0%, #F0A847 100%);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: #F0A847;
  border: 3px solid #ffffff;
  color: #1B4B7F;
  font-size: 28px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(240, 168, 71, 0.4);
}

.mobile-menu-toggle:hover {
  background: #C84C3C;
  color: #ffffff;
  transform: rotate(90deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1B4B7F 0%, #C84C3C 100%);
  z-index: 2000;
  padding: 24px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0,0,0,0.5);
  border-left: 5px solid #F0A847;
}

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

.mobile-menu-close {
  background: #F0A847;
  border: 3px solid #ffffff;
  color: #1B4B7F;
  font-size: 32px;
  font-weight: 800;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(240, 168, 71, 0.4);
}

.mobile-menu-close:hover {
  background: #C84C3C;
  color: #ffffff;
  transform: rotate(180deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: #F0A847;
  color: #1B4B7F;
  transform: translateX(10px);
  border-color: #ffffff;
}

/* HERO SECTION - ELECTRIC ENERGY */
.hero {
  background: linear-gradient(135deg, #C84C3C 0%, #1B4B7F 50%, #F0A847 100%) !important;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #F0A847;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: energyPulse 20s linear infinite;
}

@keyframes energyPulse {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0px rgba(240, 168, 71, 0.5), 8px 8px 0px rgba(27, 75, 127, 0.3);
  animation: bounceIn 0.8s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

.hero-subtitle {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.trust-badge {
  color: #F0A847;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
}

/* BUTTONS - VIBRANT */
.btn-primary, .btn-secondary, .btn-link {
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #F0A847 0%, #C84C3C 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(240, 168, 71, 0.4);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(199, 76, 60, 0.6);
  background: linear-gradient(135deg, #C84C3C 0%, #F0A847 100%);
}

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

.btn-secondary:hover {
  background: #F0A847;
  color: #1B4B7F;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(240, 168, 71, 0.4);
}

.btn-link {
  background: #1B4B7F;
  color: #ffffff;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-link:hover {
  background: #C84C3C;
  transform: translateX(5px);
}

/* SECTIONS - DYNAMIC LAYOUTS */
section {
  padding: 60px 24px;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(135deg, rgba(240, 168, 71, 0.05) 0%, rgba(27, 75, 127, 0.05) 100%);
}

.page-hero {
  background: linear-gradient(135deg, #1B4B7F 0%, #C84C3C 100%) !important;
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 8px solid #F0A847;
}

.page-hero h1 {
  color: #ffffff;
  text-shadow: 3px 3px 0px rgba(240, 168, 71, 0.5);
}

.page-hero p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

/* CONTENT WRAPPERS */
.content-wrapper, .text-section {
  max-width: 900px;
  margin: 0 auto;
}

.intro {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: #1B4B7F;
  margin-bottom: 40px;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.stats-grid, .services-grid, .features-grid, .testimonial-grid, .process-steps,
.category-grid, .tips-grid, .season-grid, .myth-grid, .protocol-grid,
.benefits-grid, .workshop-grid, .info-grid, .guides-list, .exercise-grid,
.tools-grid, .options-grid, .faq-grid, .package-grid, .values-grid,
.locations-grid, .resource-grid, .links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

/* CARDS - ENERGETIC STYLE */
.stat-card, .service-card, .feature, .testimonial-card, .step,
.category-card, .tip-card, .season-card, .myth-card, .protocol-card,
.benefit, .workshop-card, .info-card, .guide-item, .exercise-card,
.tool-card, .option-card, .faq-item, .package-card, .value,
.location-card, .resource-card, .link-card, .info-block {
  flex: 1 1 300px;
  background: #ffffff;
  border: 4px solid #F0A847;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(240, 168, 71, 0.2);
}

.stat-card::before, .service-card::before, .feature::before,
.category-card::before, .tip-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(240, 168, 71, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.stat-card:hover, .service-card:hover, .feature:hover,
.category-card:hover, .tip-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(199, 76, 60, 0.3);
  border-color: #C84C3C;
}

.stat-card:hover::before, .service-card:hover::before, .feature:hover::before {
  left: 100%;
}

/* STAT CARDS */
.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #1B4B7F 0%, #C84C3C 100%);
  border: none;
  color: #ffffff;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #F0A847;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
}

.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICE CARDS */
.service-card h3, .workshop-card h3 {
  margin-bottom: 16px;
  color: #C84C3C;
}

.price {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #1B4B7F;
  margin: 16px 0;
  text-shadow: 2px 2px 0px rgba(240, 168, 71, 0.3);
}

/* TESTIMONIALS */
.testimonial-card {
  background: linear-gradient(135deg, #F0A847 0%, #C84C3C 100%);
  color: #ffffff;
  border: none;
  font-style: italic;
}

.testimonial-card p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
}

.client-name {
  display: block;
  font-weight: 800;
  color: #1B4B7F;
  margin-top: 16px;
  font-style: normal;
}

.client-role {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
}

/* PROCESS STEPS */
.step {
  text-align: center;
  flex: 1 1 220px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C84C3C 0%, #1B4B7F 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 6px 20px rgba(199, 76, 60, 0.4);
  border: 4px solid #F0A847;
}

/* TWO COLUMN LAYOUTS */
.two-column {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.dos, .donts {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 4px solid #F0A847;
}

.dos h3 {
  color: #1B4B7F;
}

.donts h3 {
  color: #C84C3C;
}

.dos ul, .donts ul {
  margin-top: 16px;
}

.dos li, .donts li {
  margin-bottom: 12px;
  padding-left: 8px;
}

/* CTA BANNERS */
.cta-banner {
  background: linear-gradient(135deg, #1B4B7F 0%, #C84C3C 100%) !important;
  padding: 60px 24px;
  text-align: center;
  border-top: 8px solid #F0A847;
  border-bottom: 8px solid #F0A847;
}

.cta-banner h2 {
  color: #ffffff;
  border: none;
  display: block;
  margin-bottom: 24px;
}

.cta-banner p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

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

/* SERVICE DETAILS */
.service-full {
  background: #ffffff;
  padding: 32px;
  border: 4px solid #F0A847;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(240, 168, 71, 0.2);
}

.service-full h2 {
  color: #C84C3C;
  display: block;
  border: none;
}

.service-meta {
  display: flex;
  gap: 24px;
  margin: 16px 0 24px;
  flex-wrap: wrap;
}

.duration {
  background: #1B4B7F;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1B4B7F 0%, #0d2540 100%);
  color: #ffffff;
  padding: 60px 24px 24px;
  border-top: 8px solid #F0A847;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.footer-column h4 {
  color: #F0A847;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #F0A847;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid rgba(240, 168, 71, 0.3);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #F0A847;
}

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

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B4B7F 0%, #0d2540 100%);
  color: #ffffff;
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.4);
  border-top: 5px solid #F0A847;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-consent.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 400px;
}

.cookie-text p {
  color: #ffffff;
  margin-bottom: 8px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
}

.cookie-accept {
  background: #F0A847;
  color: #1B4B7F;
  border-color: #ffffff;
}

.cookie-accept:hover {
  background: #C84C3C;
  color: #ffffff;
  transform: scale(1.05);
}

.cookie-reject {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.cookie-settings:hover {
  background: #F0A847;
  color: #1B4B7F;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 5px solid #F0A847;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #C84C3C;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(240, 168, 71, 0.1);
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #F0A847;
}

.cookie-category h3 {
  color: #1B4B7F;
  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: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #F0A847;
}

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

.toggle-switch.active::after {
  left: 33px;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE - MOBILE FIRST */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .stats-grid, .services-grid, .features-grid {
    gap: 20px;
  }
  
  .stat-card, .service-card, .feature {
    flex: 1 1 100%;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .stat-card, .service-card, .feature {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 1025px) {
  .stat-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .feature {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ANIMATIONS */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #F0A847;
  outline-offset: 2px;
}

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