/* ========================================
   FROSTY SPRITE - INDUSTRIAL MODERN CSS
   Mobile-First Responsive Design
   ======================================== */

/* 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: #2A2A2A;
  background-color: #1A1A1A;
  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;
}

/* TYPOGRAPHY - INDUSTRIAL MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #E8E8E8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 32px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 4px solid #C41E2E;
  padding-left: 16px;
}

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

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

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background: linear-gradient(135deg, #2B6B7F 0%, #1A4A5C 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-bottom: 3px solid #C41E2E;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #E8F4F8;
  padding: 12px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #C41E2E;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #FFFFFF;
  border-color: #C41E2E;
}

.main-nav a:hover::after {
  width: 80%;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #C41E2E;
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(196, 30, 46, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #A51826;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #2B6B7F 0%, #1A4A5C 100%);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  padding: 24px;
  overflow-y: auto;
  border-left: 4px solid #C41E2E;
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #C41E2E;
  border: none;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  margin-left: auto;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #E8F4F8;
  padding: 16px 20px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  border: 2px solid rgba(232, 244, 248, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #C41E2E;
  border-color: #C41E2E;
  color: #FFFFFF;
  transform: translateX(8px);
}

/* ========================================
   HERO SECTIONS
   ======================================== */
.hero {
  background: linear-gradient(135deg, #2B6B7F 0%, #1A4A5C 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #C41E2E;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.1) 10px,
    rgba(0, 0, 0, 0.1) 20px
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.hero p,
.hero-subheadline {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
  align-items: center;
}

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

.trust-badges span {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #E8F4F8;
  border: 2px solid rgba(196, 30, 46, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-404,
.hero-legal,
.hero-thank-you {
  background: linear-gradient(135deg, #1A4A5C 0%, #2B6B7F 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #C41E2E;
}

.hero-404 h1,
.hero-legal h1,
.hero-thank-you h1 {
  font-size: 48px;
  color: #FFFFFF;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #C41E2E;
  line-height: 1;
  margin: 32px 0;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

/* ========================================
   BUTTONS & CTA
   ======================================== */
.cta-button,
.cta-button-primary,
.cta-button-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.cta-button-primary {
  background: #C41E2E;
  color: #FFFFFF;
  border-color: #C41E2E;
}

.cta-button-primary:hover {
  background: #A51826;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 30, 46, 0.4);
}

.cta-button-secondary {
  background: transparent;
  color: #E8F4F8;
  border-color: #E8F4F8;
}

.cta-button-secondary:hover {
  background: #E8F4F8;
  color: #1A4A5C;
  transform: translateY(-2px);
}

.cta-button {
  background: #2B6B7F;
  color: #FFFFFF;
  border-color: #2B6B7F;
}

.cta-button:hover {
  background: #1A4A5C;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 107, 127, 0.4);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  align-items: center;
}

/* ========================================
   SECTIONS
   ======================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #262626;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

section:nth-child(even) {
  background: #2A2A2A;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #B8B8B8;
  font-size: 18px;
}

/* ========================================
   CARDS & GRIDS
   ======================================== */
.services-grid,
.benefits-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid,
.team-grid,
.facilities-grid,
.stats-grid,
.packages-grid,
.addons-grid,
.size-grid,
.payment-grid,
.link-grid,
.links-grid,
.features-grid,
.activities-grid,
.grooming-features,
.training-features,
.hours-grid,
.contacts-grid,
.contact-methods,
.milestones,
.values-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.service-card,
.benefit,
.step,
.testimonial-card,
.price-card,
.package-card,
.addon-card,
.addon-item,
.size-card,
.payment-option,
.page-link,
.link-card,
.nav-card,
.feature,
.activity,
.grooming-item,
.training-item,
.hours-item,
.contact-person,
.contact-method,
.milestone,
.value-card,
.team-member,
.facility,
.stat,
.service-detail-card {
  background: #1A1A1A;
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 280px;
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.service-card::before,
.benefit::before,
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #C41E2E;
  border-radius: 8px 0 0 8px;
}

.service-card:hover,
.benefit:hover,
.feature:hover,
.price-card:hover,
.package-card:hover,
.page-link:hover,
.link-card:hover,
.nav-card:hover {
  transform: translateY(-4px);
  border-color: #C41E2E;
  box-shadow: 0 8px 20px rgba(196, 30, 46, 0.3);
}

.service-card h3,
.benefit h3,
.feature h3,
.activity h3,
.grooming-item h3,
.training-item h3 {
  color: #E8F4F8;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.benefit p,
.feature p {
  color: #B8B8B8;
  margin-bottom: 16px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #C41E2E;
  margin-top: 16px;
  display: block;
}

.price span {
  font-size: 16px;
  color: #999999;
  font-weight: 400;
}

.old-price {
  text-decoration: line-through;
  color: #666666;
  font-size: 16px;
  margin-left: 8px;
}

.savings {
  color: #4CAF50;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  display: block;
}

/* STEPS */
.step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: #C41E2E;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(196, 30, 46, 0.4);
}

/* TESTIMONIALS */
.testimonial-card {
  background: #2A2A2A;
  border-left: 4px solid #C41E2E;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #E8E8E8;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: #C41E2E !important;
  font-style: normal !important;
  margin-top: 16px;
}

/* PRICING CARDS */
.price-card,
.package-card {
  text-align: center;
  border: 3px solid #3A3A3A;
  background: linear-gradient(135deg, #1A1A1A 0%, #262626 100%);
}

.price-card h3,
.package-card h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #E8F4F8;
}

.price-card .price,
.package-card .price {
  font-size: 36px;
  color: #C41E2E;
  margin: 24px 0;
}

/* STATS */
.stat {
  text-align: center;
  border: 3px solid #C41E2E;
  background: #1A1A1A;
}

.stat h3 {
  font-size: 48px;
  color: #C41E2E;
  margin-bottom: 8px;
}

.stat p {
  color: #B8B8B8;
  font-size: 16px;
}

/* TEAM */
.team-member {
  text-align: center;
}

.position {
  color: #C41E2E;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

/* ========================================
   FORMS
   ======================================== */
.form-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.form-info,
.form-notice {
  background: #2A2A2A;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #C41E2E;
}

.form-info ul,
.form-notice ul {
  margin-top: 16px;
  padding-left: 20px;
}

.form-info li,
.form-notice li {
  color: #B8B8B8;
  margin-bottom: 8px;
}

.form-notice a {
  color: #C41E2E;
  text-decoration: underline;
}

.form-notice a:hover {
  color: #A51826;
}

/* ========================================
   SPECIAL SECTIONS
   ======================================== */
.emergency-cta,
.cta-final,
.cta-home,
.cta-booking,
.cta-visit,
.cta-experience {
  background: linear-gradient(135deg, #C41E2E 0%, #A51826 100%);
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
  margin: 60px 0;
}

.emergency-cta h2,
.cta-final h2,
.cta-home h2,
.cta-booking h2,
.cta-visit h2,
.cta-experience h2 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.emergency-cta p,
.cta-final p,
.cta-booking p,
.cta-visit p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 24px;
}

.contact-info,
.email-highlight {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 24px 0;
}

.email {
  font-size: 20px;
  font-weight: 600;
  color: #E8F4F8;
}

/* LOCATION */
.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
  justify-content: space-between;
}

.address-block,
.directions {
  flex: 1 1 280px;
  background: #2A2A2A;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #C41E2E;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #262626;
  padding: 40px 20px;
  border-radius: 8px;
}

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

.legal-content h3 {
  color: #CCCCCC;
  margin-top: 24px;
}

.legal-content p,
.legal-content li {
  color: #B8B8B8;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 24px 24px;
}

.legal-content a {
  color: #C41E2E;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #A51826;
}

.last-updated,
.note,
.emergency-note {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-top: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, #1A4A5C 0%, #0F2A35 100%);
  padding: 60px 20px 32px;
  color: #E8F4F8;
  border-top: 4px solid #C41E2E;
}

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

.footer-brand,
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 240px;
  min-width: 240px;
}

.footer-brand p {
  color: #B8B8B8;
  margin-top: 16px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

footer h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #C41E2E;
  padding-bottom: 8px;
}

footer a {
  display: block;
  color: #B8B8B8;
  padding: 8px 0;
  transition: all 0.3s ease;
  font-size: 14px;
}

footer a:hover {
  color: #C41E2E;
  padding-left: 8px;
}

.footer-contact p {
  color: #B8B8B8;
  margin-bottom: 12px;
  font-size: 14px;
}

.copyright {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(232, 244, 248, 0.2);
  color: #999999;
  font-size: 14px;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A4A5C 0%, #2B6B7F 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #C41E2E;
}

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

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

.cookie-banner p {
  color: #E8F4F8;
  flex: 1 1 300px;
  margin: 0;
}

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

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

.cookie-accept {
  background: #C41E2E;
  color: #FFFFFF;
  border-color: #C41E2E;
}

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

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

.cookie-reject:hover {
  background: #E8F4F8;
  color: #1A4A5C;
}

.cookie-settings {
  background: transparent;
  color: #E8F4F8;
  border-color: rgba(232, 244, 248, 0.5);
}

.cookie-settings:hover {
  border-color: #E8F4F8;
  background: rgba(232, 244, 248, 0.1);
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #2B6B7F 0%, #1A4A5C 100%);
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 4px solid #C41E2E;
}

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

.cookie-category {
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
  border-left: 4px solid #C41E2E;
}

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

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

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.cookie-save {
  background: #C41E2E;
  color: #FFFFFF;
  border-color: #C41E2E;
}

.cookie-save:hover {
  background: #A51826;
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   ======================================== */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .mobile-menu-toggle {
    display: none;
  }

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

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .services-grid,
  .benefits-grid,
  .pricing-grid {
    gap: 32px;
  }

  .service-card,
  .benefit,
  .price-card,
  .package-card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }

  .testimonial-card {
    flex-direction: row;
    align-items: center;
  }

  .form-container {
    flex-direction: row;
  }

  .form-info,
  .form-notice {
    flex: 1;
  }

  .location-content {
    gap: 48px;
  }

  .cookie-banner .container {
    flex-wrap: nowrap;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  section {
    padding: 60px 40px;
  }

  .service-card,
  .benefit,
  .price-card {
    flex: 1 1 calc(33.333% - 22px);
    max-width: calc(33.333% - 22px);
  }

  .step {
    flex: 1 1 calc(25% - 18px);
    max-width: calc(25% - 18px);
  }

  .stat {
    flex: 1 1 calc(25% - 18px);
    max-width: calc(25% - 18px);
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

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

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

/* ========================================
   ACCESSIBILITY
   ======================================== */
*:focus {
  outline: 2px solid #C41E2E;
  outline-offset: 2px;
}

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

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

  body {
    background: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}