/* ============================================
   CARTRONIQUE SYSTEM - MAIN STYLESHEET
   Color Scheme:
   - Primary: Navy Blue (#001B4D)
   - Accent: Gold (#F5C400)
   - Background: White (#FFFFFF)
   - Text: Dark Gray (#333333)
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

/* ============================================
   GENERAL STYLES
   ============================================ */

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

button,
.btn {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #001b4d;
  color: white;
}

.btn-primary:hover {
  background-color: #f5c400;
  color: #001b4d;
}

.btn-secondary {
  background-color: #f5c400;
  color: #001b4d;
}

.btn-secondary:hover {
  background-color: #001b4d;
  color: #f5c400;
}

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

/* ============================================
   SECTIONS & CONTENT
   ============================================ */

section {
  padding: 60px 20px;
}

section h2 {
  font-size: 40px;
  color: #001b4d;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}

section h3 {
  font-size: 24px;
  color: #001b4d;
  margin-bottom: 15px;
  font-weight: 600;
}

section p {
  color: #555555;
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ============================================
   CARD LAYOUTS
   ============================================ */

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

.card {
  background-color: #fafafa;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8e8e8;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 27, 77, 0.2);
}

.card-icon {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #001b4d, #003d7a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #f5c400;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  margin-top: 0;
}

.card-content p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
}

.card-link {
  color: #001b4d;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link:hover {
  color: #f5c400;
}

/* ============================================
   FEATURES/WHY CHOOSE US
   ============================================ */

.features {
  background-color: #f8f9fa;
}

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

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  font-size: 48px;
  color: #f5c400;
  margin-bottom: 15px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 14px;
  color: #666666;
}

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

.testimonials {
  background-color: #ffffff;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f5c400;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: #555555;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: 600;
  color: #001b4d;
  margin-bottom: 5px;
}

.testimonial-rating {
  color: #f5c400;
  font-size: 14px;
}

.stars {
  color: #f5c400;
  margin-right: 5px;
}

/* ============================================
   SERVICE AREAS
   ============================================ */

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 30px;
}

.area-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  border: 2px solid #e8e8e8;
  transition: all 0.3s ease;
}

.area-item:hover {
  border-color: #f5c400;
  background-color: #fff9e6;
}

.area-item h4 {
  color: #001b4d;
  font-size: 16px;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-form {
  max-width: 600px;
  margin: 30px auto;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #001b4d;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: #333333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #f5c400;
  box-shadow: 0 0 5px rgba(245, 196, 0, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background-color: #001b4d;
  color: white;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-submit:hover {
  background-color: #f5c400;
  color: #001b4d;
}

/* ============================================
   CONTACT INFO
   ============================================ */

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.contact-item-icon {
  font-size: 36px;
  color: #f5c400;
  margin-bottom: 15px;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.contact-item p {
  color: #666666;
  font-size: 14px;
}

.contact-item a {
  color: #001b4d;
  font-weight: 600;
}

.contact-item a:hover {
  color: #f5c400;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background-color: #001b4d;
  color: white;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #f5c400;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #e8e8e8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f5c400;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #003d7a;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #f5c400;
  color: #001b4d;
}

.footer-bottom {
  border-top: 1px solid #003d7a;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #b0b0b0;
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

.service-hero {
  background: linear-gradient(rgba(0, 27, 77, 0.8), rgba(0, 27, 77, 0.8)),
    url("https://images.unsplash.com/photo-1489824904134-891ab64532f1?w=1200&h=400&fit=crop")
      center/cover;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.service-hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-hero p {
  font-size: 18px;
  opacity: 0.95;
}

.service-content {
  background-color: #ffffff;
  padding: 40px 20px;
}

.service-section {
  margin-bottom: 40px;
}

.service-section h2 {
  font-size: 28px;
  color: #001b4d;
  margin-bottom: 20px;
  border-bottom: 3px solid #f5c400;
  padding-bottom: 10px;
}

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

.step-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #f5c400;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #f5c400;
  color: #001b4d;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #001b4d;
}

.step-card p {
  font-size: 14px;
  color: #666666;
}

.service-cta {
  background-color: #f5c400;
  color: #001b4d;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-top: 40px;
}

.service-cta h2 {
  color: #001b4d;
  font-size: 28px;
  margin-bottom: 15px;
}

.service-cta p {
  color: #001b4d;
  font-size: 16px;
  margin-bottom: 20px;
}

.service-cta .btn {
  padding: 14px 32px;
  font-size: 16px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-intro {
  background-color: #f8f9fa;
  padding: 40px 20px;
}

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

.about-item {
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-item h3 {
  color: #001b4d;
  margin-bottom: 15px;
  font-size: 20px;
}

.about-item p {
  color: #666666;
  line-height: 1.8;
}

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

.section-bg-light {
  background-color: #f8f9fa;
}

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

.text-primary {
  color: #001b4d;
}

.text-accent {
  color: #f5c400;
}

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

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

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

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

/* ============================================
   IMPROVED SERVICE CARDS DESIGN
   ============================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

/* Card container */
.card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Card hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #001b4d;
}

/* Image area */
.card-icon {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #ffffff;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-icon img:hover {
  transform: scale(1.12);
}

/* Card content */
.card-content {
  padding: 22px;
  text-align: left;
}

.card-content h3 {
  color: #001b4d;
  font-size: 20px;
  margin-bottom: 10px;
}

.card-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.card-link {
  color: #f5c400;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.card-link:hover {
  color: #001b4d;
  text-decoration: underline;
}

/* ===== Premium Ignition Cards ===== */
.ignition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ignition-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ignition-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.ignition-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #001b4d;
  margin-top: 0;
  margin-bottom: 10px;
}

.ignition-title img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ignition-card:hover .ignition-title img {
  transform: scale(1.15);
}

.ignition-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
/* ===== Premium Image Card Grid ===== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.image-card {
  background: #000;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.image-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-card:hover img {
  transform: scale(1.08);
}

.image-card h3 {
  margin: 0;
  padding: 15px;
  color: white;
  font-size: 18px;
  text-align: center;
  background: #000;
  line-height: 1.4;
}
/* ===== Premium Ignition Problems Grid ===== */
.premium-problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding-top: 25px;
}

.problem-box {
  background: #0e0e0e;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.problem-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.problem-box img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  margin: 0 0 15px;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.problem-box:hover img {
  transform: scale(1.1);
}

.problem-box h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 10px;
}

.problem-box p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}
/* FAQ Section */
.faq-section {
  margin-top: 40px;
}

.faq-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-card:hover {
  background-color: #e2e6ea;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #001b4d;
  font-size: 16px;
}

.faq-question span {
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq-card.active .faq-answer {
  max-height: 500px; /* adjust as needed */
  padding-top: 10px;
}

.faq-card.active .faq-question span {
  transform: rotate(45deg); /* changes + to x on open */
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-list li {
  padding: 12px 15px;
  margin-bottom: 8px;
  border-left: 4px solid #f5c400;
  background: #f9f9f9;
  font-size: 15px;
  color: #333;
  transition: all 0.3s ease;
}

.service-list li::before {
  content: "✓";
  color: #001b4d;
  font-weight: bold;
  margin-right: 10px;
}

.service-list li:hover {
  background: #eef3ff;
  transform: translateX(5px);
}
/* Animated check icons */
.service-list li {
  position: relative;
  padding-left: 35px;
}

.service-list li::before {
  content: "✔";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  color: #f5c400;
  font-weight: bold;
  animation: popIcon 1.5s infinite ease-in-out;
}

@keyframes popIcon {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.3);
  }
}

/* Smooth hover animation */
.service-list li:hover {
  transform: translateX(8px);
  background: #eef3ff;
}
.brand-logos {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 20px;
}

.brand-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.brand-item img {
  height: 50px; /* logo size */
  width: auto;
  object-fit: contain;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.brand-item img:hover {
  transform: scale(1.1);
}
.service-section {
  text-align: center;
  padding: 40px 20px;
}

.brand-logos {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Space between rows */
  align-items: center;
}

.brand-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px; /* Space between logos */
}

.brand-item img {
  width: 120px; /* Bigger logo size */
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-item img:hover {
  transform: scale(1.1);
}
.service-section {
  position: relative;
  /* background: url("../images/mazda.jpg") no-repeat center center/cover; */
  padding: 80px 20px;
  border-radius: 20px;
  overflow: hidden;
}

/* Dark overlay for better text readability */
/* .service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
} */

.service-section h2,
.service-section .process-steps {
  position: relative;
  z-index: 1;
  color: #fff;
}

.step-card {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 16px;
  padding: 20px;
}

.step-number {
  background: #ff0000;
  color: #fff;
}
/* Base background section style */
.section-bg-image {
  position: relative;
  padding: 50px 25px;
  border-radius: 8px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark overlay for readability */
.section-bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  z-index: 1;
}

/* Content above overlay */
.section-bg-image > * {
  position: relative;
  z-index: 2;
}

/* Individual section backgrounds */
.bg-repair-process {
  background-image: url("../images/ignition repair.webp");
}

.bg-pricing {
  background-image: url("../images/failigigitio.webp");
}

.bg-prevention {
  background-image: url("../images/broken.webp");
}

.bg-faq {
  background-image: url("../images/ecu1.jpg");
}
/* FAQ section card styling */
.bg-faq {
  background-image: url("../images/transponder.webp");
}

.faq-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #001b4d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "-";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 18px 20px;
  display: none;
  font-size: 15px;
  line-height: 1.6;
}
/* Premium bullet list styling */
.styled-list {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.8;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.styled-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

/* Custom elegant bullet */
.styled-list li::before {
  content: "✔";
  font-size: 14px;
  color: #00eaff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(2px);
}
.map-section {
  padding: 40px 20px;
  text-align: center;
  background: #f1f1f1;
  margin-top: 20px;
}

.map-section h2 {
  margin-bottom: 10px;
  color: #001b4d;
}

.map-section p {
  margin-bottom: 20px;
  font-size: 15px;
  color: #333;
}

.map-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* LOST KEY SECTION LAYOUT */
.lost-key-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  padding: 20px;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.lost-key-image {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.lost-key-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  display: block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* "LOST KEY?" TEXT OVER IMAGE */
.lost-key-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 25px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  border-radius: 10px;
  transition: 0.3s ease;
}

.lost-key-link:hover .lost-key-text {
  background: #e60000;
  transform: translateY(-4px);
}

/* RIGHT SIDE TEXT */
.lost-key-info {
  flex: 1;
  min-width: 300px;
}

.lost-key-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.lost-key-info p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* CTA BUTTON */
.lost-key-cta {
  display: inline-block;
  background: #d40000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lost-key-cta:hover {
  background: #001b4d;
}
.lost-key-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 20px;
  flex-wrap: wrap; /* makes it responsive */
}

/* Image on the right */
.lost-key-image {
  flex: 0 0 400px; /* fixed width for desktop */
  text-align: center;
}

.lost-key-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.lost-key-image img:hover {
  transform: scale(1.05);
}

/* Info / list on the left */
.lost-key-info {
  flex: 1;
  min-width: 250px;
}

.service-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a237e; /* navy blue */
}

.included-list {
  list-style: none;
  padding: 0;
}

.included-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
}

