/* ============================================
   GLINT VEHICLES - MONOCHROME SOPHISTICATED
   Modern Professional Automotive Services
   ============================================ */

/* 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.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MONOCHROME SOPHISTICATED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  font-weight: 700;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

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

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

a:hover {
  color: #4a4a4a;
}

ul {
  list-style: none;
}

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

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

/* HEADER - DRAMATIC BLACK */
header {
  background: #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #cccccc;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #000000;
  z-index: 1000;
  padding: 80px 40px 40px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 44px;
  height: 44px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #333333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #cccccc;
  padding-left: 12px;
}

/* HERO SECTION - DRAMATIC MONOCHROME */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 40px;
  color: #cccccc;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.key-benefit,
.key-info {
  font-size: 16px;
  color: #e0e0e0;
  margin-top: 24px;
  font-weight: 500;
}

/* CTA BUTTONS - MONOCHROME ELEGANCE */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.btn-primary:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

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

.btn-secondary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

.btn-link {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #4a4a4a;
  text-decoration-thickness: 2px;
}

/* TRUST INDICATORS */
.trust-indicators,
.trust-badges,
.brand-values {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span,
.trust-badges span,
.brand-values span {
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTIONS - CLEAN MONOCHROME */
.section,
.service-categories,
.why-choose-us,
.featured-services,
.process-steps,
.testimonials,
.location,
.cta-banner,
.service-overview,
.process,
.inspection-details,
.value-proposition,
.pricing,
.faq,
.services,
.features,
.service-details,
.booking-process,
.technology,
.systems,
.benefits,
.story,
.values,
.expertise,
.team,
.facility,
.achievements,
.why-choose,
.contact-info,
.contact-form-section,
.service-booking,
.trust-elements,
.legal-content,
.thank-you-hero,
.next-steps,
.explore-services,
.location-reminder,
.alternative-actions,
.quick-links,
.contact-reminder,
.contact-note {
  padding: 80px 0;
  margin-bottom: 0;
}

.section h2,
.service-categories h2,
.why-choose-us h2,
.featured-services h2,
.process-steps h2,
.testimonials h2,
.location h2,
.cta-banner h2,
.service-overview h2,
.process h2,
.value-proposition h2,
.pricing h2,
.faq h2,
.services h2,
.features h2,
.booking-process h2,
.technology h2,
.benefits h2,
.story h2,
.values h2,
.expertise h2,
.achievements h2,
.contact-info h2,
.service-booking h2,
.trust-elements h2,
.next-steps h2,
.explore-services h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* ALTERNATING BACKGROUNDS */
.service-categories,
.featured-services,
.testimonials,
.service-overview,
.value-proposition,
.services,
.technology,
.story,
.expertise,
.achievements,
.contact-form-section,
.trust-elements,
.explore-services {
  background: #f8f8f8;
}

/* GRIDS - FLEXBOX ONLY */
.service-grid,
.benefits-grid,
.services-grid,
.steps-grid,
.testimonials-grid,
.pricing-grid,
.process-grid,
.features-grid,
.tech-grid,
.values-grid,
.expertise-grid,
.achievements-grid,
.reasons-grid,
.contact-grid,
.services-overview,
.links-grid,
.actions-grid,
.services-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* CARDS - SOPHISTICATED MONOCHROME */
.service-card,
.benefit-item,
.service-item,
.service-detail,
.step,
.testimonial-card,
.pricing-card,
.process-step,
.feature-item,
.tech-item,
.value-item,
.expertise-item,
.achievement-item,
.reason-item,
.contact-method,
.service-category,
.link-card,
.action-card,
.service-link-card,
.faq-item {
  flex: 1 1 300px;
  background: #ffffff;
  padding: 40px 32px;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.service-item:hover,
.pricing-card:hover,
.link-card:hover,
.action-card:hover,
.service-link-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card img,
.benefit-item img,
.feature-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  filter: brightness(0);
}

.service-card h3,
.service-item h3,
.service-detail h3,
.benefit-item h3,
.feature-item h3,
.tech-item h3,
.value-item h3,
.expertise-item h3,
.contact-method h3,
.service-category h3,
.link-card h3,
.action-card h3,
.service-link-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.service-item p,
.benefit-item p,
.feature-item p,
.tech-item p,
.value-item p,
.expertise-item p,
.link-card p,
.action-card p,
.service-link-card p {
  color: #4a4a4a;
  line-height: 1.6;
}

/* PRICE DISPLAY */
.price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 24px 0;
  letter-spacing: -0.02em;
}

/* STEP NUMBERS */
.step-number,
.process-step span {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #000000;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 60px;
  margin-bottom: 16px;
  border: 3px solid #000000;
}

.step,
.process-step {
  text-align: center;
  flex: 1 1 220px;
  background: #ffffff;
  padding: 32px 24px;
  border: 2px solid #e0e0e0;
  margin-bottom: 20px;
}

/* TESTIMONIALS - ELEGANT */
.testimonial-card {
  background: #000000;
  color: #ffffff;
  padding: 40px;
  font-style: italic;
  border: none;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.author {
  color: #cccccc !important;
  font-style: normal;
  font-weight: 600;
  margin-top: 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  color: #000000;
}

/* TEXT SECTIONS */
.text-section,
.detail-section,
.location-content,
.text-image-section {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.text-section ul,
.systems-list ul {
  list-style: none;
  margin: 24px 0;
}

.text-section li,
.systems-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #2a2a2a;
  line-height: 1.6;
}

.text-section li::before,
.systems-list li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 12px;
}

/* CTA BANNER - DRAMATIC */
.cta-banner {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

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

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #000000;
  border-right: 2px solid #e0e0e0;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}

.faq-item h3 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #4a4a4a;
  line-height: 1.7;
}

/* CONTACT PAGE */
.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border: 2px solid #e0e0e0;
}

