/* ========================== FOOTER STYLE ==================== */

.footer {
  background-color: #F5F9FE;
  padding-top: 0;
  position: relative;
  z-index: 1;
}

/* Appointment Section */
.appointment-section {
  padding: 54px 0;
}

.footer .sec-sm-title {
  text-align: center;

  margin-bottom: 22px;
}

.appointment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 40px;
  background-color: var(--color-common-white);
  border-radius: 22px;
  border: 1px solid rgb(0, 0, 0, .04);
}

.appointment-item {
  flex: 1 1 calc(33.333% - 16px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}


.appointment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: var(--blue-color);
  border-radius: 16px;
  flex-shrink: 0;
}

.appointment-icon i {
  font-size: 34px;
  color: var(--color-common-white);
}

.appointment-content {
  display: flex;
  flex-direction: column;
}

.appointment-content .label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 0px;
}

.appointment-content .contact-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: block;
  letter-spacing: .07em;
}

.appointment-content .contact-number:hover {
  color: var(--blue-color);
}

/* Main Footer */
.main-footer {
  padding: 0px 0 60px;
}

.footer-brand-column,
.contact-info-column,
.footer-links {
  max-width: 386px;
  width: 100%;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  margin-bottom: 34px;
}

.footer-logo img {
  max-width: 160px;
  height: auto;
}

.footer-description {
  margin-bottom: 34px;
}

.footer-socials {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-socials a {
  line-height: 0;
  font-size: 25px;
  color: var(--heading-color);
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 35px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: var(--text-color);
}

.footer-links a:hover {
  color: var(--blue-color);
  padding-left: 3px;
}

.link-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge {
  display: inline-block;
  background-color: var(--blue-color);
  color: var(--color-common-white);
  padding: 5px 8px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 400;
  margin-left: 10px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
}

.contact-item-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

.contact-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  opacity: .8;
  line-height: 1;
}

.contact-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.6;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.contact-value:hover {
  color: var(--blue-color);
}

.timing {
  padding: 12px 20px;
  border-radius: 16px;
  border: 1px solid rgb(0, 0, 0, .1);
}

.timing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.timing-item:not(:last-child) {
  margin-bottom: 2px;
}

.timing-day {
  font-size: 16px;
  color: var(--heading-color);
  line-height: 1;
  font-weight: 600;
}

.timing-time {
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  color: var(--heading-color);
  opacity: 0.8;
}

/* Bottom Footer */
.bottom-footer .container {
  background-color: var(--color-common-white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgb(0, 0, 0, .04);


}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 14px;
  color: var(--text-color);
  margin: 0;
}

.footer-links-bottom a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  color: var(--text-color);
  text-transform: capitalize;

}

.footer-links-bottom a:hover {
  color: var(--blue-color);
  text-decoration: underline;
}

.footer-links-bottom a:not(:last-child) {
  margin-right: 26px;
}

.footer-links-bottom a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 100%;
  transform: rotate(10deg);
  background-color: rgb(89, 97, 107, .4);
  left: -15px;
}

.footer-links-bottom a:first-child:before {
  display: none;
}

.footer-links {
  display: flex;
  gap: 20px;
  position: relative;
  height: 100%;
  justify-content: space-between;
}

.footer-links::before,
.footer-links::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.1)
}

.footer-links::after {
  right: -29px;
}

.footer-links::before {
  left: -29px;
}

.footer-links .footer-column {
  width: 50%;

}

.footer-links a:hover {
  color: var(--blue-color);
}


/* Footer Quote */
.footer-quote {
  padding: 30px 0;
  text-align: center;
}


.quote-text {
  position: relative;
  font-size: 22px;
  color: var(--heading-color);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  order: 2;
  display: inline-block;
  letter-spacing: -0.02em;
  text-align: center;
}

.quote-text::before,
.quote-text::after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background-image: url(../img/icons/quote.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 5px;
  left: -25px;
}

.quote-text::after {
  transform: scaleX(-1);
  right: -20px;
  left: inherit;
}


.icon_skype {
  mask-image: url(../img/icons/skype.svg);
}

.icon_phone {
  mask-image: url(../img/icons/telephone.svg);
}

.icon_mobile {
  mask-image: url(../img/icons/smart-phone.svg);
}

.icon_whatsapp {
  mask-image: url(../img/icons/whatsapp_foot.svg);
}

.tr-icon {
  mask-image: url(../img/icons/tr-icon.svg);
  transform: scale(.6);
}