/* #region Footer START */
footer {
  background-color: #f3f3f3;
  color: #111;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

/* ==== FOOTER TOP ==== */
.footer-top {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  animation: fadeIn 1s ease-in;
}

.footer-top h2,
.footer-top h4 {
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.footer-top p {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.btn-request-consultation {
  background-color: var(--primary-color, #c42728);
  color: #fff;
  border: none;
  padding: 0.8rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.25s ease-in-out;
}

.btn-request-consultation:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  background-color: #a81415;
}

/* ==== FOOTER MAIN ==== */
.footer-main {
  background-color: #efefef;
  color: #111;
  font-size: 14px;
  animation: fadeIn 1.5s ease-in;
}

.footer-main h5 {
  font-size: 1.1rem;
  color: #030303;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-main ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-main ul li {
  margin-bottom: 6px;
}

.footer-main ul li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-main ul li a:hover {
  color: var(--primary-color, #c42728);
}

/* ==== LEFT SECTION ==== */
.footer-logo-contact {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo img {
  max-width: 230px;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #c42728;
  font-size: 1.1rem;
}

.footer-contact a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #c42728;
  text-decoration: underline;
}

/* ==== SOCIAL ICONS ==== */
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-social a {
  font-size: 22px;
  color: #c42728;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #111;
}

/* ==== NEWSLETTER ==== */
footer-newsletter { border-radius: 12px; border: 1px solid #eee; padding: 1rem; /* background-color: #fff; */ transition: all 0.3s ease; } .footer-newsletter label { font-weight: 600; color: #222; font-size: 0.95rem; margin-bottom: 0.6rem; display: block; } .footer-newsletter .form-select { border: 1px solid #ccc; border-radius: 8px; padding: 0.7rem; font-size: 0.95rem; transition: border-color 0.3s ease, box-shadow 0.3s ease; background-color: #fff; } .footer-newsletter .form-select:focus { border-color: #c42728; box-shadow: 0 0 0 0.15rem rgba(196, 39, 40, 0.25); } .footer-newsletter .input-group { align-items: stretch; gap: 0.5rem; flex-wrap: wrap; } .footer-newsletter .input-group input { border: 1px solid #ccc; border-radius: 8px 0 0 8px; padding: 0.7rem; font-size: 0.95rem; background-color: #fff; } .footer-newsletter .input-group input:focus { border-color: #c42728; box-shadow: 0 0 0 0.15rem rgba(196, 39, 40, 0.25); } .footer-newsletter .btn-danger { background-color: #c42728; border: none; border-radius: 0 8px 8px 0; padding: 0.7rem 1.4rem; transition: all 0.3s ease; } .footer-newsletter .btn-danger:hover { background-color: #a81f1f; transform: translateY(-2px); }

/* ==== AWARDS ==== */
.footer-awards h5 {
  color: #000;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-awards h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c42728;
  margin-top: 6px;
  border-radius: 2px;
}

.awards-floating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.award-tile {
  border-radius: 12px;
  padding: 8px;
  width: 120px;
  transition: transform 0.3s ease;
}

.award-tile:hover {
  transform: translateY(-6px);
}

.award-tile img {
  width: 100%;
  height: 110px;
  border-radius: 8px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.25);
}

/* ==== FOOTER BOTTOM ==== */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #333;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: 
    url("../images/footer-last-bg.jpg") repeat top left,
    linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.95) 100%);
  backdrop-filter: blur(4px);
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.04);
  animation: fadeUpFooter 0.8s ease forwards 0.4s;
  opacity: 0;
  transform: translateY(10px);
}

.footer-bottom p {
  margin: 0;
  color: #333;
  text-shadow: 0 1px 1px rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: #b71c1c;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-bottom a:hover {
  color: #8e1616;
  text-decoration: underline;
}

/* ==== FLOATING BUTTONS ==== */
.quick-form-btn {
  position: fixed;
  top: 45%;
  right: 0;
  writing-mode: sideways-lr;
  background-color: #b71c1c;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateX(100%);
}

.quick-form-btn.floating-visible {
  opacity: 1;
  transform: translateX(0);
}

.quick-form-btn:hover {
  background-color: #a31414;
}

.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.3s ease;
}

.whatsapp-btn.floating-visible {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-btn img {
  width: 30px;
  height: 30px;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .footer-logo-contact {
    padding: 2rem 1rem;
  }
  .footer-main .row > div {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .footer-top h2,
  .footer-top h4 {
    font-size: 1.75rem;
  }
  .footer-top p {
    font-size: 1rem;
  }
  .award-tile {
    width: 45%;
  }
}

/* ==== ANIMATIONS ==== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* #endregion Footer END */
