@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --primary: #c33233;
  --primary-light: #e25a5b;
  --secondary: #fff;
  --bg: #fff;
  --accent: #c33233;
  --card-bg: #fff;
  --radius: 20px;
  --shadow: 0 8px 32px 0 rgba(195, 50, 51, 0.13);
  --frost: rgba(255,255,255,0.80);
}

/* General Reset & Body */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
  color: var(--accent);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header & Navigation */
.header {
  width: 100%;
  padding: 18px 5%;
  background: #fff;
  border-bottom: 3px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  margin-right: 18px;
}

.logo h1 {
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 700;
}

.navbar a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.08rem;
  margin: 0 1.2rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}

.navbar a::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s;
}

.navbar a:hover {
  color: var(--primary-light);
}

.navbar a:hover::before {
  transform: scaleX(1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 50%, rgba(195,50,51,0.09) 100%);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 70% 40%, rgba(195,50,51,0.13) 0%, transparent 65%),
    radial-gradient(circle at 20% 60%, rgba(226,90,91,0.13) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}
.animated-circles {
  position: absolute;
  top: 60%; left: 75%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, #e25a5b40 60%, transparent 100%);
  border-radius: 50%;
  filter: blur(38px);
  opacity: 0.5;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(.23,1.01,.32,1);
}
.hero-content {
  z-index: 10;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.hero-title {
  font-size: 3.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  letter-spacing: 2px;
  text-shadow: 0 2px 24px #c3323333;
}
.hero-title .highlight {
  background: linear-gradient(90deg,#fff 60%,rgba(195,50,51,0.21));
  color: var(--primary);
  border-radius: 10px;
  padding: 0 8px;
  /* box-decoration-break: clone; -- removed for compatibility */
}
.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 32px;
  color: #c33233;
  letter-spacing: 1px;
  text-shadow: 0 1px 16px #e25a5b22;
}

.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn,
.hero-btn-outline {
  background: linear-gradient(90deg,var(--primary),var(--primary-light));
  color: #fff;
  padding: 0.95em 2.1em;
  border: none;
  border-radius: var(--radius);
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: background 0.25s, color 0.2s, transform 0.22s;
  will-change: transform;
}
.hero-btn-outline {
  background: #fff;
  border: 2.5px solid var(--primary);
  color: var(--primary);
}
.hero-btn:hover,
.hero-btn-outline:hover {
  background: linear-gradient(90deg,var(--primary-light),var(--primary));
  color: #fff;
  transform: scale(1.07);
}
.hero-btn-outline:hover {
  background: var(--primary-light);
  color: #fff;
}

.hero-trust {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--frost);
  color: var(--primary);
  padding: 0.7em 1.8em;
  border-radius: 40px;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px #c3323322;
  font-weight: 600;
  letter-spacing: 0.8px;
  z-index: 11;
  display: flex; gap: 10px;
}

.floating-cars {
  position: absolute;
  right: 6%; bottom: 12%;
  z-index: 3;
  display: flex;
  gap: 20px;
}
.float-car {
  width: 60px;
  opacity: 0.92;
  animation: floatCar 3.5s ease-in-out infinite alternate;
}
.car1 { animation-delay: 0.1s; }
.car2 { animation-delay: 0.7s; }
.car3 { animation-delay: 1.2s; }
.car4 { animation-delay: 1.9s; }
.car5 { animation-delay: 2.4s; }
@keyframes floatCar {
  0% { transform: translateY(0) rotate(-5deg);}
  100% { transform: translateY(-18px) rotate(7deg);}
}