.included-list li strong {
  color: green;
  margin-right: 8px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .lost-key-layout {
    flex-direction: column;
    align-items: center;
  }

  .lost-key-image {
    margin-top: 20px;
  }
}
.service-section-bg {
  position: relative;
  padding: 60px 20px;
  color: #fff; /* text color on dark background */
  border-radius: 10px;
  overflow: hidden;

  /* background image */
  background-image: url("../images/cas.jpg"); /* updated image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* optional dark overlay for readability */
.service-section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

/* make text appear above overlay */
.service-section-bg h2,
.service-section-bg p {
  position: relative;
  z-index: 1;
}
.faq-section-bg {
  position: relative;
  padding: 60px 20px;
  border-radius: 10px;
  overflow: hidden;

  background-image: url("../images/westi.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}
.included-list li {
  border: none !important;
  margin: 10px 0;
  padding: 0;
}
.lost-key-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
}

.lost-key-info {
  flex: 1 1 400px;
}

.lost-key-info h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.included-list li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
  color: #333;
}

.included-list li strong {
  color: #28a745; /* green checkmark */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.lost-key-image {
  flex: 1 1 300px;
  text-align: center;
}

.lost-key-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.lost-key-image img:hover {
  transform: scale(1.05);
}

.lost-key-link {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.lost-key-text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(40, 167, 69, 0.9);
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.lost-key-link:hover .lost-key-text {
  background-color: #218838;
}

@media (max-width: 768px) {
  .lost-key-layout {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }

  .lost-key-info,
  .lost-key-image {
    flex: 1 1 100%;
  }

  .lost-key-text {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}
.gps-tracking-section {
  background-image: url("../images/Fleet.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  border-radius: 12px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.gps-tracking-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  z-index: 0;
}

.gps-tracking-section h2,
.gps-tracking-section p,
.gps-tracking-section .process-steps {
  position: relative;
  z-index: 1; /* ensures text and steps appear above overlay */
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.step-card {
  background-color: rgba(255, 255, 255, 0.1); /* semi-transparent card */
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 300px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 10px;
}
/* General Service Section Styling */
.service-section {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-section:hover {
  transform: translateY(-5px);
}

.service-section h2 {
  font-size: 1.8rem;
  color: #001b4d;
  margin-bottom: 15px;
}

.service-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-section ul {
  margin-left: 20px;
  padding: 0;
  list-style: disc;
}

.service-section ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

/* Highlighted Sections */
.service-section.highlight {
  background-color: #fff9e6;
  border-left: 4px solid #f5c400;
}

.service-section.faq-card {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #001b4d;
}

.service-section.faq-card h4 {
  margin-top: 0;
  font-size: 1.1rem;
  color: #001b4d;
}

.service-section.faq-card p {
  color: #666;
  font-size: 0.95rem;
}

/* CTA Section */
.service-cta {
  text-align: center;
  margin: 40px 0;
}

.service-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #001b4d;
}

.service-cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 20px;
}

.service-cta .btn {
  background-color: #28a745;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-cta .btn:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* FAQ Layout Flexbox */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .service-section {
    padding: 20px;
  }

  .service-cta .btn {
    width: 100%;
    text-align: center;
  }
}
.why-standout-section {
  position: relative;
  padding: 60px 20px;
  border-radius: 12px;
  color: white;

  background-image: url("../images/cas.jpg"); /* for CSS inside css/style.css */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* overlay */
.why-standout-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  border-radius: inherit;
  z-index: 1;
}

.why-standout-section > * {
  position: relative;
  z-index: 2;
}

/* grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.why-icon {
  font-size: 44px;
  margin-bottom: 15px;
}

.why-item p {
  color: #e5e5e5;
}

.why-item h3 {
  color: white;
}
.why-standout-section {
  position: relative;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.why-standout-section h2 {
  position: relative;
  font-size: 36px;
  margin-bottom: 50px;
  z-index: 2;
}

/* Background image with overlay */
.why-standout-section::before {
  content: "";
  background: url("../images/cas.jpg") no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
}

/* Grid setup */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Glassy card effect */
.why-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Icons */
.why-icon {
  font-size: 48px;
  margin-bottom: 15px;
  transition: transform 0.3s, color 0.3s;
}

.why-item:hover .why-icon {
  transform: scale(1.2);
  color: #f5c400;
}

/* Text */
.why-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #fff;
}

.why-item p {
  font-size: 15px;
  color: #f0f0f0;
}

/* Fade-in animation */
.why-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.why-item:nth-child(1) {
  animation-delay: 0.1s;
}
.why-item:nth-child(2) {
  animation-delay: 0.2s;
}
.why-item:nth-child(3) {
  animation-delay: 0.3s;
}
.why-item:nth-child(4) {
  animation-delay: 0.4s;
}
.why-item:nth-child(5) {
  animation-delay: 0.5s;
}
.why-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-process-section {
  position: relative;
  background: url("../images/cas.jpg") center/cover no-repeat;
  padding: 60px 0;
  color: #001b4d;
}

.service-process-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    255,
    255,
    255,
    0.85
  ); /* light overlay for readability */
  z-index: 1;
}

