/* Global light theme */
body {
  background-color: #eeeeee;
  color: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

/* Navigation */
.navbar-website {
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1030;
}
.navbar-website .navbar-brand .logo {
  height: 42px;
  width: auto;
}
.navbar-website .nav-link {
  color: #0f172a;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.navbar-website .nav-link:hover,
.navbar-website .nav-link:focus {
  color: #2a66b5;
  transform: translateY(-1px);
}
.navbar-website .navbar-toggler {
  filter: none;
  border: none;
  box-shadow: none;
}
.navbar-website .navbar-toggler:focus {
  box-shadow: none;
}

h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
  font-weight: 700;
}

/* Hero section */
.hero {
  padding: 3rem 0;
  position: relative;
}
.hero-image {
  width: 100%;
  max-width: 600px;
}
.hero .cta-btn {
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 600;
}
.btn-primaria {
  background-color: #2dc38a;
  color: #fff;
}
.btn-primaria:hover {
  background-color: #25a075;
}
.btn-secundaria {
  background-color: #46a9fd;
  color: #ffffff;
}
.btn-secundaria:hover {
  background-color: #2f8fe0;
}

/* Service cards */
.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-card i {
  font-size: 2.2rem;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #ffffff;
}
.service-card.bg-purple i {
  background-color: #625de3;
  color: #fff;
}
.service-card.bg-orange i {
  background-color: #e97e3c;
  color: #fff;
}
.service-card.bg-red i {
  background-color: #d9534f;
  color: #fff;
}

/* Stats cards */
.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #5f6dbd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-right: 0.75rem;
}
.testimonial-photo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  object-fit: cover;
  margin-right: 0.75rem;
  display: block;
}

/* Fleet cards */
.fleet-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.fleet-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.fleet-card p {
  margin: 0;
  padding: 1rem;
  text-align: center;
}

/* How it works list */
.steps-list .step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #625de3;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 1rem;
}
.step-text {
  flex: 1;
  font-size: 1rem;
}

/* FAQ list */
.faq-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.section-gap {
  margin-top: 32px;
  margin-bottom: 32px;
}
.faq-item h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.faq-item p {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

/* Contact form */
.contact-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 3rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
.form-control {
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-label {
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.btn-submit {
  background-color: #46a9fd;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(70, 169, 253, 0.35);
}
.btn-submit:hover {
  background-color: #2f8fe0;
}

/* Footer */
.footer-section {
  background: linear-gradient(135deg, #2d86e0 0%, #1f5aa3 100%);
  border-top: none;
  font-size: 0.95rem;
  color: #ffffff;
}
.footer-logo {
  height: 56px;
  width: auto;
}
.footer-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-links li + li {
  margin-top: 0.35rem;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #e0f2ff;
}
.footer-newsletter .form-control {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.footer-newsletter .form-control::placeholder {
  color: #dbeafe;
}
.footer-legal {
  font-size: 0.85rem;
  color: #ffffff;
}
.footer-section p,
.footer-title,
.footer-links li,
.footer-newsletter label {
  color: #ffffff;
}

/* Responsive spacing adjustments */
@media (min-width: 992px) {
  .hero {
    padding: 4rem 0 3rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 2rem));
  background: #1f5aa3;
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.35);
  padding: 1rem 1.25rem;
  z-index: 1100;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner--hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}
.cookie-banner__wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 260px;
}
.cookie-banner__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.cookie-banner__title {
  font-weight: 700;
  color: #ffffff;
}
.cookie-banner__body {
  color: #e2e8f0;
  font-size: 0.95rem;
}
.cookie-banner__link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  color: #dbeafe;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cookie-banner__policy {
  color: #0f172a;
  font-weight: 600;
  border: none;
}
.btn-accept {
  background-color: #2dc38a;
  color: #ffffff;
  border: none;
  font-weight: 700;
  box-shadow: 0 12px 18px rgba(45, 195, 138, 0.35);
}
.btn-accept:hover {
  background-color: #25a075;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cookie-banner {
    width: min(100%, calc(100% - 1.25rem));
    padding: 1rem;
  }
  .cookie-banner__wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .cookie-banner__actions .btn {
    flex: 1;
    min-width: 140px;
  }
}
