/* ========================================
   BRISK TRAIL - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ======================================== */

/* ========================================
   CSS RESET & 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', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
  min-height: 100vh;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   INDUSTRIAL MODERN COLOR PALETTE
   ======================================== */

:root {
  --primary-color: #1A4D7C;
  --primary-dark: #0f3252;
  --primary-light: #2a6ba3;
  --secondary-color: #E85D35;
  --secondary-dark: #c74423;
  --secondary-light: #ff7854;
  --accent-color: #F4F4F4;
  --dark-bg: #1a1a1a;
  --dark-gray: #2c2c2c;
  --medium-gray: #4a4a4a;
  --light-gray: #e0e0e0;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --border-radius: 4px;
  --transition: all 0.3s ease;
}

/* ========================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-bg);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

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

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

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
  color: var(--dark-bg);
}

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

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

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

/* ========================================
   HEADER - INDUSTRIAL DESIGN
   ======================================== */

header {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--secondary-color);
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--secondary-color);
}

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

/* ========================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 16px;
  font-size: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--secondary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  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;
  font-size: 32px;
  color: var(--white);
  padding: 8px;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--secondary-color);
  padding-left: 10px;
}

/* ========================================
   BUTTONS - INDUSTRIAL STYLE
   ======================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 4px 8px rgba(232, 93, 53, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(232, 93, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
}

.btn-secondary:hover {
  background: var(--dark-bg);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========================================
   HERO SECTION - INDUSTRIAL IMPACT
   ======================================== */

.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  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.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   PAGE HERO - SUBPAGES
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--medium-gray) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 60px 20px 40px;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
  padding: 60px 20px;
  background: var(--white);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-bg);
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: var(--accent-color);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--secondary-color);
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.benefit-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-item p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 15px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
  padding: 60px 20px;
  background: var(--accent-color);
}

.services h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--dark-bg);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--secondary-color);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}

.services .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 300px;
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process {
  padding: 60px 20px;
  background: var(--white);
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-bg);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-number {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  font-family: 'Montserrat', sans-serif;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark-bg);
}

.step p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 14px;
}

.process .btn-primary {
  display: block;
  margin: 0 auto;
  max-width: 280px;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  padding: 60px 20px;
  background: var(--accent-color);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-bg);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 0;
}

.testimonial-author strong {
  color: var(--primary-color);
  font-weight: 700;
}

.rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0;
  font-family: 'Montserrat', sans-serif;
}

/* ========================================
   CTA SECTIONS
   ======================================== */

.cta-banner,
.cta-section,
.cta-business {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.cta-banner h2,
.cta-section h2,
.cta-business h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p,
.cta-business p {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* ========================================
   SERVICES DETAILED PAGE
   ======================================== */

.services-detailed {
  padding: 40px 20px;
}

.service-detail {
  background: var(--white);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--primary-color);
}

.service-detail h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-detail p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.price-large {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.benefits-list {
  margin-bottom: 24px;
  padding-left: 0;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
}

/* ========================================
   REQUIREMENTS & CHECKLIST
   ======================================== */

.requirements,
.requirements-checklist {
  padding: 40px 20px;
  background: var(--accent-color);
}

.requirements h2,
.requirements-checklist h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-bg);
}

.requirements-grid,
.checklist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.requirement-box,
.checklist-box {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-color);
}

.requirement-box h3,
.checklist-box h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.requirement-box ul,
.checklist-box ul {
  padding-left: 0;
}

.requirement-box li,
.checklist li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text-dark);
}

.requirement-box li::before,
.checklist li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 700;
}

.note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

/* ========================================
   PROCESS DETAILED PAGE
   ======================================== */

.process-detailed {
  padding: 40px 20px;
}

.process-step-detail {
  background: var(--white);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.step-number-large {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
}

.process-step-detail > div:not(.step-number-large) {
  flex: 1;
  min-width: 250px;
}

.process-step-detail h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.step-duration {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.step-note {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq,
.faq-contact,
.faq-calculator {
  padding: 40px 20px;
  background: var(--white);
}

.faq h2,
.faq-contact h2,
.faq-calculator h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-bg);
}

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

.faq-item {
  background: var(--accent-color);
  padding: 24px;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ========================================
   BENEFITS BUSINESS PAGE
   ======================================== */

.benefits-business {
  padding: 60px 20px;
  background: var(--white);
}

.benefits-business h2 {
  text-align: center;
  margin-bottom: 48px;
  color: var(--dark-bg);
}

/* ========================================
   SERVICES BUSINESS PAGE
   ======================================== */

.services-business {
  padding: 60px 20px;
  background: var(--accent-color);
}

.service-business-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-business-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-color);
  transition: var(--transition);
}

.service-business-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-business-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.best-for {
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0;
}

