/* AutoSpectra Website Styles */
:root {
  --primary-blue: #4a90e2;
  --primary-blue-light: #eaf4fb;
  --primary-blue-dark: #2563a6;
  --white: #fff;
  --gray: #f5f7fa;
  --text: #222b45;
  --text-light: #6b7a90;
  --border-radius: 16px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --shadow: 0 4px 24px 0 rgba(74,144,226,0.08);
}

html {
  box-sizing: border-box;
  font-size: 18px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--gray);
  color: var(--text);
  min-height: 100vh;
}

body:not(.home) .nav-flex {
  justify-content: flex-end;
}
body:not(.home) .nav-menu {
  justify-content: flex-end;
  gap: 1.2rem;
  margin-left: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Modern Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 144, 226, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue-dark);
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--primary-blue);
}

.logo-icon {
  color: var(--primary-blue);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.1);
}

/* Logo image styling */
.logo-img {
  width: 120px;
  max-width: 30vw;
  height: auto;
  display: block;
  margin-right: 0.5rem;
}
@media (max-width: 600px) {
  .logo-img {
    width: 120px;
    max-width: 50vw;
    margin: 0.8rem;
  }
  
  .navbar {
    padding: 1rem 0;
  }
  
  .nav-flex {
    padding: 0 1rem 0 1rem;
    margin-right: 2rem;
  }
  
  .mobile-menu-toggle {
    margin-right: 1rem;
  }
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin: 0 auto;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--primary-blue);
}

.nav-link.active {
  color: var(--primary-blue);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
  background: #3366cc;
}

/* CTA Button */
.cta-btn {
  background: var(--primary-blue);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* Mobile Responsive */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(74, 144, 226, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(74, 144, 226, 0.05);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(74, 144, 226, 0.05);
    border-left: 3px solid #3366cc;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .cta-btn {
    display: none;
  }

  .nav-flex {
    gap: 1rem;
    position: relative;
  }

  .logo {
    order: 1;
  }

  .nav-menu {
    order: 2;
  }
}

@media (max-width: 600px) {
  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    width: 20px;
    height: 20px;
  }

  .navbar {
    padding: 0.8rem 0;
  }
}

/* Hero Section */
.hero {
  background: url('../photos/headerphoto.jpg') center center/cover no-repeat;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark overlay for better contrast */
  z-index: 1;
}
.hero-flex {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 420px;
}
.hero-text {
  flex: 1 1 500px;
  color: #fff;
  text-align: left;
  padding: 2.5rem 0 2.5rem 3.5rem;
  z-index: 2;
  margin-left: 0;
  max-width: 600px;
}
.hero-text h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 16px rgba(0,0,0,0.6);
}
.hero-text p {
  color: #f8f9fa;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7), 0 4px 12px rgba(0,0,0,0.5);
  line-height: 1.6;
}
.hero-image { display: none; }
@media (max-width: 900px) {
  .hero, .hero-flex {
    min-height: 260px;
  }
  .hero-flex {
    justify-content: center;
  }
  .hero-text h1 { font-size: 1.5rem; }
  .hero-text {
    padding: 1.2rem 0.5rem;
    text-align: center;
    margin: 0 auto;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 8px 0 rgba(74,144,226,0.08);
}
.btn-primary {
  background: #4a90e2;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  box-shadow: 0 4px 12px rgba(74,144,226,0.4), 0 2px 4px rgba(0,0,0,0.2);
}
.btn-primary:hover, .btn-primary:focus {
  background: #2563a6;
  box-shadow: 0 6px 16px rgba(74,144,226,0.5), 0 3px 6px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary-blue-dark);
  border: 2px solid var(--primary-blue);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary-blue-light);
}

/* Intro Section */
.intro {
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.intro h2 {
  color: var(--primary-blue-dark);
  margin-bottom: 0.5rem;
}
.intro p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Why Choose Us */
.why-choose-us {
  background: var(--white);
  padding: 2.5rem 0;
  animation: fadeIn 1.2s;
}
.why-choose-us h2 {
  text-align: center;
  color: var(--primary-blue-dark);
  margin-bottom: 2rem;
}
.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.card {
  background: var(--primary-blue-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(74,144,226,0.13);
}
.card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--text-light);
}