.service-process-section .container {
  position: relative;
  z-index: 2;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.process-card {
  background: white;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid #f5c400;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.process-number {
  font-size: 32px;
  font-weight: bold;
  color: #f5c400;
  margin-bottom: 10px;
}
.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.hero-slider .slides .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 8s ease;
}

.hero-slider .slides .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 8s ease;
}

.hero-slider .slides .slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.key-services {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.key-services .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 27, 77, 0.6);
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-card:hover .icon {
  transform: scale(1.3) rotate(10deg);
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}
.service-card:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* why  choose us section */
.why-choose {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.why-choose .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 27, 77, 0.6);
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s forwards;
}

.why-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.why-card:hover .icon {
  transform: scale(1.3) rotate(10deg);
}

/* Staggered animation delays */
.why-card:nth-child(1) {
  animation-delay: 0.1s;
}
.why-card:nth-child(2) {
  animation-delay: 0.2s;
}
.why-card:nth-child(3) {
  animation-delay: 0.3s;
}
.why-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-areas {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}

.service-areas .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.area-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 25px 30px;
  border-radius: 12px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.area-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonials {
  background: #001b4d;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 0;
  scroll-behavior: smooth;
}
.testimonial-card {
  min-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 15px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
/* dropdown */
/* ===== DROPDOWN MEGA MENU ===== */
.navbar ul li {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background: #0a0a0a;
  width: 650px;
  padding: 25px;
  display: flex;
  gap: 40px;
  border-radius: 8px;
  border: 1px solid #222;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.35s ease;
  z-index: 999;
}

.mega-column h4 {
  color: #ffd000;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  color: #ffffff;
  padding: 6px 0;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.mega-column a:hover {
  color: #ffd000;
  padding-left: 5px;
}

/* Hover trigger */
.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Desktop arrow */
.menu-link {
  cursor: pointer;
  color: yellow;
}

/* Mobile support */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 15px;
    background: #111;
    border: none;
    transform: translateY(0);
  }

  .dropdown.active .mega-menu {
    display: block;
  }
}
.gps-car-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap; /* ensures mobile responsiveness */
  background-color: #f9f9f9; /* optional background */
}

.gps-car-info {
  flex: 1;
  min-width: 300px;
}

.gps-car-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.gps-car-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #333;
}

.gps-car-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #0070f3;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.gps-car-cta:hover {
  background-color: #005bb5;
}

.gps-car-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.gps-car-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.gps-car-text {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: #0070f3;
}

/* Responsive: stack image below text on small screens */
@media (max-width: 768px) {
  .gps-car-layout {
    flex-direction: column-reverse; /* text first, image below */
    text-align: center;
  }

  .gps-car-info {
    margin-top: 1.5rem;
  }
}
/* =========================
   GPS FAQ SECTION (UNIQUE)
   ========================= */
.gps-faq {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gps-faq h2 {
  text-align: center;
  color: #001b4d;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
}

/* FAQ Item */
.gps-faq .faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

/* FAQ Question Button */
.gps-faq .faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  border: none;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #001b4d;
  outline: none;
}

/* Chevron Icon */
.gps-faq .chevron {
  border: solid #001b4d;
  border-width: 0 3px 3px 0;
  padding: 5px;
  display: inline-block;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

/* Rotate when open */
.gps-faq .faq-item.active .chevron {
  transform: rotate(-135deg);
}

/* FAQ Answer */
.gps-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: white;
  color: #444;
  line-height: 1.6;
  font-size: 16px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* When open */
.gps-faq .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 18px 20px;
}
.gps-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/gprs.jpg") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.25);
  background-blend-mode: darken;
}
.get-quote-section {
  position: relative;
  text-align: center;
  color: white;
  padding: 100px 20px;
  overflow: hidden;
  background: url("images/homee.jpg") center center / cover no-repeat;
}

.get-quote-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay for readability */
  z-index: 1;
}

.get-quote-section .container {
  position: relative;
  z-index: 2; /* above overlay */
  max-width: 800px;
  margin: 0 auto;
}

.get-quote-section h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.get-quote-section .btn {
  padding: 12px 30px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  background-color: #25d366;
  color: white;
  transition: transform 0.3s, box-shadow 0.3s;
}

.get-quote-section .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .get-quote-section h2 {
    font-size: 2rem;
  }
}
.get-quote-section {
  position: relative;
  text-align: center;
  color: white;
  padding: 100px 20px;
  overflow: hidden;
  background: url("images/homee.jpg") center center / cover no-repeat;
}

.get-quote-section .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.4); /* text background only */
  padding: 40px;
  border-radius: 12px;
}
/* ===== car-alarm.css (Cartronique System) ===== */
/* Base */
:root {
  --cas-bg: #0b2a45;
  --cas-accent: #f5c400;
  --cas-primary: #001b4d;
  --cas-green: #25d366;
  --cas-white: #ffffff;
  --cas-muted: #666;
  --cas-radius: 10px;
  --cas-max: 1100px;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color: #222;
  background: #fff;
}
.cas-container {
  width: 90%;
  max-width: var(--cas-max);
  margin: 0 auto;
}

