/* ===================================
   BOLD SPARROW - PLAYFUL DYNAMIC 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', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #fff5e6 0%, #ffe6f0 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #2C5F4F;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px #FFD700;
  animation: bounceIn 0.8s ease;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #FF6B9D;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FFD700, #FF6B9D, #00CED1);
  border-radius: 10px;
}

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

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-5deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, #FF6B9D 0%, #FFD700 50%, #00CED1 100%);
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 5px solid #fff;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

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

.logo:hover {
  transform: rotate(-10deg) scale(1.1);
  animation: wiggle 0.5s ease;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu li a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.nav-menu li a:hover {
  background: #fff;
  color: #FF6B9D;
  border-color: #FFD700;
  transform: translateY(-3px) rotate(2deg);
  box-shadow: 0 5px 15px rgba(255, 107, 157, 0.4);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #FF6B9D, #FFD700);
  border: 3px solid #fff;
  color: #fff;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #FFD700, #00CED1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FF6B9D 0%, #FFD700 50%, #00CED1 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 3px solid #FF6B9D;
  color: #FF6B9D;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: #FF6B9D;
  color: #fff;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav a:hover {
  background: #fff;
  color: #FF6B9D;
  border-color: #FFD700;
  transform: translateX(-10px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero, .page-hero, .error-hero, .thank-you-hero {
  background: linear-gradient(135deg, #FF6B9D 0%, #FFD700 50%, #00CED1 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 30px 20px;
  box-shadow: 0 10px 40px rgba(255, 107, 157, 0.4);
}

.hero::before {
  content: '🐾';
  position: absolute;
  font-size: 200px;
  opacity: 0.1;
  top: -50px;
  right: -50px;
  animation: float 3s ease-in-out infinite;
}

.hero::after {
  content: '✨';
  position: absolute;
  font-size: 150px;
  opacity: 0.15;
  bottom: -40px;
  left: -40px;
  animation: float 4s ease-in-out infinite;
}

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

.hero h1, .page-hero h1, .error-hero h1, .thank-you-hero h1 {
  color: #fff;
  font-size: 56px;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 24px;
}

.subheadline {
  font-size: 22px;
  margin-bottom: 32px;
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

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

/* ===================================
   BUTTONS & CTA
   =================================== */

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

.cta-button-primary, .cta-button-secondary, .cta-button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button-primary {
  background: linear-gradient(135deg, #FFD700, #FF6B9D);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-button-primary:hover {
  transform: translateY(-5px) scale(1.05) rotate(-2deg);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.6);
  animation: pulse 0.5s ease;
}

