/* Footer Theme Colors */
:root {
    --primary-color: #187d00;   /* main brand green */
    --primary-dark: #145f00;    /* darker shade */
    --primary-light: #32c200;   /* lighter/brighter shade */
}

/* Footer Base */
.footer-custom {
    background: #212529; /* remain dark footer bg */
    color: #adb5bd;
}

.footer-custom h5 {
    color: #fff;
    font-weight: 600;
}

.footer-custom a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-custom a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

/* Car Logo Shape */
.logo-car-shape {
  background: white;
  /* subtle green gradient matching theme, blended into dark footer */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 120px;
  position: relative;
  color: #fff;

  border-radius: 40% 40% 15% 15% / 60% 60% 10% 10%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* wheels */
.logo-car-shape::before,
.logo-car-shape::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 22px;
  height: 22px;
  background: #187d00; /* slightly lighter than footer bg */
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}

.logo-car-shape::before {
  left: 18px;
}
.logo-car-shape::after {
  right: 18px;
}

/* Social Icons */
.social-icon {
    width: 45px;
    height: 45px;
    background: #343a40;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icon:hover {
    background: var(--primary-color); /* brand green */
    color: #fff;
    transform: scale(1.1);
}