.cas-btn.whatsapp {
  background: var(--cas-green);
  color: #fff;
}

/* Responsive hero hover effect */
.cas-hero:hover .cas-hero-bg {
  transform: scale(1.04);
}

/* Generic section */
.cas-section {
  padding: 56px 0;
}
.cas-section h2 {
  font-size: 1.6rem;
  margin: 0 0 12px;
  color: var(--cas-primary);
}
.cas-lead {
  color: var(--cas-muted);
  margin-bottom: 16px;
}

/* two-column grid */
.cas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}
.cas-grid-2 .cas-col {
  padding: 6px;
}
.cas-image-right {
  text-align: right;
}
.cas-image-left {
  text-align: left;
}
.cas-img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(4, 12, 30, 0.12);
  display: block;
  margin: 0 auto;
}
.cas-caption {
  font-size: 0.9rem;
  color: var(--cas-muted);
  margin-top: 8px;
}

/* advantage list */
.cas-list {
  padding-left: 18px;
}
.cas-list-number {
  padding-left: 0;
}
.cas-list-number li {
  margin: 10px 0;
  color: #222;
}

/* install features */
.cas-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.cas-feature {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 8px 20px rgba(3, 12, 30, 0.03);
}
.cas-note {
  color: var(--cas-muted);
  margin-top: 12px;
}

/* accessories grid */
.cas-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.cas-access-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(3, 12, 30, 0.06);
}
.cas-access-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.cas-access-body {
  padding: 14px;
}
.cas-access-price {
  margin-top: 8px;
  color: var(--cas-primary);
  font-weight: 700;
}

/* FAQ */
.cas-faq-item {
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}
.cas-faq-q {
  width: 100%;
  text-align: left;
  padding: 14px;
  background: #fff;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.cas-faq-a {
  padding: 0 14px;
  background: #fafafa;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.cas-chevron {
  opacity: 0.6;
  margin-left: 12px;
}

/* process steps */
.cas-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.cas-step {
  background: var(--cas-primary);
  color: #fff;
  padding: 18px;
  border-radius: 12px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
}
.cas-step-num {
  background: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
}

/* pricing */
.cas-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.cas-price-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #eee;
  text-align: center;
  font-weight: 700;
}

/* CTA row */
.cas-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* footer */
.cas-footer {
  background: #f8f9fa;
  padding: 28px 0;
  border-top: 1px solid #eee;
}
.cas-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.cas-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cas-footer-links li {
  margin: 8px 0;
}
.cas-footer-bottom {
  text-align: center;
  padding: 12px 0;
  color: var(--cas-muted);
  border-top: 1px solid #eee;
  margin-top: 14px;
}

/* small screens */
@media (max-width: 900px) {
  .cas-grid {
    grid-template-columns: 1fr;
  }
  .cas-image-right,
  .cas-image-left {
    text-align: center;
  }
  .cas-hero-title {
    font-size: 1.6rem;
  }
  .cas-hero {
    padding: 56px 0;
  }
}

/* utility */
.text-muted {
  color: var(--cas-muted);
}
.cas-feature {
  text-align: center;
}

.cas-feature-img-big {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.cas-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #001b4d;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cas-btn:hover {
  background-color: #ff2525;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.process-bg {
  position: relative;
  background-image: url("../images/Fleet.jpg"); /* adjust path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  color: #fff; /* ensures text is readable */
}

.process-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    0,
    0,
    0,
    0.5
  ); /* optional dark overlay for readability */
  z-index: 1;
}

.process-bg .cas-container {
  position: relative;
  z-index: 2;
}
/* HERO SECTION — ONLY for DPF/EGR page */
.cas-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.cas-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero.jpg"); /* Correct path for services folder */
  background-size: cover;
  background-position: center;
  filter: brightness(0.45); /* dark overlay ONLY — no blur */
  z-index: 1;
}

.cas-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cas-hero-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.cas-hero-lead {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cas-hero-actions .cas-btn {
  margin: 8px;
}
.cas-hero-bg {
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* section-specific background for egr-dpf-delete page */
#cas-dpf-egr-delete {
  position: relative;
  background-image: url("../images/dpfb.jpg"); /* <-- use the path that worked in the inline test */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
  z-index: 1;
}

#cas-dpf-egr-delete::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(
    0,
    0,
    0,
    0.45
  ); /* optional overlay — remove or change opacity if you prefer */
  z-index: 1;
}

#cas-dpf-egr-delete .cas-container {
  position: relative;
  z-index: 2;
}
.service-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;

  /* Background image */
  background-image: url("../images/gpshero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* -----------------------------------------------------------
   GLOBAL
----------------------------------------------------------- */
.cas-body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #333;
  background: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

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

/* Buttons */
.cas-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  margin: 10px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cas-btn.primary {
  background: #e63946;
  color: #fff;
}

.cas-btn.primary:hover {
  background: #c72e3b;
}

.cas-btn.outline {
  border: 2px solid #fff;
  color: #fff;
}

.cas-btn.outline:hover {
  background: #fff;
  color: #e63946;
}

/* -----------------------------------------------------------
   SECTIONS
----------------------------------------------------------- */
.cas-section {
  padding: 55px 0;
}

.cas-lead {
  font-size: 18px;
  margin-bottom: 10px;
}

/* -----------------------------------------------------------
   GRID LAYOUT
----------------------------------------------------------- */
.cas-grid {
  display: grid;
  gap: 35px;
}

.cas-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cas-image-right img,
.cas-image-left img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* -----------------------------------------------------------
   FEATURES / INSTALLATION STEPS
----------------------------------------------------------- */
.cas-features {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cas-feature {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
  transition: 0.3s ease;
}

.cas-feature:hover {
  background: #fff;
  border-color: #e63946;
}

.cas-feature h3 {
  color: #e63946;
  font-size: 20px;
}

/* -----------------------------------------------------------
   LISTS
----------------------------------------------------------- */
.cas-list li {
  margin-bottom: 10px;
}

/* -----------------------------------------------------------
   CTA SECTION
----------------------------------------------------------- */
.cas-install {
  text-align: center;
}

.cas-install h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.cas-install p {
  max-width: 600px;
  margin: 0 auto 20px;
}

/* -----------------------------------------------------------
   MAP SECTION
----------------------------------------------------------- */
.map-section {
  background: #f7f7f7;
  padding: 40px 0;
  text-align: center;
}

.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}

/* -----------------------------------------------------------
   FOOTER (just styling, HTML stays unchanged)
----------------------------------------------------------- */
footer {
  background: #1a1a1a;
  color: #ccc;
  padding: 40px 0;
}

footer a {
  color: #e63946;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 768px) {
  .cas-hero {
    height: 380px;
  }
  .cas-hero-title {
    font-size: 28px;
  }
  .cas-btn {
    margin: 7px;
  }
}
/* ==============================
   General Body & Typography
============================== */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  color: #001b4d;
  background-color: #fff;
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: #001b4d;
  margin-bottom: 15px;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 15px;
  color: #333;
}

ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  margin-bottom: 8px;
}