.cta-button-secondary {
  background: #fff;
  color: #FF6B9D;
  border-color: #FFD700;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.cta-button-secondary:hover {
  background: linear-gradient(135deg, #00CED1, #FF6B9D);
  color: #fff;
  transform: translateY(-5px) scale(1.05) rotate(2deg);
  box-shadow: 0 15px 35px rgba(0, 206, 209, 0.5);
}

.cta-button {
  background: linear-gradient(135deg, #FF6B9D, #FFD700);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 10px 30px rgba(255, 107, 157, 0.5);
  background: linear-gradient(135deg, #FFD700, #00CED1);
}

/* ===================================
   TRUST BADGES & SIGNALS
   =================================== */

.trust-badges, .trust-signal {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-badges span, .trust-signal {
  background: rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border: 2px solid #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* ===================================
   CARDS & GRIDS
   =================================== */

.values-grid, .services-grid, .testimonials-grid, .process-steps,
.link-grid, .packages-grid, .team-grid, .philosophy-grid,
.contact-grid, .directions-grid, .category-grid, .actions-grid,
.showcase-grid, .steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card, .service-card, .testimonial-card, .step,
.link-card, .package-card, .team-member, .philosophy-item,
.contact-option, .direction-option, .category-card, .action-card,
.showcase-item, .step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.value-card::before, .service-card::before, .link-card::before,
.package-card::before, .category-card::before, .action-card::before {
  content: '✨';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}

.value-card:hover, .service-card:hover, .link-card:hover,
.package-card:hover, .category-card:hover, .action-card:hover {
  transform: translateY(-10px) rotate(-2deg);
  box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
  border-color: #FFD700;
}

.value-card:hover::before, .service-card:hover::before,
.link-card:hover::before, .package-card:hover::before,
.category-card:hover::before, .action-card:hover::before {
  opacity: 1;
  top: -10px;
  right: -10px;
}

.testimonial-card {
  background: linear-gradient(135deg, #fff 0%, #FFF5E6 100%);
  border-left: 5px solid #FFD700;
  padding: 25px;
  font-style: italic;
  color: #2C5F4F;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  color: #2C5F4F;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #FF6B9D;
  font-style: normal;
  margin-top: 16px;
  font-size: 14px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  text-align: center;
  background: linear-gradient(135deg, #FFD700 0%, #FF6B9D 100%);
  color: #fff;
  border: none;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  text-shadow: 3px 3px 0px rgba(0,0,0,0.2);
  margin-bottom: 16px;
}

.step h3 {
  color: #fff;
  margin-bottom: 12px;
}

.step p {
  color: #fff;
  font-size: 14px;
}

/* ===================================
   PRICING & SERVICES
   =================================== */

.price {
  font-size: 28px;
  font-weight: 800;
  color: #FF6B9D;
  margin-top: 16px;
  text-shadow: 2px 2px 0px #FFD700;
}

.service-detail {
  background: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 20px;
  border-left: 5px solid #FF6B9D;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.15);
}

.duration {
  font-weight: 600;
  color: #00CED1;
  margin-bottom: 12px;
  font-size: 14px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.2);
  margin: 30px 0;
}

.price-table th {
  background: linear-gradient(135deg, #FF6B9D, #FFD700);
  color: #fff;
  padding: 20px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.price-table td {
  padding: 20px;
  border-bottom: 2px solid #FFF5E6;
  color: #333;
}

.price-table tr:hover {
  background: #FFF5E6;
  transform: scale(1.01);
  transition: all 0.3s ease;
}

.regular-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.package-price {
  font-size: 28px;
  font-weight: 800;
  color: #FF6B9D;
  margin: 12px 0;
}

.saving {
  background: #FFD700;
  color: #2C5F4F;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 700;
  margin: 8px 0;
}

.validity {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* ===================================
   ERROR & THANK YOU PAGES
   =================================== */

.error-code {
  font-size: 150px;
  font-weight: 800;
  color: #fff;
  text-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
  line-height: 1;
  margin-bottom: 20px;
  animation: wiggle 2s ease-in-out infinite;
}

.success-icon {
  font-size: 120px;
  color: #fff;
  margin-bottom: 30px;
  animation: bounceIn 1s ease;
}

.error-explanation, .helpful-links, .services-preview-404 {
  padding: 40px 20px;
}

/* ===================================
   LOCATION & CONTACT
   =================================== */

.location-content, .location-details {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.address-block, .hours-block {
  flex: 1 1 calc(50% - 40px);
  min-width: 250px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.15);
}

.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 12px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3a2f 100%);
  color: #F7E7CE;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 5px solid #FFD700;
}

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

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

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p, .footer-section li {
  color: #F7E7CE;
  margin-bottom: 10px;
  line-height: 1.8;
}

.footer-section a {
  color: #F7E7CE;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #FFD700;
  transform: translateX(5px);
  display: inline-block;
}

.footer-bottom {
  border-top: 2px solid rgba(247, 231, 206, 0.3);
  padding-top: 30px;
  text-align: center;
  color: #F7E7CE;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #FF6B9D, #FFD700);
  color: #fff;
  padding: 25px;
  box-shadow: 0 -5px 30px rgba(255, 107, 157, 0.4);
  z-index: 1998;
  display: none;
  border-top: 5px solid #fff;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

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

.cookie-accept, .cookie-reject, .cookie-settings {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 25px;
  cursor: pointer;
  border: 3px solid #fff;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: #fff;
  color: #FF6B9D;
}

.cookie-accept:hover {
  background: #00CED1;
  color: #fff;
  transform: scale(1.05) rotate(-2deg);
}

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

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cookie-settings:hover {
  background: #fff;
  color: #FF6B9D;
  transform: scale(1.05) rotate(2deg);
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(255, 107, 157, 0.5);
  border: 5px solid #FFD700;
}

.cookie-modal-content h2 {
  color: #FF6B9D;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 20px;
  padding: 20px;
  background: #FFF5E6;
  border-radius: 15px;
  border-left: 4px solid #FFD700;
}

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

.toggle-switch {
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(255, 107, 157, 0.15);
  margin: 30px 20px;
}

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

.legal-content h3 {
  color: #2C5F4F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 10px;
  color: #333;
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1, .page-hero h1, .error-hero h1 {
    font-size: 36px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .value-card, .service-card, .testimonial-card, .step,
  .link-card, .package-card, .team-member, .philosophy-item,
  .contact-option, .direction-option, .category-card, .action-card,
  .showcase-item, .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .error-code {
    font-size: 100px;
  }
  
  .location-content, .location-details {
    flex-direction: column;
  }
  
  .address-block, .hours-block {
    flex: 1 1 100%;
  }
  
  section {
    padding: 30px 15px;
  }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero, .page-hero, .error-hero {
    padding: 50px 15px;
    margin: 20px 10px;
  }
  
  .hero h1, .page-hero h1, .error-hero h1 {
    font-size: 28px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  .cta-button-primary, .cta-button-secondary, .cta-button {
    font-size: 16px;
    padding: 14px 30px;
  }
  
  .logo {
    height: 50px;
  }
  
  .mobile-menu-toggle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .mobile-nav a {
    font-size: 18px;
    padding: 15px 20px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .success-icon {
    font-size: 80px;
  }
  
  .cookie-text {
    font-size: 14px;
  }
  
  .cookie-accept, .cookie-reject, .cookie-settings {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .price-table th, .price-table td {
    padding: 12px;
    font-size: 14px;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

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

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

.hidden {
  display: none;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .hero, .page-hero {
    background: white;
    color: black;
    border: 2px solid black;
  }
  
  h1, h2, h3 {
    color: black;
  }
}