:root {
  --honda-red: #ed1c24;
  --dark-grey: #333;
  --light-bg: #f4f4f4;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.navbar-nav .nav-link {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding-bottom: 0.7rem;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 50%;
  background-color: var(--honda-red);
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover {
  color: var(--honda-red);
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: #ed1c24;
}
.navbar-nav .nav-link.active::before {
  width: 100%;
}

.navbar-nav .nav-link.active {
  color: #ed1c24;
  font-weight: 700;
}

.navbar-nav .nav-link.active::before {
  width: 100%;
}

.dropdown-item:hover {
  background-color: var(--honda-red);
  color: white;
}

.section-padding {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  color: var(--dark-grey);
  text-transform: uppercase;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--honda-red);
  margin: 15px auto;
}

/* --- SERVICES CARD --- */
.service-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--honda-red);
}

.service-icon {
  width: 50px;
}

.service-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  margin-top: 1rem;
}

.service-desc {
  color: #666;
  font-size: 1rem;
}

.news-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}

.news-body {
  padding: 1.5rem;
}

.news-date {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
  display: block;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.news-link {
  color: var(--honda-red);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.news-link:hover {
  text-decoration: underline;
}

/* Contact Info */
.contact-info-section {
  background-color: var(--honda-red);
  color: white;
  padding: 3rem 0;
  position: relative;
}

.contact-box {
  height: 100%;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  background-color: white;
  color: var(--honda-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  font-size: 1.8rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.contact-box:hover .contact-icon-circle {
  transform: scale(1.1);
}

.contact-title {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: white;
}

.contact-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-text strong {
  color: white;
  font-weight: 700;
}

.contact-text a {
  color: #ffd700;
  text-decoration: underline;
}

.contact-text a:hover {
  color: white;
  text-decoration: none;
}

/* --- Footer --- */
footer {
  background-color: #1a1a1a;
  color: #ccc;
  padding-top: 3rem;
}

footer h5 {
  color: white;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

footer a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--honda-red);
}