.cas-lead {
  font-size: 1.05rem;
  font-weight: 500;
}

.cas-btn {
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cas-btn.primary {
  background-color: #ff0000;
  color: #fff;
}

.cas-btn.primary:hover {
  background-color: #cc0000;
}

.cas-btn.outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.cas-btn.outline:hover {
  background: #fff;
  color: #001b4d;
}

/* ==============================
   Sections & Grids
============================== */
.cas-section {
  padding: 60px 20px;
}

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

.cas-grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cas-col {
  flex: 1 1 45%;
  min-width: 280px;
}

.cas-image-right img,
.cas-image-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cas-image-right img:hover,
.cas-image-left img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ==============================
   Features / Steps
============================== */
.cas-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.cas-feature {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cas-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ==============================
   Cost Guide
============================== */
.cas-cost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.cas-cost-item {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.cas-cost-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cas-cost-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #001b4d;
}

.cas-cost-item p {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
}

/* ==============================
   FAQ Section
============================== */
.cas-faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.cas-faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
  color: #001b4d;
}

.cas-chevron {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.cas-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 10px;
  color: #333;
}

/* ==============================
   Map Section
============================== */
.map-section {
  background: #f1f1f1;
  padding: 40px 20px;
  text-align: center;
}

.map-container iframe {
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  height: 350px;
  border: none;
  margin-top: 20px;
}

/* ==============================
   Responsive
============================== */
@media (max-width: 768px) {
  .cas-grid-2 {
    flex-direction: column;
  }

  .cas-hero-title {
    font-size: 2rem;
  }
}
.cas-hero-section {
  position: relative;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cas-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.35); /* darkens image for text visibility */
  z-index: 0;
}

.cas-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cas-hero-title {
  font-size: 36px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.cas-hero-lead {
  color: #dfe6f0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.cas-hero-actions .cas-btn {
  margin: 0 10px;
}
.cas-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left image, right text */
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

.cas-hero-image {
  display: flex;
  justify-content: flex-start; /* image stays left */
}

.cas-img {
  width: 100%;
  max-width: 380px; /* prevents stretching */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
/* Shared layout for both sections */
.cas-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 40px 20px;
}

/* Image stays left */
.cas-hero-image {
  display: flex;
  justify-content: flex-start;
}

/* Prevent stretching */
.cas-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Optional: add spacing between multiple sections */
.second-layout {
  margin-top: 40px;
}
/* KEY CUTTING FAQ SECTION */
.key-cutting-faq {
  background: #f7f7f7;
  padding: 50px 20px;
  border-radius: 10px;
}

.key-cutting-faq h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 700;
}

.key-cutting-faq .faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  background: #fff;
  padding: 18px 15px;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question .chevron {
  transition: transform 0.3s ease;
}

.faq-item.active .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 20px;
  background: #fafafa;
  display: none;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}
/* Spare Key Section Wrapper */
.spare-key-section {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
}

/* Flexbox Layout */
.spare-key-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Image Column */
.spare-key-image {
  flex: 1;
}

.spare-key-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 10px;
  object-fit: cover;
}

/* Text Column */
.spare-key-text {
  flex: 1;
}

.spare-key-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.spare-key-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spare-key-text li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
}

.spare-key-text li:last-child {
  border-bottom: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .spare-key-content {
    flex-direction: column;
    text-align: left;
  }

  .spare-key-image img {
    max-width: 100%;
  }
}
/* Section spacing */
.service-section {
  padding: 20px 0;
}

/* Grid layout */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/* Card Style */
.step-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: 0.3s ease;
}

/* Hover effect */
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Step number circle */
.step-number {
  width: 45px;
  height: 45px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
  font-size: 18px;
}

/* Titles */
.step-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #222;
}

/* Description */
.step-card p {
  color: #555;
  font-size: 14px;
}
/* Floating Call & WhatsApp */
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25d366;
}

/* Call Button */
.call-btn {
  background-color: #001b4d;
}
/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block; /* Optional: removes tiny gaps below images */
}

/* Make your cards grid responsive */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.pricing {
  color: #222;
}

.pricing h2 {
  color: #111;
}

.pricing p,
.pricing ul {
  color: #555;
  font-size: 14px;
}
.pricing,
.pricing * {
  visibility: visible !important;
  opacity: 1 !important;
  color: #000 !important;
}
.pricing-box {
  background: #f9f9f9;
  color: #222;
  padding: 24px;
  border-radius: 8px;
}
.cas-step {
  background: #0a4fd9; /* blue card */
  padding: 20px;
  border-radius: 10px;
}

.cas-step h3 {
  color: #ffffff;
}