/* Hero Animation */
@keyframes fadein-up {
  from { opacity: 0; transform: translateY(60px);}
  to   { opacity: 1; transform: translateY(0);}
}
.animate-fadein-up {
  opacity: 0;
  animation: fadein-up 1s ease-out 0.2s forwards;
}
@keyframes scalein {
  from { opacity: 0; transform: scale(0.8);}
  to   { opacity: 1; transform: scale(1);}
}
.animate-scalein {
  opacity: 0;
  animation: scalein 0.8s cubic-bezier(.87,-.41,.19,1.44) 0.8s forwards;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: center;
  gap: 38px;
  background: linear-gradient(90deg, #fff 80%, rgba(195,50,51,0.07) 100%);
  padding: 36px 4% 18px 4%;
  margin-top: -60px;
  z-index: 15;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(195, 50, 51, 0.05);
}
.stat-card {
  background: var(--frost);
  border-radius: 18px;
  padding: 23px 34px;
  text-align: center;
  min-width: 170px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.18s;
}
.stat-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-7px) scale(1.04);
}
.stat-number {
  display: block;
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.stat-label {
  color: #a63c3c;
  font-size: 1.08rem;
}


/* About */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 64px 5% 32px 5%;
  position: relative;
  background: #fff;
}
.about-content {
  flex: 1 1 400px;
  max-width: 560px;
  z-index: 2;
}
.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 18px;
}
.about-content p {
  font-size: 1.09rem;
  margin-bottom: 22px;
  color: #3d1919;
  line-height: 1.7;
}
.about-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.07rem;
  transition: color 0.2s;
}
.about-link:hover {
  color: var(--primary-light);
}
.daily-thought-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  max-width: 340px;
  min-height: 180px;
  margin: 0 auto;
  padding: 32px 24px 22px 24px;
  background: linear-gradient(120deg, rgba(255,255,255,0.92) 70%, #fbeaea 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(195, 50, 51, 0.10);
  position: relative;
  overflow: hidden;
  filter: hue-rotate(-8deg) brightness(1.04) saturate(0.98);
  animation: floatThought 4s ease-in-out infinite alternate, fadeInThought 1.2s cubic-bezier(.23,1.01,.32,1);
  transition: box-shadow 0.18s, transform 0.2s;
}

.daily-thought-card:hover {
  box-shadow: 0 16px 44px 0 rgba(195,50,51,0.16);
  transform: scale(1.025) translateY(-4px);
}

.daily-thought-card h3 {
  color: var(--primary);
  font-size: 1.21rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
}

.daily-thought-card blockquote {
  font-size: 1.13rem;
  color: #c33233;
  font-style: italic;
  margin: 0 0 8px 0;
  text-align: center;
  padding-left: 0;
  border-left: none;
  line-height: 1.5;
}

#daily-thought-author {
  color: #a63c3c;
  font-size: 0.99rem;
  margin-top: 2px;
  font-style: italic;
  text-align: center;
  display: block;
}

@keyframes floatThought {
  0% { transform: translateY(0);}
  100% { transform: translateY(-12px);}
}

@keyframes fadeInThought {
  from { opacity: 0; transform: scale(0.96);}
  to { opacity: 1; transform: scale(1);}
}

@media (max-width: 700px) {
  .daily-thought-card {
    min-width: 0;
    max-width: 98vw;
    padding: 14px 6vw 13px 6vw;
    font-size: 0.97rem;
  }
  .daily-thought-card h3 { font-size: 1.08rem; }
  .daily-thought-card blockquote { font-size: 1.01rem; }
}

/* Why Us Section */
.whyus {
  background: linear-gradient(90deg,#fff 70%, rgba(195,50,51,0.09) 100%);
  padding: 64px 5% 36px 5%;
  text-align: center;
}
.whyus h2 {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 32px;
  font-weight: 700;
}
.whyus-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 10px;
}
.whyus-card {
  background: var(--frost);
  border-radius: var(--radius);
  padding: 36px 28px 32px 28px;
  width: 255px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.19s, transform 0.16s;
}
.whyus-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-5px) scale(1.04);
}
.whyus-card img {
  width: 54px;
  margin-bottom: 18px;
}
.whyus-card h3 {
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 9px;
  font-weight: 700;
}
.whyus-card p {
  color: #a63c3c;
  font-size: 1.01rem;
}