/* ========================================
   TAX BENEFITS & FLEET MANAGEMENT
   ======================================== */

.tax-benefits,
.fleet-management {
  padding: 60px 20px;
  background: var(--white);
}

.tax-example {
  max-width: 700px;
  margin: 0 auto;
  background: var(--accent-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 6px solid var(--secondary-color);
  text-align: center;
}

.tax-example h3 {
  color: var(--primary-color);
  margin-bottom: 24px;
}

.savings-list {
  text-align: left;
  margin-bottom: 32px;
  padding-left: 0;
}

.savings-list li {
  padding: 12px 0;
  color: var(--text-dark);
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.savings-list strong {
  color: var(--secondary-color);
  font-size: 20px;
  font-family: 'Montserrat', sans-serif;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.fleet-feature {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--accent-color);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary-color);
}

.fleet-feature h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* ========================================
   PROCESS BUSINESS PAGE
   ======================================== */

.process-business {
  padding: 60px 20px;
  background: var(--accent-color);
}

.timeline {
  text-align: center;
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 18px;
  margin-top: 24px;
  font-family: 'Montserrat', sans-serif;
}

.contact-info {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   CALCULATOR PAGE
   ======================================== */

.calculator-main {
  padding: 40px 20px;
  background: var(--accent-color);
}

.calculator-widget {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--primary-color);
}

.calculator-widget h2 {
  text-align: center;
  margin-bottom: 32px;
  color: var(--dark-bg);
}

.calculator-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  justify-content: center;
}

.calc-type {
  padding: 12px 20px;
  background: var(--accent-color);
  color: var(--text-dark);
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-type:hover {
  background: var(--light-gray);
}

.calc-type.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.calculator-inputs {
  margin-bottom: 32px;
}

.input-group {
  margin-bottom: 24px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--light-gray);
  outline: none;
  margin-bottom: 8px;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: none;
}

.value-display {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
  font-family: 'Montserrat', sans-serif;
}

.input-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.input-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.calculator-result {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 24px;
}

.calculator-result h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 18px;
}

.result-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary-light);
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.result-details,
.result-total,
.result-savings {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.calculator-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.disclaimer {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
  margin-bottom: 0;
}

/* ========================================
   CALCULATOR EXPLAINER & EXAMPLES
   ======================================== */

.calculator-explainer,
.popular-calculations,
.factors-affecting {
  padding: 40px 20px;
  background: var(--white);
}

.explainer-grid,
.examples-grid,
.factors-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.explainer-item,
.example-card,
.factor-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--accent-color);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
}

.explainer-item h3,
.example-card h3,
.factor-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

