/* Footer Hero Section */
.footer-hero {
  position: relative;
  width: 100%;
  height: 240px;
  margin: 0 auto;
}

.footer-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  height: 100%;
  background: #c6a958;
  overflow: hidden;
  padding: 0 20px;
  position: relative;
  transition: background 0.5s ease-in-out;
  z-index: 0;
}
/* .footer-titles {
  padding-left: 5%;
} */
h4.footer-h4 {
  color: #fff;
  font-family: Lato;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  line-height: 26.41px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin-bottom: 20px;
}
h3.footer-h3 {
  color: #fff;
  font-family: Lato;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.contact-item a {
  text-decoration: none;
  font-size: 20px;
  color: #4f301c;
}
/* Contact Link */
.contact-link {
  position: relative;
  width: 222px;
  height: 49px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 15.6px;
}

.contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: left 0.3s ease-in-out;
  z-index: 1;
}

.contact-link:hover::before {
  left: 0;
}

.contact-link span {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
}

.contact-link:hover span {
  color: #000000;
}

.contact-icon {
  position: relative;
  z-index: 2;
}

.contact-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.5s ease-in-out;
}

/* Logo and Social Icons */
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background-color: #ccb16c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.social-icon img {
  width: 20px;
  height: 20px;
  transition: fill 0.3s ease;
  fill: #4f301c;
}

.social-icon:hover {
  background-color: #4f301c;
}

.social-icon:hover img {
  filter: brightness(0) saturate(100%) invert(1);
}

/* Footer Content */
footer {
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-line {
  width: 100%;
  height: 2px;
  background-color: #ccb16c;
  margin-top: 50px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 2rem;
  color: #4f301c;
}

.footer-content .quick-links ul {
  list-style: none;
}
.quick-links ul li {
  padding-top: 10px;
}
.footer-content .quick-links ul li a {
  position: relative;
  color: #4f301c;
  text-decoration: none;
  font-family: Lato;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  text-align: left;
  transition: color 0.7s ease;
  text-transform: uppercase;
}

.footer-content .quick-links ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ccb16c;
  transition: width 0.3s ease;
}
.contact-item a span {
  transition: all 0.3s ease;
}
.footer-content .quick-links ul li a:hover,
.contact-item a:hover span {
  color: #ccb16c;
}

.footer-content .quick-links ul li a:hover::after {
  width: 100%;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family: Lato, sans-serif;
  max-width: 30%;
}

.contact-item {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.contact-item:last-of-type {
  align-items: flex-start;
}
footer .contact-text {
  display: block;
  font-size: 20px;
  color: #4f301c;
  text-align: left;
}
/* img.contact-icon {
  margin-left: -5px;
} */
.contact-icon {
  width: 32px;
  height: 32px;
  /* margin-left: 10px; */
  transition: transform 0.3s ease;
  background-color: #ccb16c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.contact-icon img {
  width: 32px;
  height: 20px;
}

.footer-bottom {
  display: flex; /* Use flexbox for alignment */
  justify-content: space-between; /* Space between left and right */
  align-items: center; /* Center items vertically */
  background-color: #000; /* Black background */
  color: #fff; /* White text color */
  padding: 32px; /* Padding for spacing */
  position: relative; /* To position the SVG background */
  overflow: hidden; /* Hide overflow if any */
  border-top: 2px solid #ccb16c;
}
@media (min-width: 769px) {
  .footer-bottom {
    padding-left: 5vw;
  }
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../common/footerbg.svg");
  background-size: cover;
  background-position: right;
}

.footer-left,
.footer-right {
  position: relative; /* Keep the text above the background */
}

.footer-right {
  display: none;
  /* display: flex;  */
  gap: 20px; /* Spacing between links */
}

.footer-link {
  color: #fff; /* White link color */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease; /* Smooth color transition */
}

.footer-link:hover {
  color: #ccb16c; /* Change link color on hover */
}

.footer-content {
  position: relative;
}
.footer-content:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  bottom: 0;
  background-image: url(../common/footerafter.svg);
  background-size: cover;
  background-position: left;
  z-index: -1;
  opacity: 1;
}
a.larsa,
.footer-left {
  text-decoration: none;
  color: #b5a085;
}
a.larsa:hover {
  color: #ccb16c;
}
.logo img {
  width: 250px;
  height: auto;
}
.contact-img {
  width: 27px;
  height: 27px;
  padding: 5px 0 5px 2px;
  z-index: 9;
  transition: transform 0.3s ease;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.contact-imgy {
  width: 27px;
  height: 27px;
  padding: 5px 0 5px 2px;
  z-index: 9;
  transition: transform 0.3s ease;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