/* Report Check CTA */
.report-check-cta {
  background: var(--primary-blue);
  color: var(--white);
  padding: 2.5rem 0;
  margin: 2rem 0 0 0;
  border-radius: var(--border-radius);
  animation: fadeIn 1.3s;
}
.report-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.report-text h2 {
  margin: 0 0 0.5rem 0;
}
.report-text p {
  margin: 0;
  color: #eaf4fb;
}

/* Quick Links */
.quick-links {
  padding: 2rem 0 1rem 0;
}
.links-flex {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.link-card {
  background: var(--white);
  color: var(--primary-blue-dark);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.link-card:hover, .link-card:focus {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  box-shadow: 0 8px 32px 0 rgba(74,144,226,0.13);
}

/* Newsletter Banner */
.newsletter-banner {
  background: var(--primary-blue-light);
  padding: 2rem 0;
  border-radius: var(--border-radius);
  margin: 2rem 0 0 0;
  animation: fadeIn 1.4s;
}
.newsletter-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.newsletter-text h2 {
  margin: 0;
  color: var(--primary-blue-dark);
}
.newsletter-form {
  display: flex;
  gap: 0.7rem;
}
.newsletter-form input[type="email"] {
  padding: 0.7rem 1.2rem;
  border-radius: var(--border-radius);
  border: 1px solid #bcd6f6;
  font-size: 1rem;
  outline: none;
  transition: border var(--transition);
}
.newsletter-form input[type="email"]:focus {
  border: 1.5px solid var(--primary-blue);
}
.newsletter-form button {
  min-width: 120px;
}

/* Footer */
.footer {
  background: var(--white);
  padding: 2rem 0 1rem 0;
  margin-top: 3rem;
  box-shadow: 0 -2px 12px 0 rgba(74,144,226,0.05);
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-links a {
  color: var(--primary-blue-dark);
  text-decoration: none;
  margin-right: 1.5rem;
  font-weight: 500;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--primary-blue);
}
.footer-social a {
  margin-right: 1rem;
  font-size: 1.5rem;
  color: var(--primary-blue);
  transition: color var(--transition);
}
.footer-social a:hover, .footer-social a:focus {
  color: var(--primary-blue-dark);
}
.footer-copy {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-flex, .why-cards, .report-flex, .newsletter-flex, .footer-flex, .links-flex {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .hero-image {
    text-align: center;
    margin-top: 1.5rem;
  }
  .blog-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }
  .blog-sidebar {
    position: static !important;
    top: auto !important;
    margin-top: 2rem !important;
  }
}
@media (max-width: 600px) {
  html { font-size: 16px; }
  .container { width: 98%; }
  .navbar { padding: 0.7rem 0; }
  .hero { padding: 2rem 0 1rem 0; }
  .why-cards { gap: 1rem; }
  .card { padding: 1.2rem 0.7rem; }
  .newsletter-form { 
    flex-direction: column; 
    gap: 0.8rem; 
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .newsletter-form input[type="email"] {
    width: 100%;
    box-sizing: border-box;
  }
  
  .newsletter-form button {
    width: 100%;
    box-sizing: border-box;
  }
  .footer { padding: 1.2rem 0 0.5rem 0; }
  body, html {
    overflow-x: hidden !important;
  }
  /* Footer mobile responsiveness fixes */
  .footer-top, .footer-columns, .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1rem !important;
  }
  .footer-brand, .footer-col {
    max-width: 100% !important;
    flex: none !important;
    text-align: center !important;
  }
  .footer-col ul {
    padding-left: 0 !important;
    margin: 0 auto 1rem auto !important;
  }
  .footer-payments {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  .footer-payments img {
    height: 32px !important;
    max-width: 60px !important;
  }
  .footer-socials {
    justify-content: center !important;
    margin-top: 1rem !important;
  }
  .footer-socials a {
    width: 32px !important;
    height: 32px !important;
    margin: 0 0.25rem !important;
  }
  .footer-copy {
    text-align: center !important;
    margin-top: 1rem !important;
    width: 100% !important;
  }
  .footer-brand, .footer-col {
    margin-bottom: 1rem !important;
  }
  .footer-col ul {
    margin-bottom: 1rem !important;
  }
  .footer-payments {
    margin-bottom: 1rem !important;
  }
  .footer-socials {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .footer-socials a {
    margin: 0 0.5rem !important;
  }
  .footer-copy {
    margin-top: 2rem !important;
    margin-bottom: 1rem !important;
  }
}

/* Accessibility */
:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
} 

button:focus, button:active,
.btn:focus, .btn:active,
a:focus, a:active {
  outline: none !important;
  box-shadow: none !important;
  border-color: inherit !important;
} 

/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(120deg, var(--primary-blue-light) 60%, var(--white) 100%);
    padding: 4rem 0;
    text-align: center;
    animation: fadeIn 1s;
}

.services-hero h1 {
    color: var(--primary-blue-dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-hero p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Vehicle Selection Grid */
.vehicle-selection {
    padding: 3rem 0;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.2rem 2rem 2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  height: 100%;
  min-height: 320px;
}

.vehicle-icon {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
  width: 100%;
}

.vehicle-icon-img {
  display: block;
  margin: 0 auto;
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

.vehicle-card h2 {
  color: var(--primary-blue-dark);
  margin: 0;
}

.vehicle-card p {
  color: var(--text-light);
  margin: 0.5rem 0 1rem 0;
}

.vehicle-card .btn {
  margin-top: auto;
}

/* Service Features */
.service-features {
    background: var(--white);
    padding: 4rem 0;
}

.service-features h2 {
    text-align: center;
    color: var(--primary-blue-dark);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--primary-blue-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    color: var(--primary-blue);
    margin: 0 0 1rem 0;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* Process Steps */
.process-steps {
    padding: 4rem 0;
}

.process-steps h2 {
    text-align: center;
    color: var(--primary-blue-dark);
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem auto;
}

.step-card h3 {
    color: var(--primary-blue-dark);
    margin: 0 0 1rem 0;
}

.step-card p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vehicle-grid, .features-grid, .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-hero {
        padding: 3rem 0;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .vehicle-card {
        padding: 1.5rem;
    }
} 

/* Pricing Carousel Section */
.pricing-carousel-section {
  background: #ededed;
  padding: 0;
}
.carousel-bg {
  background: #ededed;
  padding: 1.5rem 0 1rem 0;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 0.5rem;
}
.pricing-carousel {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 0.5rem;
  width: 100%;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}
.pricing-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Webkit */
}
.pricing-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  min-width: 19vw;
  max-width: 210px;
  flex: 0 0 19vw;
  margin: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  font-size: 0.95rem;
  scroll-snap-align: start;
}
.pricing-icon {
  background: #4a90e2;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding: 1rem 0 0.5rem 0;
}
.pricing-title {
  background: #4a90e2;
  color: #fff;
  font-size: 0.97rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 0;
}
.pricing-price {
  background: #ededed;
  color: #23262b;
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  padding: 0.5rem 0 0.5rem 0;
  border-bottom: 1px solid #d1d1d1;
}
.pricing-features {
  list-style: none;
  padding: 0.4rem 0.7rem 0.2rem 0.7rem;
  margin: 0;
  color: #23262b;
  font-size: 0.91rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.pricing-features i.fa-check {
  color: #23262b;
  font-size: 0.97rem;
  margin-top: 0.1rem;
}
.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
}
.btn.btn-dark {
  background: #4a90e2;
  color: #fff;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.91rem;
  padding: 0.5rem 0;
  text-align: center;
  border: none;
  margin: 0;
  width: 100%;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn.btn-dark:hover, .btn.btn-dark:focus {
  background: #2563a6;
  color: #ffe066;
}
.btn.btn-yellow {
  background: #23262b;
  color: #fff;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.91rem;
  padding: 0.5rem 0;
  text-align: center;
  border: none;
  margin: 0;
  width: 100%;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
.btn.btn-yellow:hover, .btn.btn-yellow:focus {
  background: #111;
  color: #ffe066;
}
.carousel-arrow {
  background: #23262b;
  color: #fff;
  border: none;
  border-radius: 0;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (max-width: 1200px) {
  .pricing-card {
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 320px;
  }
}
@media (max-width: 900px) {
  .carousel-bg {
    padding: 1rem 0 0.5rem 0;
  }
  .pricing-card {
    min-width: 60vw;
    max-width: 80vw;
    flex: 0 0 60vw;
  }
  .pricing-features {
    padding: 0.5rem 0.5rem 0.2rem 0.5rem;
    font-size: 0.93rem;
  }
  .btn.btn-dark, .btn.btn-yellow {
    font-size: 0.93rem;
    padding: 0.6rem 0;
  }
  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .carousel-bg {
    padding: 0.5rem 0 0.2rem 0;
  }
  .pricing-card {
    min-width: 92vw;
    max-width: 92vw;
    flex: 0 0 92vw;
  }
  .pricing-features {
    padding: 0.3rem 0.2rem 0.1rem 0.2rem;
    font-size: 0.91rem;
  }
  .btn.btn-dark, .btn.btn-yellow {
    font-size: 0.91rem;
    padding: 0.85rem 0;
  }
}

/* Redesigned Black Footer (per reference image) */
.footer {
  background: #111;
  color: #f5f5f5;
  padding: 2.5rem 0 1.5rem 0;
  margin-top: 3rem;
  font-size: 1rem;
}
.footer a { color: #f5f5f5; text-decoration: none; transition: color 0.2s; }
.footer a:hover, .footer a:focus { color: #ffe066; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  border-bottom: 1px solid #222;
  padding-bottom: 2rem;
}
.footer-brand {
  flex: 1 1 320px;
  min-width: 220px;
  max-width: 400px;
}
.footer-brand p {
  margin: 0.5rem 0 0 0;
  color: #bdbdbd;
  font-size: 1rem;
}
.footer-payments {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.2rem;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .footer-payments {
    gap: 0.7rem;
  }
}
.footer-payments img {
  height: 48px;
  width: auto;
  min-width: 48px;
  min-height: 32px;
  max-width: 80px;
  max-height: 48px;
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: inline-block;
  object-fit: contain;
}
@media (max-width: 600px) {
  .footer-payments img {
    height: 36px;
    min-width: 36px;
    min-height: 24px;
    max-width: 60px;
    max-height: 36px;
  }
}
.footer-columns {
  display: flex;
  flex: 3 1 600px;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer-col {
  min-width: 180px;
  flex: 1 1 180px;
}
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #4a90e2;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col li {
  margin-bottom: 0.5rem;
}
.footer-col a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
}
.footer-col a:hover, .footer-col a:focus {
  color: #ffe066;
}
.footer-hiring {
  display: inline-block;
  background: #4caf50;
  color: #fff;
  font-size: 0.85rem;
  border-radius: 6px;
  padding: 0.1rem 0.6rem;
  margin-left: 0.5rem;
  font-weight: 600;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.2rem;
  font-size: 0.97rem;
}
.footer-security {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #ffe066;
}
.footer-socials {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  justify-content: flex-end;
}
.footer-socials a {
  width: 32px;
  height: 32px;
  background: #222;
  border-radius: 6px;
  color: #fff;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.footer-socials img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}
.footer-socials a:hover, .footer-socials a:focus {
  background: #ffe066;
  color: #111;
}
.footer-copy {
  color: #bdbdbd;
  font-size: 0.97rem;
  margin-top: 0.5rem;
  flex: 1 1 100%;
  text-align: left;
}
@media (max-width: 900px) {
  .footer-top, .footer-columns, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .footer-bottom { align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer {
    padding: 1.2rem 0 0.7rem 0;
    font-size: 0.97rem;
  }
  .footer-brand { max-width: 100%; }
  .footer-col { min-width: 120px; }
  .footer-payments img {
    height: 32px;
    width: 48px;
    padding: 2px 6px;
  }
  .footer-socials a {
    width: 28px;
    height: 28px;
  }
  .footer-socials img {
    width: 18px;
    height: 18px;
  }
} 

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.7rem 0 0.2rem 0;
}
.pricing-tabs .tab {
  background: #ededed;
  color: #23262b;
  font-size: 0.97rem;
  font-weight: 600;
  border: none;
  border-radius: 3px 3px 0 0;
  padding: 0.3rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  outline: none;
  box-shadow: none;
  margin-bottom: -2px;
}
.pricing-tabs .tab.active {
  background: #fff;
  color: #23262b;
  border-bottom: 2px solid #ffe066;
}
@media (min-width: 1200px) {
  .pricing-carousel {
    max-width: 900px;
    margin: 0 auto;
  }
  .pricing-card {
    min-width: 21vw;
    max-width: 210px;
    flex: 0 0 21vw;
  }
}
@media (min-width: 900px) {
  .pricing-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .pricing-card {
    scroll-snap-align: start;
  }
} 

.header-photo-img {
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(74,144,226,0.10);
  object-fit: cover;
  height: auto;
}
@media (max-width: 900px) {
  .header-photo-img {
    max-width: 98vw;
    border-radius: 12px;
    margin-bottom: 1.2rem;
  }
} 

.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  background: hsl(0, 0%, 100%);
  padding: 1.1rem 0.7rem;
  font-size: 1.08rem;
  font-family: 'Inter', Arial, sans-serif;
  border-bottom: 1px solid #ededed;
}
.tp-customers {
  color: #222;
  font-weight: 400;
}
.tp-excellent {
  color: #222;
  font-weight: 600;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}
.tp-stars {
  height: 30px;
  width: auto;
  margin: 0 0.3rem;
  vertical-align: middle;
  background: transparent;
}
.tp-score {
  color: #222;
  font-weight: 400;
  margin-left: 0.3rem;
}
.tp-logo {
  height: 40px;
  width: auto;
  margin-left: 1.1rem;
  vertical-align: middle;
  background: transparent;
}
@media (max-width: 700px) {
  .trustpilot-bar {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.97rem;
    text-align: center;
  }
  .tp-logo { margin-left: 0; }
} 

.about-autospectra {
  background: #f7f9fb;
  padding: 2.5rem 0 2rem 0;
  text-align: center;
}
.about-autospectra h2 {
  color: #2563a6;
  font-size: 2rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.about-autospectra p {
  color: #444;
  font-size: 1.13rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .about-autospectra {
    padding: 1.2rem 0 1rem 0;
  }
  .about-autospectra h2 { font-size: 1.3rem; }
  .about-autospectra p { font-size: 1rem; }
} 

.inspection-process-section {
  background: #233045;
  padding: 3.5rem 0 3rem 0;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
}
.inspection-process-flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.5rem;
}
.inspection-steps {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inspection-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 2.2rem;
  color: #fff;
  text-align: left;
}
.step-box {
  display: flex;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border: 2px solid #3a4a6a;
  border-radius: 8px;
  box-shadow: 0 2px 16px 0 rgba(36,64,120,0.10);
  margin-bottom: 1.5rem;
  padding: 1.3rem 1.5rem 1.3rem 1.5rem;
  position: relative;
}
.step-circle {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  background: #fff;
  color: #2563a6;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #4a90e2;
  box-shadow: 0 2px 8px 0 rgba(36,64,120,0.10);
  margin-right: 1.3rem;
  margin-top: 0.2rem;
}
.step-content {
  flex: 1 1 auto;
}
.step-header {
  font-size: 1.13rem;
  font-weight: 700;
  color: #ffe066;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}
.step-desc {
  font-size: 1.01rem;
  color: #fff;
  margin-bottom: 0.7rem;
  line-height: 1.6;
}
.step-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: 0.3rem;
}
.order-btn {
  display: inline-flex;
  align-items: center;
  background: #ffe066;
  color: #233045;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(36,64,120,0.10);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.order-btn:hover, .order-btn:focus {
  background: #4a90e2;
  color: #fff;
}
.order-btn-icon {
  margin-right: 0.6rem;
  font-size: 1.1rem;
}
.order-phone {
  display: inline-flex;
  align-items: center;
  background: #eaf4fb;
  color: #233045;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  padding: 0.6rem 1.1rem;
  margin-left: 0.2rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.order-phone:hover, .order-phone:focus {
  background: #4a90e2;
  color: #fff;
}
.order-phone-icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.inspection-car-img-wrap {
  flex: 1 1 50%;
  max-width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  gap: 1.2rem;
}
.process-img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(36,64,120,0.18);
  background: #fff;
  display: block;
}
@media (max-width: 1100px) {
  .inspection-process-flex {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .inspection-car-img-wrap {
    max-width: 100%;
    flex: 1 1 100%;
    margin-top: 1.5rem;
    height: auto;
    gap: 1rem;
  }
  .process-img {
    max-width: 340px;
    margin: 0 auto;
    max-height: 180px;
  }
}
@media (max-width: 700px) {
  .process-img {
    max-width: 98vw;
    width: 100%;
    max-height: 120px;
  }
} 

.modern-process-section {
  background: #1a2236;
  padding: 3.5rem 0 3rem 0;
}
.modern-process-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.modern-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.modern-step {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(36,64,120,0.10);
  padding: 2rem 2.5rem;
  gap: 2.2rem;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.modern-step:hover {
  box-shadow: 0 8px 40px 0 rgba(74,144,226,0.18);
  transform: translateY(-4px) scale(1.02);
}
.step-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  min-width: 60px;
}
.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  margin-bottom: 0.2rem;
  box-shadow: 0 2px 8px 0 rgba(36,64,120,0.10);
}
.step-blue { background: #2563a6; }
.step-yellow { background: #ffe066; color: #233045; }
.step-green { background: #4caf50; }
.step-icon {
  font-size: 1.5rem;
  color: #4a90e2;
}
.step-content {
  flex: 1 1 0;
  min-width: 0;
}
.step-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #233045;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}
.step-desc {
  font-size: 1.01rem;
  color: #6b7a90;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.process-order-btn {
  display: inline-block;
  background: #4a90e2;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  box-shadow: 0 2px 8px 0 rgba(74,144,226,0.25);
}
.process-order-btn:hover {
  background: #2563a6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px 0 rgba(74,144,226,0.35);
}
.step-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(36,64,120,0.10);
  background: #f5f5f5;
  margin-left: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .modern-step {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1rem;
    gap: 1.2rem;
  }
  .step-img {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    max-width: 320px;
    height: 120px;
  }
  .modern-steps {
    gap: 1.5rem;
  }
} 

/* Why Choose Us Section (Reference Style) */
.why-choose-us-section {
  background: var(--white);
  padding: 2.5rem 0 2rem 0;
  margin: 2rem 0 0 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  animation: fadeIn 1.2s;
}
.why-choose-us-title {
  text-align: center;
  color: var(--primary-blue-dark);
  margin-bottom: 2.2rem;
  font-size: 2rem;
  font-weight: 700;
}
.why-choose-us-features {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  justify-content: center;
}
.why-feature {
  background: #d0e6f7; /* slightly darker than #eaf4fb */
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px 0 rgba(74,144,226,0.07);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 240px;
  max-width: 270px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-feature h3 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  text-align: center;
}
.why-feature p {
  color: var(--text-light);
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .why-choose-us-features {
    gap: 1rem;
  }
  .why-feature {
    padding: 1.2rem 0.7rem;
    min-width: 180px;
    max-width: 220px;
  }
}
@media (max-width: 600px) {
  .why-choose-us-title {
    font-size: 1.3rem;
  }
  .why-choose-us-section {
    padding: 1.2rem 0 1rem 0;
  }
  .why-choose-us-features {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.7rem;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
  .why-feature {
    min-width: 220px;
    max-width: 220px;
    flex: 0 0 auto;
    padding: 1rem 0.5rem 0.8rem 0.5rem;
  }
} 

.faq-section-home {
  width: 100vw;
  background: #fff;
  margin: 0;
  padding: 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.faq-container-home {
  display: flex;
  flex-direction: row;
  width: 100vw;
  min-height: 400px;
  box-shadow: none;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  max-width: none;
}
.faq-left-home {
  background: #2d3137;
  color: #fff;
  flex: 1 1 50%;
  padding: 2.2rem 2.5rem 3.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0;
}
.faq-title-home {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.3rem;
  line-height: 1.1;
}
.faq-right-home {
  flex: 1 1 50%;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  overflow: hidden;
}
.faq-img-home {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .faq-container-home {
    flex-direction: column;
    min-height: unset;
    border-radius: 0;
    width: 100vw;
  }
  .faq-right-home {
    align-items: stretch;
    justify-content: stretch;
  }
  .faq-img-home {
    max-height: 260px;
    width: 100vw;
    object-fit: cover;
  }
} 

.faq-list-home.faqs-accordion {
  margin-top: 2rem;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: #2d3137;
  border: none;
  outline: none;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question[aria-expanded="true"] {
  background: #23262b;
  color: #ffe066;
}
.faq-answer {
  background: #23262b;
  color: #e0e0e0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(.4,0,.2,1);
  padding: 0 1rem;
  font-size: 0.97rem;
}
.faq-answer.open {
  padding: 1rem;
  max-height: 500px;
  transition: max-height 0.5s cubic-bezier(.4,0,.2,1);
}
.faq-arrow {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.95rem;
  color: #bfc2c7;
  transition: transform 0.2s;
}
.faq-question:hover,
.faq-question:focus {
  color: #ffe066;
}
.faq-question:hover .faq-arrow,
.faq-question:focus .faq-arrow {
  color: #ffe066;
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(90deg);
}
@media (max-width: 600px) {
  .faq-question { font-size: 1rem; padding: 0.8rem; }
  .faq-answer { font-size: 0.95rem; }
} 

/* --- Custom Mobile-Only Fixes (<=480px) --- */
@media (max-width: 480px) {
  body, html {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .container {
    width: 100vw;
    max-width: 100vw;
    padding: 0 2vw;
    box-sizing: border-box;
  }
  [class*="-flex"],
  [class*="-grid"] {
    flex-wrap: wrap !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box;
    gap: 0.7rem !important;
  }
  .card, .feature-card, .step-card, .vehicle-card, .link-card, .benefit-card, .testimonial-card {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    margin: 0 auto 1rem auto;
  }
  .hero-text, .intro, .report-text, .newsletter-text, .footer-brand, .footer-copy, .footer-col, .about-autospectra, .faq-left-home, .faq-right-home {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    box-sizing: border-box;
    max-width: 100vw !important;
    width: 100vw !important;
  }
  .footer-top, .footer-columns, .footer-bottom {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 1rem !important;
    width: 100% !important;
  }
  .footer-payments {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin: 0.5rem 0 1rem 0 !important;
    width: 100vw !important;
  }
  .footer-payments img {
    height: 28px !important;
    min-width: 32px !important;
    max-width: 60px !important;
    margin: 0 0.2rem !important;
    object-fit: contain !important;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: inline-block !important;
  }
  .pricing-card, .why-feature {
    min-width: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin: 0 auto 1rem auto !important;
  }
  .carousel-bg, .carousel-wrapper, .pricing-carousel {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    box-sizing: border-box;
  }
  .header-photo-img, .process-img, .faq-img-home {
    max-width: 100vw !important;
    width: 100vw !important;
    height: auto !important;
    border-radius: 8px !important;
  }
  .nav-menu {
    left: 0 !important;
    width: 100vw !important;
    min-width: 0 !important;
    box-sizing: border-box;
  }
  .nav-link {
    font-size: 1rem !important;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    word-break: break-word !important;
  }
  .logo-img {
    width: 60px !important;
    max-width: 30vw !important;
  }
  .hero {
    min-height: 180px !important;
    padding: 1rem 0 !important;
  }
  .hero-text h1 {
    font-size: 1.1rem !important;
  }
  .hero-text p {
    font-size: 0.95rem !important;
  }
  .btn, .cta-btn, .btn-primary, .btn-secondary, .btn-dark, .btn-yellow {
    font-size: 0.97rem !important;
    padding: 0.7rem 0.5rem !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  .newsletter-form {
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }
  
  .newsletter-form input[type="email"] {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .newsletter-form button {
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .faq-section-home, .faq-container-home {
    width: 100vw !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }
  /* Reduce vertical gaps between footer sections on mobile */
  .footer-brand {
    margin-bottom: 0.2rem !important;
  }
  .footer-columns {
    margin-top: 0 !important;
    margin-bottom: 0.2rem !important;
  }
  .footer-trusted {
    margin-top: 0 !important;
    margin-bottom: 0.1rem !important;
  }
  .footer-col ul {
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-col h4 {
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-trusted {
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer-trusted img, .footer-trusted-logo img {
    margin: 0.05rem 0.1rem !important;
  }
  .footer-copy {
    margin: 0 !important;
    padding: 0 !important;
  }
  .footer {
    padding: 0.1rem 0 0.1rem 0 !important;
  }
  .footer, .footer *, .footer *:before, .footer *:after {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    min-height: 0 !important;
    line-height: 1.1 !important;
  }
  .footer, .footer > * {
    display: block !important;
    width: 100% !important;
  }
  .footer-top, .footer-columns, .footer-bottom {
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    min-height: 0 !important;
  }
  .footer-payments, .footer-socials {
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
  }
} 

