* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f4f4f4;
  color: #222;
}

/* Header */
.header {
  background: #111;
  padding: 15px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #e10600;
}

.nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

.nav a:hover {
  color: #e10600;
}

/* Hero */
.hero {
  background: #fff;
  padding: 90px 0;
  text-align: center;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 12px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 20px;
}

.payments {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

/* Buttons */
.btn,
.btn-outline {
  background: #e10600;
  color: #fff;
  padding: 12px 0;          /* equal height */
  min-width: 160px;        /* equal width */
  border: none;
  text-decoration: none;
  cursor: pointer;
  margin: 5px;
  display: inline-block;
  text-align: center;
  font-size: 15px;
}

.btn-outline {
  background: transparent;
  color: #e10600;
  border: 2px solid #e10600;
}
.buttons {
  display: flex;
  justify-content: center;   /* ✅ center buttons */
  gap: 16px;
  flex-wrap: wrap;
}


/* Forms */
.form-section {
  padding: 70px 0;
}

.form-section h2 {
  margin-bottom: 20px;
}

form {
  background: #fff;
  padding: 30px;
  max-width: 700px;
  margin: auto;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

form textarea {
  height: 120px;
}

/* Contact */
.contact-section {
  padding: 70px 0;
}

.contact-section p {
  font-size: 16px;
  margin-top: 10px;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}
/* HERO BACKGROUND */
.hero-bg {
  position: relative;
  height: 85vh;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(1px);
}


.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}

/* Heading gap */
.services h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

/* Extra text under heading */
.services-subtext {
  font-size: 16px;
  color: #666;
  max-width: 650px;
  margin: 0 auto 60px; /* 🔥 gap before cards */
}

/* Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px; /* 🔥 equal gap between blocks */
}

/* Cards */
.service-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  min-height: 320px;            /* ✅ SAME HEIGHT */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Icons */
.service-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

/* Titles */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* Text */
.service-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

/* Badge */
.badge {
  font-size: 12px;
  color: #e10600;
  margin-bottom: 15px;
  display: block;
  font-weight: bold;
}

/* Links */
.service-card a {
  color: #e10600;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}

/* CTA BELOW SERVICES */
.services-cta {
  margin-top: 80px;
  text-align: center; /* ✅ center text & button */
}

.services-cta h3 {
  font-size: 24px;
  margin-bottom: 20px;
}


.hero-text {
  animation: fadeUp 0.8s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn:hover {
  background: #b80500;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #e10600;
  color: #fff;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .nav {
    display: none;
  }

  .hero-bg {
    height: 70vh;
  }

  .services h2 {
    font-size: 26px;
  }
}
/* ===== SPLIT HERO WITH CAR IMAGE ===== */

.hero-split-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  z-index: 2;
}

.hero-text {
  color: #fff;
  margin-top: -30px;        /* keep your upward move */
  text-align: center;      /* ✅ center all text horizontally */

  display: flex;           /* ✅ vertical centering setup */
  flex-direction: column;
  align-items: center;     /* ✅ center items horizontally */
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  max-width: 520px;
  text-align: center;      /* ensure paragraph is centered */
}

.hero-car img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

/* Override center alignment from old hero */
.hero-content {
  display: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-split-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-car img {
    margin: 30px auto 0;
    max-width: 340px;
  }

  .hero-text h1 {
    font-size: 30px;
  }
}
/* ===== HERO LAYER FIX ===== */

.hero-bg {
  position: relative;
  overflow: visible;   /* ✅ allow car to come out */
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;   /* background */
}

/* text layer */
.hero-split-content {
  position: relative;
  z-index: 2;
  align-items: flex-start;
  padding-top: 120px;
}

/* ===== CAR ON FRONT ===== */

.hero-car {
  position: relative;
  z-index: 10; /* car always on top */
}

.hero-car img {
  position: absolute;
  bottom: -390px;   /* 🔥 car comes OUT of hero */
  right: 0;
  max-width: 520px;
  width: 100%;
  filter: drop-shadow(0 40px 50px rgba(0,0,0,0.9));
}

/* ===== MECHANICAL PAGE LAYOUT FIX ===== */

.mechanical-section {
  padding: 90px 0;
  background: #f6f6f6;
}

/* ===== PAGE HERO HEADING (CENTERED + GRADIENT) ===== */
.page-hero {
  position: relative;
  padding: 90px 0;
  text-align: center;
  background: linear-gradient(
  135deg,
  #000000 0%,
  #2b0000 30%,
  #7a0000 45%,
  #1a0000 75%,
  #000000 100%
);


}

