/* =================================================================
   BlastRoader - Warm & Friendly Automotive Design
   Design Style: Warm, approachable, rounded, soft shadows
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FFF8F0;
  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 - Warm & Friendly
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #D35400;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

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

.subheadline {
  font-size: 18px;
  color: #7F8C8D;
  font-weight: 400;
}

/* =================================================================
   Container & Layout
   ================================================================= */

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

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

/* =================================================================
   Header & Navigation - Warm Design
   ================================================================= */

header {
  background: linear-gradient(135deg, #FFEAA7 0%, #FDCB6E 100%);
  padding: 16px 0;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #E67E22;
}

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

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

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

.main-nav a {
  font-weight: 500;
  font-size: 14px;
  color: #D35400;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
}

.main-nav a:hover {
  background: #FFFFFF;
  color: #E67E22;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.2);
  transform: translateY(-2px);
}

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

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(230, 126, 34, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FFEAA7 0%, #FDCB6E 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  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: #E67E22;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 20px;
  background: #FFFFFF;
  border-radius: 16px;
  color: #D35400;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 8px rgba(230, 126, 34, 0.15);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #E67E22;
  color: #FFFFFF;
  transform: translateX(8px);
  box-shadow: 0 6px 12px rgba(230, 126, 34, 0.3);
}

/* =================================================================
   Buttons - Warm & Friendly Style
   ================================================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D35400 0%, #BA4A00 100%);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
  transform: translateY(-3px);
}

.btn-secondary {
  background: #FFFFFF;
  color: #E67E22;
  border: 2px solid #E67E22;
}

.btn-secondary:hover {
  background: #E67E22;
  color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

/* =================================================================
   Hero Section - Warm Welcome
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #FFEAA7 0%, #FDCB6E 50%, #FAB1A0 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
  margin-bottom: 60px;
}

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

.hero h1 {
  color: #D35400;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.hero .subheadline {
  font-size: 20px;
  color: #34495E;
  margin-bottom: 32px;
}

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

.trust-indicators span {
  background: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #E67E22;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.15);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #7F8C8D;
}

.breadcrumb a {
  color: #E67E22;
  font-weight: 500;
}

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

/* =================================================================
   Cards & Grid Layouts - Flexbox Only
   ================================================================= */

.benefits-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.options-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 32px 0;
}

.benefit-card,
.service-card,
.testimonial-card,
.option-card,
.action-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  border: 3px solid #FFEAA7;
}

.benefit-card:hover,
.service-card:hover,
.option-card:hover,
.action-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(230, 126, 34, 0.2);
  border-color: #E67E22;
}

.service-card h3,
.benefit-card h3,
.option-card h3,
.action-card h3 {
  color: #E67E22;
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D35400;
  margin: 16px 0;
}

/* Testimonial Cards - High Contrast */
.testimonial-card {
  background: #FFFFFF;
  border-left: 6px solid #E67E22;
  padding: 32px;
  margin-bottom: 24px;
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-weight: 400;
}

.testimonial-card .author {
  color: #E67E22;
  font-weight: 600;
  font-style: italic;
  margin-top: 16px;
}

/* =================================================================
   Process Steps
   ================================================================= */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 40px 0;
}

.step,
.step-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  border-left: 6px solid #E67E22;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  margin-bottom: 16px;
}

.step h3,
.step-detail h2 {
  color: #E67E22;
}

.step ul,
.step-detail ul {
  margin-left: 20px;
}

/* =================================================================
   Service Details
   ================================================================= */

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  margin-bottom: 32px;
  border: 3px solid #FFEAA7;
}

.service-detail h2 {
  color: #E67E22;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: #34495E;
  position: relative;
  padding-left: 24px;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

/* =================================================================
   Stats Section
   ================================================================= */

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin: 40px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  flex: 1 1 250px;
  border: 3px solid #FFEAA7;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #E67E22;
  font-family: 'Bebas Neue', sans-serif;
}

.stat .label {
  font-size: 16px;
  color: #7F8C8D;
  text-align: center;
}

/* =================================================================
   Form Section
   ================================================================= */

.search-form .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.form-wrapper {
  flex: 1 1 65%;
  min-width: 300px;
}

.form-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  margin-bottom: 24px;
  border: 3px solid #FFEAA7;
}

