:root{
  /* replace these values with your real ones */
  --header-color: #1f2937; /* $header-color */
  --white: #ffffff;        /* $white */
  --theme-color: #5a67d8;  /* $theme-color */
  --transition-duration: 0.3s;
}

/* Common breakpoints (adjust if needed) */
@media (max-width: 1400px) { /* max-xxl */ }
@media (max-width: 1200px) { /* max-xl */ }
@media (max-width: 992px)  { /* max-lg  */ }
@media (max-width: 768px)  { /* max-md  */ }
@media (max-width: 576px)  { /* max-sm  */ }

/* --------- Footer Section --------- */
.footer-section {
  position: relative;
  /*z-index: 9;*/
}

/* emulate @include before; */
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  z-index: -1;
  background-color: var(--header-color);
  opacity: 0.95;
  pointer-events: none;
  transition: background-color var(--transition-duration) ease;
}

/* style-radius variant */
.footer-section.style-radius {
  border-radius: 30px;
  margin: 0 30px;
}

@media (max-width: 1200px) {
  .footer-section.style-radius {
    margin: 0;
    border-radius: 0;
  }
  .footer-section.style-radius::before {
    border-radius: 0;
  }
}

.footer-section.style-radius::before {
  border-radius: 30px;
}

/* --------- Contact info area --------- */
/* emulate @include flex => display:flex; align-items:center; */
.contact-info-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  padding: 20px 0 10px;
  gap: 0;
}

@media (max-width: 1400px) {
  .contact-info-area {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: initial;
  }
}

@media (max-width: 576px) {
  .contact-info-area {
    gap: 30px;
  }
}

.contact-info-area .logo-img img {
  filter: brightness(0) invert(1);
}

/* logo */
/*.contact-info-area .logo-img {
  width: 200px;
  height: 100px;
  border-radius: 100px;
  line-height: 90px;
  background-color: var(--white);
  text-align: center;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}*/

/* contact info items */
.contact-info-area .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
  flex: 1 1 auto;
}

@media (max-width: 1200px) {
  .contact-info-area .contact-info-items {
    flex-wrap: wrap;
  }
}

/* icon round */
.contact-info-area .contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: #7ed958;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* content */
.contact-info-area .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}

.contact-info-area .contact-info-items .content h3 {
  font-size: 18px;
  color: white;
  text-transform: none;
  margin: 0;
}

.contact-info-area .contact-info-items .content h3 a {
  color: var(--white);
  text-decoration: none;
}

/* --------- Footer widgets wrapper --------- */
.footer-widgets-wrapper {
  padding: 0px 0 15px;
  position: relative;
  z-index: 9;
}

.single-footer-widget {
  margin-top: 30px;
}

/* widget head */
.single-footer-widget .widget-head {
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}

.single-footer-widget .widget-head h5 {
  font-weight: 700;
  color: var(--white);
  font-size: 18px;
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}

/* underline accents */
.single-footer-widget .widget-head h5::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 2px;
  background-color: #7ed958;
}

.single-footer-widget .widget-head h5::after {
  position: absolute;
  bottom: 0;
  left: 40px;
  content: "";
  width: 55px;
  height: 2px;
  background-color: var(--white);
}

@media (max-width: 768px) {
  .single-footer-widget .widget-head h5 {
    font-size: 23px;
  }
}

@media (max-width: 576px) {
  .single-footer-widget .widget-head h5 {
    font-size: 20px;
  }
}

/* footer content text */
.single-footer-widget .footer-content p {
  color: white;
  margin: 0;
}

/* social icons */
.single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 9;
}

@media (max-width: 576px) {
  .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}

.single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease-in-out;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  text-decoration: none;
}

.single-footer-widget .footer-content .social-icon a:hover {
  background-color: white;
  color: #7ed958;
  border-color: transparent;
}

/* list area */
.single-footer-widget .list-area li {
  transition: margin-left var(--transition-duration) ease, color var(--transition-duration) ease;
  list-style: none;
  margin: 0 0 20px 0;
}

.single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 10px;
}

.single-footer-widget .list-area li a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.single-footer-widget .list-area li a i {
  margin-right: 5px;
}

.single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

.single-footer-widget .list-area li:hover a {
  color: #7ed958;
}

/* footer gallery */
.single-footer-widget .footer-gallery .gallery-wrap .gallery-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.single-footer-widget .footer-gallery .gallery-wrap .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}

.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
  position: relative;
  display: inline-block;
}

@media (max-width: 576px) {
  .single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb {
    width: 100px;
  }
}

/* emulate @include imgw; */
.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* icon overlay inside thumb */
.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 91, 31, 0.7); /* corrected RGBA */
  transition: opacity 0.4s ease;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb .icon i {
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 0;
}

/* hover on thumb */
.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon {
  opacity: 1;
}

.single-footer-widget .footer-gallery .gallery-wrap .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}

/* --------- Footer bottom --------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  padding: 15px 0;
}

.footer-bottom p {
  text-align: center;
  color: white;
  margin: 0;
}

.footer-bottom p a:hover {
  color: #7ed958;
}

.footer-bottom p a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* small utility: consistent transition used in SCSS */
* {
  box-sizing: border-box;
}
.logo-img img {
  filter: brightness(0) invert(1);
}
.contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  position: relative;
  flex: 1 1 auto;
}
@media (max-width: 1200px) {
  .contact-info-items {
    flex-wrap: wrap;
  }
}
.contact-info-items .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
  background-color: var(--white);
  border-radius: 50%;
  color: #7ed958;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
}
.contact-info-items .content h3 {
  font-size: 18px;
  color: white;
  text-transform: none;
  margin: 0;
}
.contact-info-items .content h3 a {
  color: var(--white);
  text-decoration: none;
}
.spl-juscon-start {
  justify-content: start !important;
}
.spl-paddtop15 {
  padding-top: 15px !important;
}
@media (max-width: 991px) {
  .contact-info-area .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: start;
    position: relative;
    flex: 1 1 auto;
  }
      .contact-info-area {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }
    .single-footer-widget .footer-content .social-icon {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 9;
  }
  .single-footer-widget {
    margin-top: 15px;
  }
}