/* Services */
.services {
  padding: 64px 5% 32px 5%;
  background: linear-gradient(90deg,#fff 0%, #fbeaea 100%);
  position: relative;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 40px;
  letter-spacing: 1.2px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
}
.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 310px;
  padding: 38px 26px 32px 26px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  will-change: transform;
  opacity: 0;
  transform: translateY(40px) scale(0.94) rotateY(-8deg);
  border: 2px solid var(--primary);
}
.service-card.in-view {
  opacity: 1;
  transform: none;
  box-shadow: 0 12px 46px 0 rgba(195, 50, 51, 0.11);
}
.service-card img {
  width: 68px;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 16px #c3323340);
}
.service-card h3 {
  font-size: 1.21rem;
  color: var(--primary);
  margin-bottom: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.service-card p {
  color: #c33233;
  font-size: 1.07rem;
  line-height: 1.5;
}
.animate-tilt { transition-delay: 0.1s; }
.animate-tilt-delay { transition-delay: 0.25s; }
.animate-tilt-delay2 { transition-delay: 0.4s; }
.animate-tilt-delay3 { transition-delay: 0.55s; }
.animate-tilt-delay4 { transition-delay: 0.7s; }

.service-banner {
  background: linear-gradient(90deg,#fff 60%, rgba(195,50,51,0.07) 100%);
  border-radius: var(--radius);
  margin: 38px auto 0 auto;
  max-width: 540px;
  box-shadow: var(--shadow);
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 1.08rem;
  color: var(--primary);
  font-weight: 600;
}
.service-banner-btn {
  background: linear-gradient(90deg,var(--primary),var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.6em 1.7em;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-left: 10px;
  transition: background 0.18s, transform 0.12s;
  box-shadow: var(--shadow);
}
.service-banner-btn:hover {
  background: linear-gradient(90deg,var(--primary-light),var(--primary));
  transform: scale(1.06);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(90deg, #fff 70%, rgba(195,50,51,0.07) 100%);
  padding: 64px 5% 36px 5%;
  text-align: center;
}
.testimonials h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 36px;
}
.testimonials-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  position: relative;
}
.testimonial {
  background: var(--frost);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 38px 26px 38px;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  position: absolute;
  left: 50%; transform: translateX(-50%) scale(0.98);
  transition: opacity 0.5s, transform 0.5s;
  z-index: 1;
  border-top: 3px solid var(--primary);
}
.testimonial.active {
  opacity: 1;
  position: relative;
  transform: translateX(0) scale(1);
  z-index: 2;
}
.testimonial-content p {
  font-size: 1.15rem;
  color: #c33233;
  margin-bottom: 16px;
  font-weight: 500;
}
.testimonial-author {
  color: #a63c3c;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-nav {
  margin-top: 26px;
  display: flex;
  gap: 0.8em;
  justify-content: center;
}
.dot {
  width: 13px; height: 13px;
  background: #e25a5b55;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #fff;
  transition: background 0.18s, border 0.14s;
}
.dot.active {
  background: var(--primary);
  border: 2px solid var(--primary-light);
}

/* Team Section */
.team {
  background: linear-gradient(90deg,#fff 60%, rgba(226,90,91,0.03) 100%);
  padding: 64px 5% 36px 5%;
  text-align: center;
}
.team h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 38px;
}
.team-members {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}
.team-card {
  background: var(--frost);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px 18px;
  width: 200px;
  text-align: center;
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.19s, transform 0.16s;
}
.team-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-5px) scale(1.04);
}
.team-card img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid var(--primary-light);
  margin-bottom: 16px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: #fff; /* Optional: adds a white background in case image has transparency */
}
.team-card h3 {
  font-size: 1.13rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 700;
}
.team-card span {
  color: #a63c3c;
  font-size: 1rem;
}

