/* CSS Reset and Base Styles */
* {
  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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a252f;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

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

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

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

a {
  color: #3498DB;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #E67E22;
  transform: translateX(2px);
}

strong {
  font-weight: 700;
  color: #1a252f;
}

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

/* Header */
header {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.logo a {
  display: flex;
  align-items: center;
}

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

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  position: relative;
  transition: all 0.3s ease;
}

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

.main-nav a:hover {
  color: #E67E22;
  transform: translateY(-2px);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: #E67E22;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #1a252f 0%, #2C3E50 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  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);
}

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

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

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

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

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 20px 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(230, 126, 34, 0.2);
  color: #E67E22;
  padding-left: 24px;
  transform: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
  color: #ffffff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 200px 200px;
  opacity: 0.3;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-200px, -200px); }
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: rgba(230, 126, 34, 0.9);
  border-color: #E67E22;
  transform: translateY(-2px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.btn-primary:hover {
  background: #D35400;
  border-color: #D35400;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

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

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

/* Sections */
section {
  padding: 60px 0;
  position: relative;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  position: relative;
  padding-bottom: 20px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #E67E22;
  border-radius: 3px;
}

/* Service Cards */
.services-grid,
.benefits-grid,
.categories-grid,
.stats-grid,
.testimonials-grid,
.values-grid,
.guide-steps,
.contact-grid,
.hours-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card,
.benefit-item,
.category-card,
.value-item,
.guide-step,
.contact-method,
.hours-item,
.suggestion {
  background: #ffffff;
  border: 3px solid #E67E22;
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-item:hover,
.category-card:hover,
.value-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(230, 126, 34, 0.3);
  border-color: #D35400;
}

.service-card h3,
.benefit-item h3,
.category-card h3,
.value-item h3 {
  color: #1a252f;
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 800;
  color: #E67E22;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

/* Service Details */
.service-detail {
  background: #ffffff;
  border-left: 6px solid #E67E22;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid #3498DB;
}

.service-detail h2::after {
  display: none;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 800;
  color: #E67E22;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  display: block;
}

.service-detail ul {
  background: rgba(52, 152, 219, 0.1);
  padding: 24px 24px 24px 48px;
  border-radius: 8px;
  margin: 20px 0;
  border-left: 4px solid #3498DB;
}

.service-detail ul li {
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 12px;
}

/* Stats */
.stat-item {
  background: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
  color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 32px rgba(52, 152, 219, 0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-bottom: 8px;
  color: #E67E22;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  display: block;
}

/* Testimonials */
.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #3498DB;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(52, 152, 219, 0.3);
  border-color: #E67E22;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1a252f;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

.breadcrumb a {
  color: #E67E22;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

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

.cta-banner h2::after {
  background: #ffffff;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: #ffffff;
  color: #E67E22;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background: #1a252f;
  color: #ffffff;
  border-color: #1a252f;
}

.reassurance {
  margin-top: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  color: #ffffff;
  padding: 60px 0 24px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 48px);
  min-width: 200px;
}

.footer-section h3 {
  color: #E67E22;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

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

.footer-section nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-section nav a:hover {
  color: #E67E22;
  padding-left: 8px;
}

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

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a252f 0%, #2C3E50 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #E67E22;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  font-size: 14px;
  line-height: 1.6;
}

.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: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h2 {
  color: #1a252f;
  margin-bottom: 24px;
  text-align: left;
  font-size: 28px;
}

.cookie-modal h2::after {
  display: none;
}

.cookie-category {
  padding: 20px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: #3498DB;
  background: rgba(52, 152, 219, 0.05);
}

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

.cookie-category-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.cookie-toggle {
  flex-shrink: 0;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 28px;
  appearance: none;
  background: #ccc;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #3498DB;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 24px;
}

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

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

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #3498DB;
}

.legal-content h2 {
  text-align: left;
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1a252f;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h2::after {
  display: none;
}

/* Case Study */
.case-study {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 3px solid #3498DB;
  margin-bottom: 32px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.case-study:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(52, 152, 219, 0.3);
  border-color: #E67E22;
}

.case-study h3 {
  color: #1a252f;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.thank-you-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 24px;
}

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

/* Form Info */
.form-info {
  background: rgba(52, 152, 219, 0.1);
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #3498DB;
  margin-top: 32px;
}

.form-info ul {
  margin-top: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile menu visibility */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Card grids */
  .service-card,
  .benefit-item,
  .category-card,
  .stat-item,
  .testimonial-card,
  .value-item,
  .guide-step,
  .contact-method,
  .hours-item,
  .suggestion {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
  
  /* Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* Legal content */
  .legal-content {
    padding: 24px;
  }
  
  /* Sections */
  section {
    padding: 40px 0;
  }
  
  section h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .service-card,
  .benefit-item,
  .category-card,
  .service-detail,
  .case-study {
    padding: 24px;
  }
}

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

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner {
    display: none;
  }
}