.cas-step p {
  color: #eaf0ff;
}
.cas-step {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
/* SECTION BACKGROUND */
.cas-install {
  background: #f5f7fb;
}

/* GRID */
.cas-install .cas-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

/* CARD */
.cas-install .cas-feature {
  background: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

/* TEXT */
.cas-install h2,
.cas-install h3 {
  color: #111;
}

.cas-install p {
  color: #444;
}

/* IMAGE */
.cas-install .cas-feature-img-big {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* BUTTON */
.cas-install .cas-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #ff0000; /* red background */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cas-install .cas-btn:hover {
  background: #083ea8;
}
.cas-install .cas-feature {
  border: 1.5px solid #000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
/* Section background */
.cas-accessories {
  background: #f5f7fb; /* light section background */
  padding: 40px 0;
}

/* Grid layout */
.cas-access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

/* Individual accessory card */
.cas-access-card {
  background: #ffffff; /* card background */
  border: 2px solid #000; /* black border */
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for interactivity */
.cas-access-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

/* Image inside card */
.cas-access-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Card body */
.cas-access-body {
  padding: 18px;
}

/* Card headings and text */
.cas-access-body h3 {
  color: #111;
  margin-bottom: 8px;
}

.cas-access-body p {
  color: #444;
  font-size: 14px;
  margin-bottom: 12px;
}

/* Price styling */
.cas-access-price {
  color: #0a4fd9;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Button styling */
.cas-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #ff0000; /* red background */
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.cas-btn:hover {
  background: #083ea8;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px; /* rounded square */
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.social:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Facebook */
.social.fb {
  background: linear-gradient(135deg, #1877f2, #0f5ad7);
}

/* Instagram */
.social.ig {
  background: radial-gradient(
    circle at 30% 30%,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

/* WhatsApp */
.social.wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
/* Normal logo size */
.cas-logo-img {
  height: 90px; /* increase logo size */
  transition: height 0.3s ease;
}

/* Smaller logo on scroll (you already have this, keep it) */
.cas-header.shrink .cas-logo-img {
  height: 40px;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* space between logo, nav, buttons */
}

/* Navigation */
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

/* Header buttons */
.header-buttons {
  display: flex;
  gap: 12px; /* space between Call & WhatsApp */
}

/* Ensure buttons don’t overlap nav */
.header-buttons a {
  white-space: nowrap;
}
.hero-section,
.cas-hero {
  padding-top: 80px;
}
/* ============================== 
   KEY SERVICES SECTION
============================== */
.key-services-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

/* Service cards (all types) */
.service-card,
.service-card-flex {
  background: #ffffff;
  border: none; /* ❌ removed black border */
  border-radius: 14px;
  padding: 30px;
  margin-bottom: 30px; /* ✅ space between service boxes */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.service-card-flex:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

/* Service CTA buttons */
.service-btn {
  display: inline-block;
  padding: 12px 22px;
  background-color: #ff0000;
  color: #ffffff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #cc0000;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-btn:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}
.service-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .service-card-flex {
    flex-direction: column;
    text-align: center;
  }

  .service-text {
    padding-right: 0;
    margin-left: 0;
  }
}
/* Service Card Layout */
.service-card-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

/* Text column */
.service-text {
  flex: 1;
  max-width: 55%;
}

.service-text h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #001b4d;
}

.service-text p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #333;
}

/* Image column */
.service-image {
  flex: 1;
  max-width: 45%;
  display: flex;
  justify-content: flex-end;
}

.service-image img {
  width: 100%;
  max-width: 380px; /* 👈 keeps image smaller */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .service-card-flex {
    flex-direction: column;
    text-align: left;
  }

  .service-text,
  .service-image {
    max-width: 100%;
  }

  .service-image {
    justify-content: center;
  }

  .service-image img {
    max-width: 320px;
  }
}
/* ==============================
   WHY CHOOSE CARTRONIQUE SYSTEM - index.html
============================== */
.why-choose {
  position: relative;
  padding: 70px 20px;
  color: #ffffff; /* default text color for cards and paragraphs */
  background-size: cover;
  background-position: center;
}

.why-choose .container h2 {
  color: #007bff; /* blue text */
  font-weight: bold; /* bold */
  margin-bottom: 40px;
  font-size: 42px;
  font-weight: bold;
}

/* Grid layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Individual cards */
.why-card {
  background-color: #2c2c2c; /* dark grey */
  color: #ffffff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

/* Icons inside cards */
.why-card .icon {
  font-size: 42px;
  margin-bottom: 15px;
}

/* Card headings */
.why-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

/* Card paragraph text */
.why-card p {
  color: #e0e0e0; /* lighter white for readability */
  font-size: 15px;
  line-height: 1.6;
}
.service-hero h1,
.service-hero p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}
/* ===============================
   FIXED HEADER for services.html
================================ */
.cas-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2c2c2c; /* dark grey */
  z-index: 1000;
  padding: 18px 20px;
  transition: padding 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.cas-header.shrink {
  padding: 8px 20px;
}

/* Header Layout */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   LOGO
================================ */
.cas-logo-img {
  height: 65px; /* normal size */
  transition: height 0.3s ease;
}

.cas-header.shrink .cas-logo-img {
  height: 40px; /* shrink smoothly */
}

.cas-logo-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
}

.cas-red {
  color: #ff0000;
}

/* ===============================
   NAVIGATION
================================ */
.main-nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

/* ===============================
   HEADER BUTTONS
================================ */
.header-buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary {
  background: #001b4d;
  color: #ffffff;
}

.btn-primary {
  background: #25d366;
  color: #ffffff;
}

/* ===============================
   HERO SECTION
================================ */
.service-hero {
  margin-top: 110px; /* prevents header overlap */
  background-image: url("../images/carkeyprograming.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

/* Dark overlay */
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Hero Content */
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
}

.service-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-hero p {
  font-size: 18px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===============================
   MOBILE MENU
================================ */
.mobile-menu-btn {
  display: none;
  font-size: 26px;
  background: none;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #2c2c2c;
    padding-top: 90px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }

  /* Prevent Call button covering menu */
  .header-buttons {
    display: none;
  }

  /* Hero spacing on mobile */
  .service-hero {
    margin-top: 90px;
    padding: 90px 20px;
  }

  .service-hero h1 {
    font-size: 30px;
  }

  .service-hero p {
    font-size: 16px;
  }
}
/* Oval (pill) View Details button */
.card-link {
  display: inline-block;
  padding: 10px 22px;
  background-color: #d32f2f; /* red */
  color: #ffffff;
  border-radius: 999px; /* oval shape */
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.card-link:hover {
  background-color: #b71c1c; /* darker red */
  transform: translateY(-2px);
}
/* WHY STAND OUT – dark cards */
.why-standout-section {
  padding: 60px 20px;
}

.why-standout-section h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

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

.why-item {
  background: #2e2e2e; /* dark grey */
  color: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item h3 {
  color: #ffffff;
  margin: 15px 0 10px;
}

.why-item p {
  color: #e0e0e0; /* slightly softer white */
  font-size: 0.95rem;
  line-height: 1.6;
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Hover effect */
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}
.why-standout-section h2 {
  display: inline-block;
  background-color: #d32f2f; /* red */
  color: #ffffff; /* white text */
  padding: 10px 25px;
  border-radius: 999px; /* oval shape */
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
/* For very small screens */
@media (max-width: 480px) {
  .card-link {
    padding: 8px 16px; /* make oval smaller */
    font-size: 0.9rem;
  }

  .why-standout-section h2 {
    padding: 8px 20px; /* smaller oval on mobile */
    font-size: 1.5rem;
  }

  .cards-grid {
    gap: 15px;
  }

  .why-grid {
    gap: 15px;
  }
}
.primary-areas {
  display: inline-block; /* rectangle fits text */
  background-color: #ff0000; /* red rectangle */
  color: #ffffff; /* white text */
  padding: 10px 20px; /* spacing inside rectangle */
  border-radius: 6px; /* optional rounded corners */
  font-size: 24px; /* adjust size */
  font-weight: bold;
  text-align: center;
  margin: 20px auto; /* vertical spacing + center horizontally */
  display: block; /* needed to center with auto margins */
}
.mobile-advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* CARD */
.advantage-card {
  background-color: #2c2c2c;
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* HOVER */
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
}

/* ICON */
.advantage-icon {
  font-size: 44px;
  margin-bottom: 15px;
  color: #e60000; /* brand red */
}

/* TITLE */
.advantage-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* BODY TEXT – FIXED DIMNESS */
.advantage-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #eaeaea; /* softer white = clearer */
  font-weight: 400;
}

/* OPTIONAL: SLIGHT TEXT SHARPENING */
.advantage-card h3,
.advantage-card p {
  text-rendering: optimizeLegibility;
}
.contact-item a.contact-link {
  color: red;
  font-weight: bold;
  text-decoration: none;
}
/* Dark grey card styling */
.card-dark {
  background-color: #1f1f1f; /* slightly darker grey for more contrast */
  color: #fefefe; /* bright white for stronger visibility */
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5); /* subtle shadow for pop */
}

/* Optional hover effect */
.card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Card heading */
.card-dark h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #ffffff; /* ensure heading is bright white */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Card paragraph */
.card-dark p {
  font-size: 16px;
  line-height: 1.6;
  color: #fefefe; /* brighter paragraph text */
}
.mega-menu {
  display: flex;
  gap: 20px;
  background: #1c1c1c;
  padding: 15px 20px;
  border-radius: 10px;
  position: absolute;
  top: 120%;
  right: 0;
  left: auto;
  min-width: 500px;
  max-width: 700px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.dropdown {
  position: relative;
}
/* ===============================
   DARK GREY SERVICE CARDS (HIGH CONTRAST)
================================ */

.service-section-bg,
.service-section.card-dark,
.faq-section-bg {
  background-color: #262626; /* slightly darker for contrast */
  color: #ffffff; /* PURE white */
  padding: 32px;
  border-radius: 14px;
  margin-bottom: 40px;
}

/* Headings – strong white */
.service-section-bg h2,
.service-section.card-dark h2,
.faq-section-bg h2,
.faq-section-bg h4 {
  color: #ffffff;
  font-weight: 700;
}

/* Paragraphs & lists – BRIGHT white */
.service-section-bg p,
.service-section-bg li,
.service-section.card-dark p,
.service-section.card-dark li,
.faq-section-bg p {
  color: #ffffff; /* 🔥 FIXED */
  line-height: 1.75;
  font-size: 16px;
}

/* Reduce opacity only for secondary text */
.service-section-bg p small,
.service-section.card-dark p small {
  color: #dcdcdc;
}

/* Checkmarks & highlights */
.service-section-bg strong,
.service-section.card-dark strong {
  color: #f5c400;
  font-weight: 600;
}

/* FAQ cards */
.faq-card {
  background: #1b1b1b;
  color: #ffffff;
  padding: 22px;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* FAQ headings */
.faq-card h4 {
  color: #ffffff;
}

/* Process steps cards */
.step-card {
  background: #2b2b2b;
  color: #ffffff;
  border-radius: 14px;
  padding: 28px;
}

/* CTA section */
.service-cta {
  background: linear-gradient(145deg, #2c2c2c, #1f1f1f);
  color: #ffffff;
  padding: 45px 30px;
  border-radius: 16px;
  text-align: center;
}
/* ===============================
   PROCESS BACKGROUND SECTION
================================ */

.process-bg {
  background-image: url("../images/eslrepaire.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 60px 0;
}

/* DARK overlay */
.process-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78); /* 🔥 stronger overlay */
  z-index: 0;
}

/* Content above overlay */
.process-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
}

/* Headings */
.process-content h2,
.process-content h3 {
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8); /* 🔥 clarity */
}

/* Paragraphs */
.process-content p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}
.service-cta {
  background-color: #2c2c2c; /* Dark background */
  color: #ffffff; /* Bright white text */
  padding: 40px 20px;
  text-align: center;
}

.service-cta h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff; /* Ensure heading is white */
}

.service-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ffffff; /* Ensure paragraph is white */
}

.service-cta .btn {
  background-color: #25d366; /* Bright button */
  color: #ffffff; /* White text */
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.service-cta .btn:hover {
  background-color: #e65c00; /* Darker orange on hover */
}
/* Space between fixed header and hero */
.cas-hero {
  padding-top: 120px; /* adjust as needed */
}
.cas-shift-right {
  margin-left: 40px; /* adjust as needed */
}

@media (max-width: 768px) {
  .cas-shift-right {
    margin-left: 0; /* reset on mobile */
  }
}
.cas-card-dark {
  background: #2c2c2c; /* dark grey */
  color: #ffffff; /* ensures all text inside is white */
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Ensure paragraph text is bright enough */
.cas-card-dark p {
  color: #f5f5f5; /* slightly softer white for readability */
  line-height: 1.7;
}

/* Headings inside card */
.cas-card-dark h2,
.cas-card-dark h3 {
  color: #ffffff;
}
/* FAQ Section Background */
#cas-faq {
  position: relative;
  background-image: url("../images/ford.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

/* Overlay */
.cas-faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* semi-transparent dark overlay */
  z-index: 0;
}

/* FAQ Card */
.cas-faq-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 20px; /* responsive padding */
}

.cas-faq-card {
  background-color: rgba(32, 32, 32, 0.95); /* dark card */
  color: #fff; /* white text */
  border-radius: 12px;
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Heading */
.cas-faq-card h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

/* FAQ Items */
.cas-faq-item {
  margin-bottom: 20px;
}

.cas-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  padding: 10px 0;
  font-size: 1.05em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cas-faq-q:hover {
  color: #ffd700; /* highlight on hover */
}

.cas-chevron {
  font-size: 1.2em;
}

/* Answer */
.cas-faq-a {
  display: none; /* hide initially */
  padding: 10px 0 10px 15px;
  color: #fff;
  line-height: 1.6;
}

/* Show answer when active (use JS to toggle .active class) */
.cas-faq-item.active .cas-faq-a {
  display: block;
}
x .page-key-cutting .service-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
  color: #ffffff;
}

.page-key-cutting .process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-key-cutting .step-card {
  background: #3a3a3a; /* slightly lighter card for contrast */
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-key-cutting .step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-key-cutting .step-number {
  background: #25d366; /* green circle */
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.page-key-cutting .step-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-key-cutting .step-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}
/* Container for premium problems */
.premium-problems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* Each problem box */
.problem-box {
  background-color: #2c2c2c; /* dark grey background */
  color: #ffffff; /* ensures white text */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-box img {
  width: 100%;
  max-width: 200px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.problem-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff; /* reinforce white for headings */
}

.problem-box p {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff; /* reinforce white for paragraphs */
}

/* Hover effect */
.problem-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .premium-problems {
    grid-template-columns: 1fr;
  }
}
/* Unique wrapper */
.ignition-service-wrapper {
  font-family: Arial, sans-serif;
}

/* Common Section Styling */
.ignition-section {
  position: relative;
  padding: 50px 25px;
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}

.ignition-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  z-index: 0;
}

.ignition-section h2 {
  position: relative;
  z-index: 1;
  font-size: 32px;
  margin-bottom: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

/* Paragraphs and lists */
.ignition-section p,
.ignition-section li,
.ignition-section em {
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: 1.6;
}

.ignition-section ul {
  list-style: none;
  padding: 0;
}

.ignition-section ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Step Cards */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* FAQ */
.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-answer {
  display: none;
  padding: 10px 15px;
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* CTA */
.service-cta {
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background-color: #ff5a00;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e14a00;
}

/* Background images */
.bg-repair-process {
  background: url("../images/ignition repair.webp") center/cover no-repeat;
}
.bg-pricing {
  background: url("../images/pricing.webp") center/cover no-repeat;
}
.bg-prevention {
  background: url("../images/prevention.webp") center/cover no-repeat;
}
.bg-faq {
  background: url("../images/faq.webp") center/cover no-repeat;
}
/* ============================
   Ignition Service Sections
============================ */

/* Wrapper for all sections */
.ignition-service-wrapper {
  font-family: Arial, sans-serif;
}

/* Common Section Styling */
.ignition-section {
  position: relative;
  padding: 50px 25px;
  border-radius: 8px;
  color: #ffffff;
  overflow: hidden;
  margin-bottom: 40px;
}

/* Overlay using gradient for better readability */
.ignition-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  border-radius: 8px;
  z-index: 0;
}

/* Headings more visible */
.ignition-section h2 {
  position: relative;
  z-index: 1;
  font-size: 32px;
  margin-bottom: 25px;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Paragraphs and lists */
.ignition-section p,
.ignition-section li,
.ignition-section em {
  position: relative;
  z-index: 1;
  color: #fff;
  line-height: 1.6;
}

.ignition-section ul {
  list-style: none;
  padding: 0;
}

.ignition-section ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Step Cards */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* FAQ */
.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 100%;
  text-align: left;
  padding: 12px 15px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  position: relative;
  z-index: 1;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-answer {
  display: none;
  padding: 10px 15px;
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

/* CTA */
.service-cta {
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background-color: #ff0000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #e14a00;
}

/* =========================
   Background Images
========================= */
.bg-repair-process {
  background: url("../images/ignition repair.webp") center/cover no-repeat;
}

.bg-pricing {
  background: url("../images/bad-ignition.webp") center/cover no-repeat;
}

.bg-prevention {
  background: url("../images/keystack.webp") center/cover no-repeat;
}

.bg-faq {
  background: url("../images/bmwe.jpeg") center/cover no-repeat;
}
/* ==============================
   Repair Process Section Headings
============================== */
.bg-repair-process h2 {
  color: #ffffff; /* Bright white */
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8); /* Stronger shadow for readability */
  position: relative;
  z-index: 2;
}

/* Step card headings */
.bg-repair-process .step-card h3 {
  color: #ffffff; /* Bright white */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
}

/* Step card overlay improvement */
.bg-repair-process .step-card {
  background: rgba(0, 0, 0, 0.5); /* Darker semi-transparent background */
  padding: 20px;
  border-radius: 10px;
  flex: 1 1 250px;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}
/* =========================
   FAQ SECTION FIX
========================= */

.faq-section {
  background-color: #f9f9f9; /* light grey background */
  padding: 60px 0;
}

.faq-section h2 {
  color: #222; /* dark heading */
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: #ffffff; /* white card */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  background: #2b2b2b; /* dark button */
  color: #ffffff; /* visible text */
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  background: #ff0000; /* Cartronique red */
}

.faq-answer {
  display: none;
  padding: 20px;
  background: #ffffff;
  color: #333333; /* DARK TEXT (FIX) */
  line-height: 1.6;
  font-size: 15px;
}

/* Open state (optional) */
.faq-item.active .faq-answer {
  display: block;
}
.cas-info-card {
  max-width: 900px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.96);
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.cas-info-card h2 {
  color: #222;
  margin-bottom: 15px;
}

.cas-info-card p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}
.cas-logo-text {
  color: #ffffff; /* keep Cartronique white */
  font-family: inherit; /* prevents font change */
  text-transform: none; /* stops affecting menu items */
}

.cas-logo-text::first-letter {
  text-transform: uppercase;
}
/* FACTS SECTION */
.facts {
  background: linear-gradient(5deg, #001b4d, #ff0000);
  padding: 80px 0;
  color: #ffffff;
}

/* Grid */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

/* Card */
.facts-item {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  padding: 35px 20px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

/* Icon */
.facts-item i {
  font-size: 42px;
  margin-bottom: 15px;
  color: #ffffff;
  opacity: 0.95;
}

/* Number */
.facts-item h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Text */
.facts-item p {
  font-size: 16px;
  opacity: 0.95;
}
/* Icon animation */
.facts-item i {
  font-size: 42px;
  margin-bottom: 15px;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0);
  }
}
.facts-item p {
  color: #ffffff;
  font-weight: 500;
}

/* this is added text */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --bg: #0f1016;
  --text: #f0f0f0;
  --accent: #006aff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Poppins, sans-serif;
}

/* NAVBAR */
nav {
  height: 60px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
}

.links-container {
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
}

/* LINKS */
nav a,
.services-label {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

nav a:hover,
.services-label:hover {
  background: var(--accent);
}

.home-link {
  margin-right: auto;
}

/* RESET UL */
.links-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* SERVICES */
.has-submenu {
  position: relative;
}

.arrow {
  margin-left: 6px;
  font-size: 12px;
}

/* SUBMENU (DESKTOP) */
.submenu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  min-width: 240px;
  background: #111;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.submenu li a {
  padding: 10px 16px;
  font-size: 14px;
  color: #ddd;
}

.submenu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* SHOW ON HOVER (DESKTOP) */
@media (min-width: 451px) {
  #services-toggle,
  .arrow {
    display: none;
  }

  .has-submenu:hover .submenu {
    display: block;
  }
}

/* MOBILE */
#sidebar-active {
  display: none;
}

.open-sidebar-button,
.close-sidebar-button {
  display: none;
  font-size: 24px;
  padding: 16px;
  cursor: pointer;
  color: white;
}

@media (max-width: 450px) {
  .open-sidebar-button,
  .close-sidebar-button {
    display: block;
  }

  .links-container {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--bg);
    transition: 0.4s ease;
    z-index: 10;
  }

  nav a,
  .services-label {
    width: 100%;
    padding: 16px 24px;
  }

  #sidebar-active:checked ~ .links-container {
    right: 0;
  }

  #sidebar-active:checked ~ #overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9;
  }

  /* MOBILE SUBMENU */
  .submenu {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: none;
    box-shadow: none;
  }

  #services-toggle:checked ~ .submenu {
    max-height: 500px;
  }
}
@media (max-width: 450px) {
  nav a,
  .services-label {
    height: auto; /* ✅ stop forcing tall rows */
    padding: 14px 20px; /* ✅ tighter vertical spacing */
  }

  .submenu li a {
    padding: 10px 20px; /* ✅ tighter submenu spacing */
  }
}
.links-container li {
  margin: 0;
  padding: 0;
}
.nav-list {
  display: flex;
  align-items: center;
}
@media (min-width: 451px) {
  .has-submenu {
    position: relative;
  }

  /* Create a hover bridge */
  .has-submenu::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px; /* invisible bridge */
  }

  .submenu {
    top: calc(100% + 10px);
  }
}
@media (min-width: 451px) {
  .has-submenu:hover .submenu,
  .submenu:hover {
    display: block;
  }
}
@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }
}
/* THIN SEPARATION BETWEEN HEADER & HERO */
header {
  margin-bottom: 6px;
}

.hero {
  width: 100%; /* full width of screen */
  height: auto; /* adjusts height automatically */
  max-height: 90vh; /* optional: fit inside viewport height */
}
.hero img {
  width: 100%;
  height: auto;
  object-fit: cover; /* fills container while keeping aspect ratio */
}
/* Example: for devices smaller than 768px */
@media screen and (max-width: 768px) {
  .hero {
    padding: 20px; /* add space so content isn't cut */
    height: auto;
  }
  .hero h1 {
    font-size: 1.5rem; /* smaller headline */
  }
  .hero p {
    font-size: 1rem; /* smaller paragraph */
  }
}
.hero-content {
  display: flex;
  flex-direction: column; /* stack content on small screens */
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.hero {
  overflow: visible; /* ensure nothing is clipped */
}
@media screen and (max-width: 480px) {
  .hero .decorative-image {
    display: none;
  }
}
.service-hero-content h1,
.service-hero-content p {
  color: #ffffff; /* white text */
}
