/* =================================================================
   CoreSurge Hobbywelt - Modern Bold Design Style
   CSS Reset, Base Styles, and Complete Component Styling
   ================================================================= */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #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: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =================================================================
   MODERN BOLD DESIGN VARIABLES
   ================================================================= */
:root {
  --primary-color: #FF6B35;
  --secondary-color: #004E89;
  --accent-color: #F7B731;
  --dark-color: #1a1a1a;
  --light-color: #ffffff;
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #666666;
  
  --font-display: 'Merriweather', Georgia, serif;
  --font-body: 'Open Sans', sans-serif;
  
  --shadow-small: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-large: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  --border-radius: 8px;
  --transition-speed: 0.3s;
}

/* =================================================================
   TYPOGRAPHY - BOLD & MODERN
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark-color);
  margin-bottom: 16px;
}

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

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
}

/* =================================================================
   LAYOUT CONTAINERS - FLEXBOX ONLY
   ================================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 80px;
  padding: 60px 20px;
}

/* =================================================================
   HEADER & NAVIGATION - BOLD MODERN STYLE
   ================================================================= */
header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #003366 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: var(--light-color);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent-color);
}

/* =================================================================
   MOBILE MENU - HAMBURGER & SLIDE-IN
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--primary-color);
  color: var(--light-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: var(--shadow-large);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  border-left-color: var(--accent-color);
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* =================================================================
   BUTTONS - BOLD & GEOMETRIC
   ================================================================= */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  text-align: center;
  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.3);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

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

.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover,
.btn-primary:focus {
  background: #E85A2A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--light-color);
  box-shadow: var(--shadow-medium);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #003D6B;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.btn-link {
  color: var(--primary-color);
  font-weight: 700;
  padding: 8px 0;
  position: relative;
}

.btn-link::after {
  content: ' →';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.btn-link:hover::after,
.btn-link:focus::after {
  margin-left: 12px;
}

/* =================================================================
   HERO SECTION - BOLD & IMPACTFUL
   ================================================================= */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--light-color);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

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

.hero h1 {
  color: var(--light-color);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.5;
}

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

.trust-badge {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
}

/* =================================================================
   PAGE HERO (INTERNAL PAGES)
   ================================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--light-color);
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: var(--light-color);
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: var(--accent-color);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--light-color);
}

.last-updated {
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
}

/* =================================================================
   CARD GRIDS - FLEXBOX LAYOUTS
   ================================================================= */
.category-grid,
.services-grid,
.values-grid,
.testimonial-grid,
.subcategory-grid,
.workshop-grid,
.schedule-grid,
.games-grid,
.features-grid,
.benefits-grid,
.stats-grid,
.contact-grid,
.transport-grid,
.highlights-grid,
.rights-grid,
.suggestion-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

/* =================================================================
   CARDS - BOLD GEOMETRIC DESIGN
   ================================================================= */
.category-card,
.service-card,
.value-card,
.testimonial-card,
.subcategory-card,
.workshop-card,
.schedule-card,
.game-card,
.feature-card,
.benefit-card,
.stat-card,
.contact-card,
.transport-card,
.highlight-card,
.right-card,
.suggestion-card,
.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--light-color);
  border: 3px solid var(--gray-medium);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.category-card::before,
.service-card::before,
.workshop-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.category-card:hover,
.service-card:hover,
.subcategory-card:hover,
.workshop-card:hover,
.suggestion-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.category-card h3,
.service-card h3,
.subcategory-card h3,
.workshop-card h3 {
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-size: 24px;
}

.price {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 900;
  margin: 16px 0;
}

.price-info {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 32px 0;
}

/* =================================================================
   TESTIMONIALS - HIGH CONTRAST
   ================================================================= */
.testimonials {
  background: var(--gray-light);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--light-color);
  border-left: 5px solid var(--primary-color);
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark-color);
  margin-bottom: 16px;
}

.testimonial-card p:first-child {
  font-style: italic;
  color: #333333;
}

.testimonial-author {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 16px;
}

/* =================================================================
   SCHEDULE CARDS
   ================================================================= */
.schedule-card {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--light-color);
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.schedule-card h3 {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 12px;
}

.event-name {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

.event-time {
  font-size: 14px;
  opacity: 0.9;
}

/* =================================================================
   TIMELINE (ABOUT PAGE)
   ================================================================= */
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.timeline-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--primary-color);
}

.timeline-item h3 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 12px;
}

/* =================================================================
   LOCATION & CONTACT INFO
   ================================================================= */
.location-info,
.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
  justify-content: center;
}

.address,
.hours,
.hours-section,
.address-section {
  flex: 1 1 300px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  border-left: 5px solid var(--primary-color);
}

.location-highlight,
.accessibility {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 24px 0;
}

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

.faq-item {
  background: var(--light-color);
  border: 2px solid var(--gray-medium);
  border-radius: var(--border-radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-medium);
}

.faq-item h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
}

/* =================================================================
   FORM STYLING
   ================================================================= */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.form-intro {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.form-note {
  font-size: 14px;
  color: var(--gray-dark);
  margin: 16px 0;
}

.form-note a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* =================================================================
   CTA SECTIONS
   ================================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--light-color);
  text-align: center;
  padding: 80px 20px;
  margin: 80px 0;
  border-radius: var(--border-radius);
}

.cta-section h2 {
  color: var(--light-color);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */
.thank-you-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 100px 20px;
  text-align: center;
  color: var(--light-color);
}

.success-message h1 {
  color: var(--light-color);
  font-size: 48px;
  margin-bottom: 24px;
}

.success-message .subtitle {
  font-size: 24px;
  margin-bottom: 16px;
}

/* =================================================================
   LEGAL CONTENT
   ================================================================= */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h2 {
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 3px solid var(--primary-color);
}

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

/* =================================================================
   FOOTER - BOLD & MODERN
   ================================================================= */
footer {
  background: var(--dark-color);
  color: var(--light-color);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

.footer-section h4 {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-nav a {
  color: var(--light-color);
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover::before,
.footer-nav a:focus::before {
  left: -12px;
  opacity: 1;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent-color);
  padding-left: 12px;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.legal-nav a {
  color: var(--light-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-nav a:hover,
.legal-nav a:focus {
  color: var(--accent-color);
}

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

/* =================================================================
   COOKIE CONSENT BANNER
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-color);
  color: var(--light-color);
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin-bottom: 8px;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--light-color);
  border-radius: var(--border-radius);
  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: var(--gray-medium);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--primary-color);
  color: var(--light-color);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--gray-light);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

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

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.toggle-switch {
  width: 50px;
  height: 26px;
  background: var(--gray-medium);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary-color);
}

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

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

/* =================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================================================= */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .category-card,
  .service-card,
  .value-card,
  .subcategory-card,
  .workshop-card,
  .schedule-card,
  .game-card,
  .feature-card,
  .benefit-card,
  .stat-card,
  .contact-card,
  .transport-card,
  .highlight-card,
  .right-card,
  .suggestion-card,
  .step-card {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .timeline-item {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .legal-nav {
    flex-direction: column;
    gap: 8px;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .section {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .page-hero {
    padding: 40px 20px;
  }
}

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

.section-subtitle {
  font-size: 20px;
  color: var(--gray-dark);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

.note {
  font-size: 14px;
  color: var(--gray-dark);
  font-style: italic;
}

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

.category-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

/* =================================================================
   ACCESSIBILITY IMPROVEMENTS
   ================================================================= */
*:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}

.btn:focus,
a:focus {
  outline: 3px solid var(--accent-color);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =================================================================
   PRINT STYLES
   ================================================================= */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}