/* ================================================
   NEW SECTIONS STYLES - Mauno Rental
   Fleet Preview, Trust & Social Proof, FAQ, Final CTA
   ================================================ */

/* ================================================
   FLEET PREVIEW SECTION
   ================================================ */

.fleet-preview-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.fleet-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.fleet-category-card {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.fleet-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.fleet-category-card:hover::before {
  transform: scaleX(1);
}

.fleet-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(26, 54, 93, 0.15);
  border-color: #1a365d;
}

.fleet-category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.fleet-category-card:hover .fleet-category-icon {
  transform: scale(1.1) rotate(5deg);
}

.fleet-category-icon i {
  font-size: 2rem;
  color: white;
}

.fleet-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
  font-family: 'Poppins', Arial, sans-serif;
}

.fleet-category-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.fleet-category-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.fleet-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
}

.fleet-feature i {
  color: #4ade80;
  font-size: 1rem;
  min-width: 20px;
}

.fleet-example-models {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  margin-top: 15px;
}

.fleet-example-models strong {
  color: #1a365d;
  font-weight: 600;
}

.fleet-cta {
  text-align: center;
  margin-top: 50px;
}

.fleet-cta-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

/* ================================================
   TRUST & SOCIAL PROOF SECTION
   ================================================ */

.trust-section {
  padding: 80px 0;
  background: white;
}

/* Statistics Grid */
.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.trust-stat-item {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.trust-stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.1);
  border-color: #1a365d;
}

.trust-stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1a365d;
  font-family: 'Poppins', Arial, sans-serif;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.trust-stat-subtext {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

/* Testimonials */
.section-subtitle-lg {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a365d;
  text-align: center;
  margin: 30px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3rem;
  color: #f0f0f0;
  opacity: 0.3;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(26, 54, 93, 0.12);
  border-color: #1a365d;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
}

.testimonial-details {
  flex: 1;
}

.testimonial-name {
  font-size: 1rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 3px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 5px;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

.trust-cta {
  text-align: center;
  margin-top: 50px;
}

.trust-cta-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

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

.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 25px rgba(26, 54, 93, 0.12);
}

.faq-question {
  padding: 25px 30px;
  background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-question i {
  font-size: 1.3rem;
  color: #ffd700;
}

.faq-answer {
  padding: 25px 30px;
  background: white;
}

.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta-text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 25px;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */

.final-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0d1b2e 0%, #1a365d 50%, #2d5a87 100%);
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 11px
  ),
  repeating-linear-gradient(
    0deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 11px
  );
  opacity: 0.5;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 25px;
  font-family: 'Poppins', Arial, sans-serif;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.final-cta-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.final-cta-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.final-cta-feature i {
  color: #4ade80;
  font-size: 1.2rem;
}

.final-cta-urgency {
  font-size: 1rem;
  color: #ffd700;
  font-weight: 600;
  margin: 30px 0;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
}

.btn-primary-large {
  background: white;
  color: #1a365d;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  background: #ffd700;
  color: #0d1b2e;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary-large {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-secondary-large:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  transform: translateY(-4px);
  color: white;
}

.final-cta-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.trust-badge i {
  font-size: 2rem;
  color: #4ade80;
}

.trust-badge span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 991px) {
  .fleet-preview-section,
  .trust-section,
  .faq-section,
  .final-cta-section {
    padding: 60px 0;
  }

  .trust-stat-number {
    font-size: 2.5rem;
  }

  .final-cta-title {
    font-size: 2.2rem;
  }

  .final-cta-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .fleet-categories-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-section {
    padding: 60px 0;
  }

  .final-cta-title {
    font-size: 1.8rem;
  }

  .final-cta-text {
    font-size: 1rem;
  }

  .final-cta-features {
    grid-template-columns: 1fr;
  }

  .final-cta-buttons {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
  }

  .final-cta-trust-badges {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .trust-stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat-number {
    font-size: 2rem;
  }

  .final-cta-title {
    font-size: 1.6rem;
  }
}