/* Contact */
.contact {
  padding: 64px 5% 32px 5%;
  background: #fff;
  position: relative;
}
.contact h2 {
  text-align: center;
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
}
.contact-content > div, .contact-form {
  flex: 1 1 300px;
  max-width: 430px;
  background: var(--card-bg);
  padding: 28px 24px 22px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  border: 2px solid var(--primary);
}
.contact-content ul {
  margin-top: 14px;
  color: var(--primary);
  font-size: 1.01rem;
  list-style: none;
}
.contact-content li {
  margin-bottom: 7px;
}
.social-links {
  padding-top: 25px;
  margin-top: 14px;
  display: flex;
  gap: 20px;
}
.social-links img {
  width: 50px;
  transition: transform 0.16s;
}
.social-links img:hover { transform: scale(1.18); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1.7px solid #c3323322;
  border-radius: 6px;
  margin-bottom: 12px;
  padding: 12px;
  font-size: 1.03rem;
  color: #c33233;
  resize: none;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.7px solid var(--primary);
  outline: none;
}
.btn-send {
  background: linear-gradient(90deg,var(--primary),var(--primary-light));
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.8em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.23s, transform 0.18s;
}
.btn-send:hover {
  background: linear-gradient(90deg,var(--primary-light),var(--primary));
  transform: scale(1.06);
}
.map-embed {
  margin: 26px auto 0 auto;
  max-width: 700px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */
.footer {
  background: var(--primary);
  padding: 26px 10% 18px 10%;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.footer a:hover {
  color: #c33233;
}

/* Responsive design */
@media (max-width: 1160px) {
  .hero-content { max-width: 90vw; }
  .about,
  .whyus,
  .services,
  .testimonials,
  .team,
  .contact,
  .stats { padding-left: 2%; padding-right: 2%; }
}
@media (max-width: 940px) {
  .about-visual {
    display: none !important;
    animation: none !important;
  }
  .about-content {
    max-width: 100%;
  }
  .service-cards,
  .whyus-features,
  .team-members,
  .stats {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
  .footer {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 700px) {
  .header {
    flex-direction: column;
    gap: 8px;
    padding: 16px 2%;
  }
  .logo h1 {
    font-size: 1.2rem;
  }
  .navbar a {
    margin: 0 0.7rem;
    font-size: 1rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .section-title,
  .about-content h2,
  .contact h2,
  .whyus h2,
  .testimonials h2,
  .team h2 {
    font-size: 1.5rem;
  }
  .service-card,
  .whyus-card,
  .team-card,
  .stat-card {
    width: 96vw;
    max-width: 380px;
    margin: 0 auto;
  }
  .about,
  .contact-content {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-trust {
    font-size: 0.98rem;
    padding: 0.5em 1em;
    bottom: 12px;
  }
  .map-embed iframe {
    height: 120px !important;
  }
}
/* --- Testimonials Section: What Our Customers Say --- */
.testimonials {
  background: linear-gradient(90deg, #fff 70%, rgba(195,50,51,0.07) 100%);
  padding: 64px 5% 36px 5%;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 36px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Slider wrapper for testimonials */
.testimonials-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide all testimonials by default */
.testimonial {
  background: var(--frost);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 38px 26px 38px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.98) translateY(20px);
  transition: opacity 0.6s cubic-bezier(.23,1.01,.32,1), transform 0.6s cubic-bezier(.23,1.01,.32,1);
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1;
  border-top: 3px solid var(--primary);
  pointer-events: none;
}

/* Show active testimonial */
.testimonial.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.testimonial-content p {
  font-size: 1.18rem;
  color: #c33233;
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.testimonial-author {
  color: #a63c3c;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* Slider navigation dots */
.testimonial-nav {
  margin-top: 32px;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.dot {
  width: 13px;
  height: 13px;
  background: #e25a5b55;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 2px solid #fff;
  transition: background 0.18s, border 0.14s, transform 0.14s;
}
.dot.active {
  background: var(--primary);
  border: 2px solid var(--primary-light);
  transform: scale(1.18);
}

/* Responsive adjustments */
@media (max-width: 700px) {
  .testimonials-slider, .testimonial {
    max-width: 98vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .testimonial-content p {
    font-size: 1.05rem;
  }
}
/* --- Floating Cars Section --- */
.floating-cars {
  position: absolute;
  right: 6%;
  bottom: 14%;
  z-index: 3;
  display: flex;
  gap: 20px;
  pointer-events: none;
}
.float-car {
  width: 60px;
  opacity: 0.92;
  animation: floatCar 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 16px rgba(195,50,51,0.13));
  transition: transform 0.2s;
}
.car1 { animation-delay: 0.1s; }
.car2 { animation-delay: 0.7s; }
.car3 { animation-delay: 1.2s; }
@keyframes floatCar {
  0% { transform: translateY(0) rotate(-5deg);}
  100% { transform: translateY(-18px) rotate(7deg);}
}

/* --- Hero Trust Section --- */
.hero-trust {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.96);
  color: var(--primary);
  padding: 0.7em 1.8em;
  border-radius: 40px;
  font-size: 1.08rem;
  box-shadow: 0 2px 14px #c3323322;
  font-weight: 600;
  letter-spacing: 0.8px;
  z-index: 20;
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1.5px solid var(--primary-light);
  white-space: nowrap;
}

.hero-trust span {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin: 0 2px;
}

/* --- Stats Section --- */
.stats {
  display: flex;
  justify-content: center;
  gap: 38px;
  background: linear-gradient(90deg, #fff 80%, rgba(195,50,51,0.07) 100%);
  padding: 36px 4% 18px 4%;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  box-shadow: 0 8px 32px 0 rgba(195, 50, 51, 0.05);
  max-width: 930px;
  border-radius: 26px;
  top: 28px;
}

.stat-card {
  background: var(--frost);
  border-radius: 18px;
  padding: 23px 34px;
  text-align: center;
  min-width: 170px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.18s;
  position: relative;
  z-index: 2;
}
.stat-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-7px) scale(1.04);
}
.stat-number {
  display: block;
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 7px;
  transition: color 0.2s;
}
.stat-label {
  color: #a63c3c;
  font-size: 1.08rem;
}

/* --- Prevent Overlap & Responsive Tuning --- */
.hero {
  position: relative;
  min-height: 82vh;
  padding-bottom: 110px; /* Ensure no overlap of trust/stats on hero content */
  box-sizing: border-box;
}
@media (max-width: 1160px) {
  .stats {
    max-width: 100vw;
    gap: 20px;
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
@media (max-width: 940px) {
  .floating-cars {
    right: 1%;
    bottom: 2%;
    gap: 10px;
  }
  .float-car {
    width: 42px;
  }
  .hero-trust {
    font-size: 0.95rem;
    padding: 0.5em 1.2em;
    bottom: 10px;
  }
  .stats {
    flex-wrap: wrap;
    gap: 18px;
    max-width: 98vw;
    top: 20px;
  }
  .stat-card {
    min-width: 135px;
    padding: 15px 10px;
  }
}
@media (max-width: 700px) {
  .floating-cars {
    display: none;
  }
  .hero-trust {
    font-size: 0.9rem;
    padding: 0.4em 0.7em;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    flex-direction: column;
    gap: 2px;
    white-space: normal;
  }
  .stats {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 2vw 10px 2vw;
    border-radius: 14px;
    top: 14px;
  }
  .stat-card {
    min-width: 100px;
    width: 95vw;
    max-width: 340px;
    font-size: 0.98rem;
    padding: 12px 6px;
  }
  .stat-number {
    font-size: 1.55rem;
  }
}
.floating-cars {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 20px;
  pointer-events: none;
  justify-content: center;
  align-items: center;
}
.float-car {
  width: 60px;
  opacity: 0.92;
  animation: floatCar 3.5s ease-in-out infinite alternate;
  filter: drop-shadow(0 8px 16px rgba(195,50,51,0.13));
  transition: transform 0.2s;
}
.car1 { animation-delay: 0.1s; }
.car2 { animation-delay: 0.7s; }
.car3 { animation-delay: 1.2s; }
@keyframes floatCar {
  0% { transform: translateY(0) rotate(-5deg);}
  100% { transform: translateY(-18px) rotate(7deg);}
  /* --- Key Features Section --- */
.features {
  background: linear-gradient(90deg,#fff 70%, #c3323317 100%);
  padding: 64px 5% 36px 5%;
  text-align: center;
}
.features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
}
.feature-card {
  background: var(--frost);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 32px 32px 32px;
  width: 270px;
  text-align: center;
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.19s, transform 0.16s;
}
.feature-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-5px) scale(1.04);
}
.feature-card img {
  width: 54px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}
.feature-card p {
  color: #a63c3c;
  font-size: 1.04rem;
  line-height: 1.5;
}
}
/* --- FAQ Section --- */
.faqs {
  background: linear-gradient(90deg, #fff 70%, #c3323310 100%);
  padding: 60px 5% 40px 5%;
  text-align: center;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  background: var(--frost);
  border-radius: 16px;
  box-shadow: 0 3px 18px #c3323312;
  margin-bottom: 16px;
  border-left: 4px solid var(--primary);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 8px 36px 0 #c3323320;
}
.faq-question {
  width: 100%;
  padding: 18px;
  background: none;
  border: none;
  outline: none;
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  transition: background 0.16s;
  position: relative;
}
.faq-question::after {
  content: '+';
  float: right;
  font-size: 1.3rem;
  color: var(--primary-light);
  transition: transform 0.2s;
}
.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}
.faq-answer {
  background: #fff;
  font-size: 1.05rem;
  color: #c33233;
  line-height: 1.6;
  padding: 0 18px 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(.23,1.01,.32,1);
}

/* Existing Responsive Fixes & General Styles */
@media (max-width: 1160px) {
  .features-cards {
    gap: 18px;
  }
}
@media (max-width: 940px) {
  .features-cards {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 96vw;
    max-width: 380px;
  }
  .faq-list {
    max-width: 98vw;
  }
}
@media (max-width: 700px) {
  .features {
    padding: 40px 2vw 20px 2vw;
  }
  .feature-card {
    width: 97vw;
    max-width: 350px;
    padding: 20px 8px 14px 8px;
  }
  .faqs {
    padding: 35px 2vw 12px 2vw;
  }
}
/* --- Key Features Section --- */
.features {
  background: linear-gradient(90deg,#fff 70%, #c3323317 100%);
  padding: 64px 5% 36px 5%;
  text-align: center;
}

.features .section-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.features-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-top: 28px;
}

.feature-card {
  background: var(--frost);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 32px 32px 32px;
  width: 270px;
  text-align: center;
  border-top: 3px solid var(--primary);
  transition: box-shadow 0.19s, transform 0.16s;
}

.feature-card:hover {
  box-shadow: 0 12px 36px 0 #c3323344;
  transform: translateY(-5px) scale(1.04);
}

.feature-card img {
  width: 54px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 700;
}

.feature-card p {
  color: #a63c3c;
  font-size: 1.04rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1160px) {
  .features-cards {
    gap: 18px;
  }
}
@media (max-width: 940px) {
  .features-cards {
    flex-direction: column;
    align-items: center;
  }
  .feature-card {
    width: 96vw;
    max-width: 380px;
  }
}
@media (max-width: 700px) {
  .features {
    padding: 40px 2vw 20px 2vw;
  }
  .feature-card {
    width: 97vw;
    max-width: 350px;
    padding: 20px 8px 14px 8px;
  }
}
.futuristic-card {
  background: linear-gradient(100deg, rgba(255,255,255,0.93) 70%, #e25a5b0c 100%);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(195,50,51,0.10);
  padding: 28px 18px 22px 18px;
  margin: 32px 0 0 0;
}
.futuristic-card h3 {
  color: var(--primary);
  font-size: 1.22rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.responsive-table {
  overflow-x: auto;
}
.responsive-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  background: transparent;
}
.responsive-table th,
.responsive-table td {
  border: 1.5px solid #c3323340;
  padding: 0.6em 0.7em;
  text-align: center;
  vertical-align: middle;
}
.responsive-table th {
  background: #fbeaea;
  color: var(--primary);
  font-weight: 700;
}
.about-milestones {
  margin-top: 18px;
  list-style: none;
  padding: 0;
}
.about-milestones li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  position: relative;
  padding-left: 28px;
}
.about-milestones li::before {
  content: "•";
  color: var(--primary);
  font-size: 1.5em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
}
.milestone-date {
  font-weight: bold;
  color: var(--primary);
}
@media (max-width: 900px) {
  .about-detail {
    flex-direction: column;
    gap: 22px;
  }
  .about-visual {
    margin-left: 0;
    margin-top: 28px;
    max-width: 98vw;
    height: 180px;
  }
}