.form-section h2 {
  color: #E67E22;
  margin-bottom: 16px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.trust-badges span {
  background: #FFEAA7;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  color: #D35400;
}

.sidebar {
  flex: 1 1 30%;
  min-width: 280px;
  background: linear-gradient(135deg, #FFEAA7 0%, #FDCB6E 100%);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.15);
}

.sidebar h3 {
  color: #D35400;
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  color: #34495E;
  font-weight: 500;
  position: relative;
  padding-left: 24px;
}

.sidebar ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

/* =================================================================
   CTA Section - Warm Invitation
   ================================================================= */

.cta-section {
  background: linear-gradient(135deg, #FFEAA7 0%, #FDCB6E 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(230, 126, 34, 0.2);
  margin: 60px 0;
}

.cta-section h2 {
  color: #D35400;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  color: #34495E;
  margin-bottom: 32px;
}

/* =================================================================
   Content Sections
   ================================================================= */

.value-proposition,
.services-overview,
.process,
.testimonials,
.services-detailed,
.process-overview,
.company-story,
.mission-vision,
.statistics,
.contact-options,
.map-location,
.office-hours,
.alternative-contact,
.alternative-cta,
.confirmation-details,
.immediate-actions,
.trust-reminders,
.legal-content {
  padding: 60px 20px;
}

.value-proposition h2,
.services-overview h2,
.process h2,
.testimonials h2,
.company-story h2,
.statistics h2,
.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #E67E22;
}

.value-proposition p,
.services-overview p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #7F8C8D;
}

/* Mission & Vision Layout */
.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.mission,
.values {
  flex: 1 1 45%;
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  border: 3px solid #FFEAA7;
}

.mission h2,
.values h2 {
  color: #E67E22;
  margin-bottom: 20px;
}

/* Process Preview */
.process-preview ol {
  background: #FFFFFF;
  padding: 32px 32px 32px 56px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  border-left: 6px solid #E67E22;
}

.process-preview ol li {
  margin-bottom: 16px;
  color: #34495E;
  font-size: 16px;
  line-height: 1.7;
}

/* Office Hours */
.office-hours ul {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  list-style: none;
  max-width: 500px;
  margin: 0 auto;
}

.office-hours ul li {
  padding: 12px 0;
  border-bottom: 2px solid #FFEAA7;
  color: #34495E;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.steps-grid .step {
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

/* Trust Reminders */
.trust-reminders ul {
  background: #FFFFFF;
  padding: 32px 32px 32px 56px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
  border-left: 6px solid #E67E22;
}

.trust-reminders ul li {
  margin-bottom: 16px;
  color: #34495E;
  font-size: 16px;
}

/* Legal Content */
.legal-content {
  background: #FFFFFF;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.1);
}

.content-wrapper h2 {
  color: #E67E22;
  margin-top: 32px;
  margin-bottom: 16px;
}

.content-wrapper h3 {
  color: #D35400;
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper a {
  color: #E67E22;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #D35400;
}

/* =================================================================
   Footer - Warm & Friendly
   ================================================================= */

footer {
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #ECF0F1;
  padding: 60px 20px 20px;
  border-radius: 40px 40px 0 0;
  margin-top: 60px;
}

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

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

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

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

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

.footer-nav a {
  color: #BDC3C7;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid #7F8C8D;
  color: #95A5A6;
  font-size: 14px;
}

/* =================================================================
   Cookie Consent Banner
   ================================================================= */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
  color: #ECF0F1;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  border-radius: 20px 20px 0 0;
}

#cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: #ECF0F1;
}

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

#cookie-banner button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-all-cookies {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
}

#accept-all-cookies:hover {
  background: linear-gradient(135deg, #D35400 0%, #BA4A00 100%);
  transform: scale(1.05);
}

#reject-all-cookies {
  background: #7F8C8D;
  color: #FFFFFF;
}

#reject-all-cookies:hover {
  background: #95A5A6;
}

#cookie-settings-btn {
  background: transparent;
  color: #FDCB6E;
  border: 2px solid #FDCB6E;
}

#cookie-settings-btn:hover {
  background: #FDCB6E;
  color: #34495E;
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2001;
  padding: 20px;
  overflow-y: auto;
}

#cookie-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #FFF8F0;
  border-radius: 16px;
  border-left: 4px solid #E67E22;
}

.cookie-category h3 {
  color: #D35400;
  margin-bottom: 12px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #34495E;
  cursor: pointer;
}

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 150px;
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#save-cookie-preferences {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #FFFFFF;
}

#save-cookie-preferences:hover {
  background: linear-gradient(135deg, #D35400 0%, #BA4A00 100%);
  transform: scale(1.05);
}

#close-cookie-modal {
  background: #7F8C8D;
  color: #FFFFFF;
}

#close-cookie-modal:hover {
  background: #95A5A6;
}

/* =================================================================
   Responsive Design - Mobile First
   ================================================================= */

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Navigation */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
    border-radius: 0 0 24px 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cards */
  .benefit-card,
  .service-card,
  .testimonial-card,
  .option-card,
  .action-card,
  .stat {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    margin: 8px 0;
  }
  
  /* Form */
  .form-wrapper,
  .sidebar {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie Banner */
  #cookie-banner {
    flex-direction: column;
    padding: 20px;
  }
  
  #cookie-banner .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  #cookie-banner button {
    width: 100%;
  }
  
  /* Mission & Values */
  .mission,
  .values {
    flex: 1 1 100%;
  }
  
  /* Steps */
  .steps-grid .step {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 40px;
  }
  
  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* =================================================================
   Animations & Transitions
   ================================================================= */

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

.hero,
.benefit-card,
.service-card,
.testimonial-card,
.step,
.stat {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* 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-banner,
  #cookie-modal,
  .cta-buttons {
    display: none;
  }
  
  body {
    background: white;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}