.form-notice {
  background: #f8f8f8;
  padding: 32px;
  border-left: 4px solid #000000;
  margin-bottom: 32px;
}

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

.form-notice ul {
  margin-top: 16px;
  list-style: none;
}

.form-notice li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #4a4a4a;
}

.form-notice li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

.form-info {
  text-align: center;
  margin-bottom: 40px;
  color: #4a4a4a;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #000000 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #ffffff;
  color: #000000;
  font-size: 60px;
  line-height: 100px;
  margin: 0 auto 32px;
  border-radius: 50%;
  font-weight: 700;
}

.confirmation-note,
.timeline-note,
.booking-info,
.duration-note {
  font-size: 15px;
  color: #cccccc;
  margin-top: 16px;
  font-style: italic;
}

/* LEGAL PAGES */
.legal-content {
  background: #ffffff;
  padding: 80px 0;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.intro,
.last-updated {
  font-size: 16px;
  color: #6a6a6a;
  margin-bottom: 40px;
}

/* FOOTER - SOPHISTICATED BLACK */
footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 0 24px;
  margin-top: 0;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-section p,
.footer-section a {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333333;
  color: #999999;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid #ffffff;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: #ffffff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background: #e0e0e0;
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: #ffffff;
}

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

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  border: 3px solid #000000;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid #000000;
  width: 36px;
  height: 36px;
  font-size: 24px;
  cursor: pointer;
  color: #000000;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #000000;
  color: #ffffff;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: #f8f8f8;
  border-left: 4px solid #000000;
}

.cookie-category h3 {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #cccccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #000000;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transition: transform 0.3s ease;
}

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  /* Sections spacing */
  .section,
  .service-categories,
  .why-choose-us,
  .featured-services,
  .process-steps,
  .testimonials,
  .location,
  .cta-banner,
  .service-overview,
  .process,
  .value-proposition,
  .pricing,
  .faq,
  .services,
  .features,
  .booking-process,
  .technology,
  .benefits,
  .story,
  .values,
  .expertise,
  .achievements,
  .contact-info,
  .service-booking,
  .trust-elements,
  .legal-content,
  .thank-you-hero,
  .next-steps,
  .explore-services {
    padding: 60px 0;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  /* Grids to single column */
  .service-grid,
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .testimonials-grid,
  .pricing-grid,
  .process-grid,
  .features-grid,
  .tech-grid,
  .values-grid,
  .expertise-grid,
  .achievements-grid,
  .reasons-grid,
  .contact-grid,
  .services-overview,
  .links-grid,
  .actions-grid,
  .services-links {
    flex-direction: column;
  }
  
  /* Cards full width */
  .service-card,
  .benefit-item,
  .service-item,
  .service-detail,
  .step,
  .testimonial-card,
  .pricing-card,
  .process-step,
  .feature-item,
  .tech-item,
  .value-item,
  .expertise-item,
  .achievement-item,
  .reason-item,
  .contact-method,
  .service-category,
  .link-card,
  .action-card,
  .service-link-card {
    flex: 1 1 100%;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Footer stack */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner stack */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  /* Trust indicators wrap */
  .trust-indicators,
  .trust-badges,
  .brand-values {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* Form wrapper */
  .form-wrapper {
    padding: 24px;
  }
  
  /* Success icon smaller */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
    line-height: 80px;
  }
}

@media (max-width: 480px) {
  /* Even smaller typography */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Tighter spacing */
  .container {
    padding: 0 16px;
  }
  
  /* Cards less padding */
  .service-card,
  .benefit-item,
  .service-item,
  .testimonial-card,
  .pricing-card,
  .step,
  .process-step {
    padding: 24px 20px;
  }
  
  /* Mobile menu full width */
  .mobile-menu {
    max-width: 100%;
    padding: 80px 24px 24px;
  }
}

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

.service-card,
.benefit-item,
.step,
.testimonial-card,
.pricing-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ACCESSIBILITY */
.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.cookie-btn:focus {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
}

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 80px;
}

/* END OF STYLESHEET */