.page-hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.page-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 17px;
  opacity: 0.9;
}

/* ===== GRID ===== */
.mechanical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
  margin-top: 60px;
}

/* ===== LEFT & RIGHT BOX SAME HEIGHT ===== */
.mechanical-info,
.mechanical-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* ===== LEFT INFO ===== */
.mechanical-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.info-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* ===== FEATURE LIST ===== */
.info-points {
  display: grid;
  gap: 12px;
  margin-bottom: 25px;
}

.info-points div {
  background: #f9f9f9;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 14px;
}

/* ===== TRUST BOX ===== */
.trust-box {
  margin-top: auto;
  border-left: 4px solid #e10600;
  padding: 15px 20px;
  background: #fff5f5;
  border-radius: 6px;
}

/* ===== FORM ===== */
.mechanical-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* === ICONS INSIDE INPUTS === */
.mechanical-form input,
.mechanical-form textarea {
  padding-left: 42px;
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 18px;
}

.mechanical-form input:nth-of-type(1) {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23aaa' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 12c2.7 0 5-2.3 5-5s-2.3-5-5-5-5 2.3-5 5 2.3 5 5 5zm0 2c-3.3 0-10 1.7-10 5v3h20v-3c0-3.3-6.7-5-10-5z'/></svg>");
}

.mechanical-form input:nth-of-type(2) {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23aaa' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 16c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2v-6h-14v6zm14-9h-3l-1-2h-6l-1 2h-3c-1.1 0-2 .9-2 2v1h18v-1c0-1.1-.9-2-2-2z'/></svg>");
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
  display: none;
  margin-top: 20px;
  padding: 15px;
  background: #e6fff1;
  border-left: 4px solid #00c46a;
  color: #0a7a45;
  border-radius: 6px;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CENTERED CTA (BOTTOM) ===== */
.cta-strip {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-strip p {
  font-size: 18px;
  margin-bottom: 15px;
}

.cta-strip .btn {
  padding: 14px 30px;
  font-size: 15px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .mechanical-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content h1 {
    font-size: 30px;
  }
}
/* ===== CONTACT PAGE ===== */

/* ===== HERO ===== */
.contact-hero {
  background: linear-gradient(
    135deg,
    #000000 0%,
    #2b0000 28%,
    #9a0000 45%,
    #2b0000 70%,
    #000000 100%
  );
  padding: 90px 0;
}

/* ===== GRID ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch; /* 🔥 equal height */
}

/* ===== LEFT INFO BOX ===== */
.contact-info {
  background: #ffffff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* STATUS BADGE */
.status-badge {
  display: inline-block;
  background: #e10600;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
}

/* HEADINGS */
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* CONTACT CARDS */
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9f9f9;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card .icon {
  font-size: 20px;
}

.contact-card a {
  color: #e10600;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* TRUST BOX */
.contact-trust {
  margin-top: auto;
  border-left: 4px solid #e10600;
  padding: 18px 22px;
  background: #fff5f5;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== RIGHT CTA BOX (CLEAN & BALANCED) ===== */
.contact-cta {
  background: #ffffff;
  color: #111;
  padding: 55px 50px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center; /* 🔥 vertical centering */
  align-items: center;
  text-align: center;
  border-left: 5px solid #e10600; /* brand accent */
}

/* REMOVE glow */
.contact-cta::after {
  display: none;
}

.contact-cta h3 {
  font-size: 26px;
  margin-bottom: 14px;
  font-weight: 700;
}

.contact-cta p {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 380px;
}

/* CTA BUTTON */
.contact-cta .btn {
  font-size: 15px;
  padding: 14px 38px;
  border-radius: 6px;
  background: #e10600;
  color: #fff;
  box-shadow: 0 12px 25px rgba(225,6,0,0.45);
  transition: all 0.3s ease;
}

.contact-cta .btn:hover {
  transform: translateY(-2px);
  background: #ff1a1a;
  box-shadow: 0 18px 35px rgba(255,26,26,0.55);
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info,
  .contact-cta {
    padding: 40px 30px;
  }
}
/* ===== MAP SECTION ===== */
.map-section {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}

.map-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.map-sub {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
}

.map-box {
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.form-label {
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 5px;
  display: block;
  color: #555;
}
