/* ============================================
   RADIANT STROLL - MODERN BOLD DESIGN SYSTEM
   ============================================ */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ============================================
   MODERN BOLD TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 24px;
}

h1 {
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h2 {
  font-size: 48px;
  text-transform: uppercase;
}

h3 {
  font-size: 32px;
  font-weight: 800;
}

h4 {
  font-size: 24px;
  font-weight: 800;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2a2a2a;
  font-weight: 400;
}

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

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.6;
}

strong {
  font-weight: 900;
  color: #000000;
}

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

section {
  margin-bottom: 80px;
  padding: 60px 0;
  position: relative;
}

/* ============================================
   HEADER - BOLD & PROMINENT
   ============================================ */
header {
  background: linear-gradient(135deg, #2D5F3F 0%, #1a3d28 100%);
  padding: 24px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #8FBC8F;
}

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

.logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.main-nav a:hover {
  background-color: #8FBC8F;
  color: #000000;
  border-color: #F4E4C1;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - BOLD SLIDE-IN
   ============================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  background: #2D5F3F;
  color: #ffffff;
  border: 3px solid #8FBC8F;
  padding: 16px 20px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  font-weight: 900;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #8FBC8F;
  color: #000000;
  transform: scale(1.1);
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 3px solid #ffffff;
  color: #ffffff;
  font-size: 32px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px;
  border: 3px solid #8FBC8F;
  border-radius: 8px;
  text-align: center;
  background: rgba(143, 188, 143, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #F4E4C1;
  color: #000000;
  transform: translateX(10px);
  border-color: #F4E4C1;
}

/* ============================================
   HERO SECTION - BOLD & IMPACTFUL
   ============================================ */
.hero {
  background: linear-gradient(135deg, #8FBC8F 0%, #2D5F3F 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid #F4E4C1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 32px;
  line-height: 1.1;
}

.hero p {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* ============================================
   BUTTONS - BOLD & GEOMETRIC
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 4px solid;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #F4E4C1;
  color: #000000;
  border-color: #000000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: #000000;
  color: #F4E4C1;
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: #ffffff;
  color: #2D5F3F;
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(255, 255, 255, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ============================================
   CARDS - BOLD GEOMETRIC STYLE
   ============================================ */
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.categories-grid,
.tips-grid,
.info-grid,
.themes-grid,
.details-grid,
.values-grid,
.achievements-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.step,
.testimonial-card,
.category-card,
.tip-card,
.info-card,
.theme-card,
.detail-card,
.value-card,
.achievement-card,
.method-card,
.faq-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border: 6px solid #000000;
  position: relative;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.1);
}

.benefit-card:hover,
.service-card:hover,
.category-card:hover,
.tip-card:hover,
.theme-card:hover,
.value-card:hover,
.method-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 16px 16px 0 #F4E4C1;
  border-color: #2D5F3F;
}

.benefit-card h3,
.service-card h3,
.category-card h3,
.tip-card h3,
.theme-card h3,
.detail-card h3,
.value-card h3,
.method-card h3 {
  color: #2D5F3F;
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-card p,
.service-card p,
.category-card p,
.tip-card p,
.theme-card p,
.detail-card p,
.value-card p,
.method-card p {
  color: #2a2a2a;
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   PRICE DISPLAY - BOLD & PROMINENT
   ============================================ */
.price,
.price-display {
  font-size: 36px;
  font-weight: 900;
  color: #2D5F3F;
  margin: 20px 0;
  padding: 16px 24px;
  background: #F4E4C1;
  border: 4px solid #000000;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */
.testimonials {
  background: #F4E4C1;
  padding: 80px 0;
  border-top: 8px solid #2D5F3F;
  border-bottom: 8px solid #2D5F3F;
}

.testimonial-card {
  background: #ffffff;
  border: 6px solid #000000;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.7;
}

.client-name {
  font-weight: 900;
  color: #2D5F3F;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.rating {
  color: #FFD700;
  font-size: 28px;
  letter-spacing: 4px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

/* ============================================
   STEPS - GEOMETRIC NUMBERS
   ============================================ */
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #2D5F3F;
  color: #F4E4C1;
  border: 6px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.step h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

/* ============================================
   BREADCRUMBS - BOLD NAVIGATION
   ============================================ */
.breadcrumbs {
  font-size: 16px;
  margin-bottom: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: #F4E4C1;
}

.breadcrumbs span {
  color: #F4E4C1;
  font-weight: 900;
}

/* ============================================
   FOOTER - BOLD & STRUCTURED
   ============================================ */
footer {
  background: linear-gradient(135deg, #1a3d28 0%, #000000 100%);
  color: #ffffff;
  padding: 80px 0 32px;
  border-top: 8px solid #8FBC8F;
}

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

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

.footer-logo {
  height: 60px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.tagline {
  font-size: 16px;
  font-weight: 700;
  color: #8FBC8F;
  font-style: italic;
}

.footer-section h4 {
  color: #F4E4C1;
  font-size: 22px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  border-bottom: 4px solid #8FBC8F;
  padding-bottom: 12px;
}

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

.footer-nav a {
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-left: 4px solid transparent;
  padding-left: 12px;
}

.footer-nav a:hover {
  color: #F4E4C1;
  border-left-color: #F4E4C1;
  padding-left: 20px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 4px solid #8FBC8F;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   TRUST BADGES - BOLD HIGHLIGHTS
   ============================================ */
.trust-badge,
.trust-indicator,
.phone-display,
.phone-contact,
.secondary-contact,
.overall-rating {
  background: #000000;
  color: #F4E4C1;
  padding: 16px 32px;
  border: 4px solid #F4E4C1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 24px;
  font-size: 16px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

/* ============================================
   COOKIE CONSENT BANNER - BOLD DESIGN
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 32px;
  z-index: 1998;
  border-top: 8px solid #F4E4C1;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-text {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 4px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}

.cookie-accept {
  background: #8FBC8F;
  color: #000000;
  border-color: #000000;
}

.cookie-accept:hover {
  background: #F4E4C1;
  transform: translateY(-2px);
}

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

.cookie-reject:hover {
  background: #ffffff;
  color: #000000;
}

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

.cookie-settings:hover {
  background: #F4E4C1;
  color: #000000;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #ffffff;
  padding: 48px;
  border: 8px solid #000000;
  box-shadow: 16px 16px 0 rgba(0, 0, 0, 0.3);
  z-index: 1999;
  max-width: 600px;
  width: 90%;
  transition: transform 0.3s ease;
}

.cookie-modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal h3 {
  color: #2D5F3F;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  border: 4px solid #8FBC8F;
  background: #F4E4C1;
}

.cookie-category label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

.cookie-toggle {
  width: 60px;
  height: 32px;
  background: #cccccc;
  border: 3px solid #000000;
  position: relative;
  cursor: pointer;
}

.cookie-toggle.active {
  background: #8FBC8F;
}

/* ============================================
   LEGAL CONTENT - READABLE
   ============================================ */
.legal-content {
  background: #ffffff;
  padding: 60px 0;
}

.legal-content h2 {
  color: #2D5F3F;
  font-size: 36px;
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 6px solid #F4E4C1;
}

.legal-content h3 {
  color: #2D5F3F;
  font-size: 24px;
  margin-top: 32px;
}

.legal-content p {
  color: #1a1a1a;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

.legal-content li {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 12px;
}

/* ============================================
   SUCCESS PAGE - BOLD CONFIRMATION
   ============================================ */
.success-icon {
  width: 120px;
  height: 120px;
  background: #8FBC8F;
  color: #000000;
  border: 8px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;
  margin: 0 auto 32px;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.2);
}

/* ============================================
   SPECIAL SECTIONS
   ============================================ */
.cta-banner,
.consultation-cta,
.registration-cta,
.cta,
.contact-cta {
  background: linear-gradient(135deg, #2D5F3F 0%, #000000 100%);
  color: #ffffff;
  padding: 80px 32px;
  text-align: center;
  border-top: 8px solid #F4E4C1;
  border-bottom: 8px solid #F4E4C1;
  position: relative;
}

.cta-banner h2,
.consultation-cta h2,
.registration-cta h2,
.cta h2,
.contact-cta h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-banner p,
.consultation-cta p,
.registration-cta p,
.cta p,
.contact-cta p {
  color: #F4E4C1;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* ============================================
   LISTS & UL ELEMENTS
   ============================================ */
.service-card ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.service-card li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-weight: 700;
  color: #1a1a1a;
  border-left: 6px solid #8FBC8F;
  margin-bottom: 12px;
}

.service-card li::before {
  content: '■';
  position: absolute;
  left: 8px;
  color: #2D5F3F;
  font-weight: 900;
}

/* ============================================
   ADDITIONAL INFO DISPLAYS
   ============================================ */
.duration,
.delivery-time,
.frequency,
.group-size {
  background: #F4E4C1;
  padding: 12px 24px;
  border: 4px solid #000000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin: 16px 0;
  font-size: 16px;
  color: #000000;
}

/* ============================================
   LINKS GRID
   ============================================ */
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.link-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #ffffff;
  padding: 32px;
  border: 6px solid #000000;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.link-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #8FBC8F;
  border-color: #2D5F3F;
}

.link-card h3 {
  color: #2D5F3F;
  font-size: 24px;
  margin-bottom: 16px;
}

.link-card p {
  color: #2a2a2a;
  font-size: 16px;
}

/* ============================================
   FAQ ITEMS
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.faq-item {
  flex: 1 1 100%;
  background: #F4E4C1;
  border-color: #2D5F3F;
}

.faq-item h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #1a1a1a;
  font-size: 16px;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  h4 { font-size: 20px; }
  p { font-size: 16px; }
  
  /* Container */
  .container { padding: 0 20px; }
  
  /* Sections */
  section { padding: 40px 0; margin-bottom: 40px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Hero */
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 18px; }
  
  /* Buttons */
  .cta-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .step,
  .testimonial-card,
  .category-card,
  .tip-card,
  .info-card,
  .theme-card,
  .detail-card,
  .value-card,
  .achievement-card,
  .method-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content { flex-direction: column; gap: 32px; }
  .footer-section { flex: 1 1 100%; }
  
  /* Cookie Banner */
  .cookie-buttons { flex-direction: column; }
  .cookie-accept, .cookie-reject, .cookie-settings { width: 100%; }
  
  /* Price */
  .price, .price-display { font-size: 28px; }
  
  /* Step Number */
  .step-number { width: 60px; height: 60px; font-size: 36px; }
  
  /* Links Grid */
  .link-card { flex: 1 1 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  h1 { font-size: 44px; }
  h2 { font-size: 38px; }
  
  .benefit-card,
  .service-card,
  .category-card,
  .tip-card,
  .theme-card,
  .value-card,
  .method-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .link-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body { color: #000000; background: #ffffff; }
  a { text-decoration: underline; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.visible { display: block; }

/* ============================================
   ACCESSIBILITY
   ============================================ */
:focus {
  outline: 4px solid #F4E4C1;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@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; }
}

.animate-fade { animation: fadeIn 0.6s ease; }
.animate-slide { animation: slideIn 0.6s ease; }
.animate-bounce { animation: bounceIn 0.8s ease; }