.example-result {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ========================================
   NEXT STEPS SECTION
   ======================================== */

.next-steps {
  padding: 60px 20px;
  background: var(--accent-color);
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

.step-card h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* ========================================
   ABOUT PAGE SECTIONS
   ======================================== */

.company-story,
.mission-values,
.achievements,
.team,
.office-contact,
.why-choose-us {
  padding: 60px 20px;
}

.company-story {
  background: var(--white);
}

.timeline {
  margin: 40px 0;
  padding: 0;
}

.milestone {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
  align-items: center;
}

.year {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  min-width: 80px;
  font-family: 'Montserrat', sans-serif;
}

.mission-values {
  background: var(--accent-color);
}

.mission-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 40px;
}

.mission-box h3 {
  color: var(--white);
  margin-bottom: 16px;
}

.mission-box p {
  font-size: 18px;
  margin-bottom: 0;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary-color);
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.achievements {
  background: var(--white);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--secondary-color);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

.team {
  background: var(--accent-color);
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.department {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.department h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.office-contact {
  background: var(--white);
}

.office-info {
  max-width: 700px;
  margin: 0 auto;
  background: var(--accent-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.office-info p {
  margin-bottom: 12px;
}

.office-info strong {
  color: var(--primary-color);
}

.why-choose-us {
  background: var(--accent-color);
}

.reasons-list {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 0;
}

.reasons-list li {
  padding: 16px 0 16px 40px;
  position: relative;
  color: var(--text-dark);
  font-size: 16px;
  border-bottom: 1px solid var(--light-gray);
}

.reasons-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 24px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods {
  padding: 60px 20px;
  background: var(--white);
}

.contact-methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--accent-color);
  padding: 32px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-color);
}

.contact-method h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
}

.contact-value {
  font-weight: 700;
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.contact-form-section {
  padding: 60px 20px;
  background: var(--accent-color);
}

.form-placeholder {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.form-placeholder p {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.form-fields-list {
  text-align: left;
  margin-bottom: 24px;
}

.form-fields-list p {
  padding: 8px 0;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

.office-location,
.departments {
  padding: 60px 20px;
  background: var(--white);
}

.location-details {
  max-width: 700px;
  margin: 0 auto;
}

.location-details h3 {
  color: var(--primary-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

.departments-grid .department-contact {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--accent-color);
  padding: 24px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
}

.department-contact h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 18px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: 8px;
}

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.confirmation-message,
.while-waiting,
.social-proof {
  padding: 60px 20px;
  text-align: center;
}

.confirmation-message {
  background: var(--white);
}

.message-main {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.message-timeline,
.message-email {
  color: var(--text-light);
  margin-bottom: 24px;
}

.while-waiting {
  background: var(--accent-color);
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary-color);
}

.action-card h3 {
  color: var(--primary-color);
  margin-bottom: 16px;
}

.social-proof {
  background: var(--white);
}

.social-proof h2 {
  color: var(--dark-bg);
  margin-bottom: 24px;
}

.testimonial {
  font-style: italic;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
  padding: 40px 20px;
  background: var(--white);
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 32px;
  background: var(--accent-color);
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary-color);
}

.legal-section h2 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-section p,
.legal-section ul {
  color: var(--text-dark);
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
  position: relative;
}

.last-update {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

.cookies-table {
  padding: 40px 20px;
  background: var(--accent-color);
}

.cookies-list {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.cookies-list thead {
  background: var(--primary-color);
  color: var(--white);
}

.cookies-list th,
.cookies-list td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.cookies-list th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cookies-list tbody tr:hover {
  background: var(--accent-color);
}

/* ========================================
   FOOTER - INDUSTRIAL DESIGN
   ======================================== */

footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-gray) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  border-top: 4px solid var(--secondary-color);
}

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

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

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: var(--transition);
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--dark-bg) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 12px 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: 3px solid var(--secondary-color);
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text h3 {
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: var(--secondary-color);
  color: var(--white);
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--secondary-dark);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-reject:hover {
  border-color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn-settings:hover {
  border-color: var(--white);
}

/* ========================================
   COOKIE PREFERENCES MODAL
   ======================================== */

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

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

.cookie-modal-content {
  background: var(--white);
  max-width: 700px;
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.cookie-modal-header h2 {
  color: var(--white);
  margin-bottom: 0;
  font-size: 24px;
}

.cookie-modal-close {
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.cookie-modal-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}

.cookie-modal-body {
  padding: 32px 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--accent-color);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
}

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

.cookie-category h3 {
  color: var(--primary-color);
  margin-bottom: 0;
  font-size: 18px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  position: relative;
  appearance: none;
  background: var(--light-gray);
  border-radius: 26px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-toggle input[type="checkbox"]:checked {
  background: var(--secondary-color);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  top: 3px;
  left: 3px;
  transition: var(--transition);
}

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

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

.cookie-category p {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-modal-footer {
  padding: 20px 24px;
  background: var(--accent-color);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 15px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Grid layouts become single column */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .requirements-grid,
  .checklist-grid,
  .explainer-grid,
  .examples-grid,
  .factors-list,
  .steps-grid,
  .values-grid,
  .stats-grid,
  .departments-grid,
  .contact-methods-grid,
  .actions-grid,
  .fleet-features,
  .service-business-grid {
    flex-direction: column;
  }
  
  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .requirement-box,
  .checklist-box,
  .explainer-item,
  .example-card,
  .factor-item,
  .step-card,
  .value-item,
  .stat-item,
  .department,
  .contact-method,
  .action-card,
  .fleet-feature,
  .service-business-card {
    flex: 1 1 100%;
  }
  
  /* Process step detail */
  .process-step-detail {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number-large {
    margin: 0 auto 20px;
  }
  
  /* Calculator widget */
  .calculator-widget {
    padding: 24px;
  }
  
  .result-amount {
    font-size: 36px;
  }
  
  .calculator-cta {
    flex-direction: column;
  }
  
  .calculator-cta .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Table responsive */
  .cookies-list {
    font-size: 14px;
  }
  
  .cookies-list th,
  .cookies-list td {
    padding: 12px 8px;
  }
  
  /* Buttons full width on mobile */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Service detail */
  .service-detail {
    padding: 24px;
  }
  
  /* Legal sections */
  .legal-section {
    padding: 24px;
  }
  
  /* Thank you page */
  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
  
  /* Timeline */
  .milestone {
    flex-direction: column;
    text-align: center;
  }
  
  .year {
    min-width: auto;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    margin: 20px;
  }
  
  .cookie-modal-header {
    padding: 20px;
  }
  
  .cookie-modal-body {
    padding: 20px;
  }
  
  .cookie-category {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  /* Further mobile optimizations */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .result-amount {
    font-size: 28px;
  }
  
  .price-large {
    font-size: 24px;
  }
}

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

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

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

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

.mb-0 {
  margin-bottom: 0;
}

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

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

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

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

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

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

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

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

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}