/*
====================================================
Footer Styles - Awesome Soft Solutions
COMPLETE & FINAL VERSION - CLICKABLE ICONS FIXED
====================================================
*/

/* CSS Variables for Footer */
:root {
  --primary-orange: #ff6b35;
  --primary-teal: #008080;
  --teal-dark: #006666;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

/* Main footer styling */
.footer-site {
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-upper {
  padding: 50px 0 25px;
  position: relative;
  z-index: 1;
}

.footer-upper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern.png') repeat;
  opacity: 0.1;
  z-index: 0;
}

/* Footer widget titles */
.footer-site .footer-widget-title h3,
.footer-site .footer-widget-title h4 {
  color: var(--white);
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.footer-site .footer-widget-title h3::after,
.footer-site .footer-widget-title h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-orange, #ff6b35);
}

/* About widget */
.footer-site .footer-about-widget p {
  margin-bottom: 25px;
  color: var(--white);
}

/* ========================================
   SOCIAL ICONS - COMPLETE FIX (CLICKABLE)
   ======================================== */

/* Base container */
.footer-site .footer-about-widget .footer-social {
  margin: 20px auto 0;
  padding: 0;
  position: relative;
  z-index: 100;
}

.footer-site .footer-about-widget .footer-social,
.footer-site .footer-about-widget ul.footer-social {
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-site .footer-about-widget .footer-social ul li {
  display: flex !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Social link styling - FULLY VISIBLE & CLICKABLE */
.footer-site .footer-about-widget .footer-social ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  line-height: 42px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 100;
  text-decoration: none !important;
  flex-shrink: 0 !important;
}

/* Icon inside link - FORCE VISIBILITY (CLICKABLE) */
.footer-site .footer-about-widget .footer-social ul li a i,
.footer-site .footer-about-widget ul li a i {
  color: #ffffff !important;
  font-size: 18px !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  line-height: 1 !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  font-style: normal !important;
  transition: all 0.3s ease !important;
  pointer-events: auto !important; /* FIXED: Changed from none to auto */
  position: relative;
  z-index: 100;
}


.footer-site .footer-about-widget .footer-social li a:hover,
.footer-site .footer-about-widget ul.footer-social li a:hover {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: var(--dark-teal) !important;
}

.footer-site .footer-about-widget .footer-social li a:hover i,
.footer-site .footer-about-widget ul.footer-social li a:hover i {
  color: var(--dark-teal) !important;
}

/* Also remove active/focus states if desired */
.footer-site .footer-about-widget .footer-social ul li a:active,
.footer-site .footer-about-widget .footer-social ul li a:focus {
  outline: none !important;
  outline-offset: 0 !important;
}

/* Kill any global overrides - ENSURE CLICKABILITY */
.footer-about-widget .footer-social,
.footer-about-widget .footer-social *,
.footer-about-widget .footer-social a,
.footer-about-widget .footer-social li a,
.footer-about-widget .footer-social a i,
.footer-about-widget a i,
.footer-about-widget .footer-social a,
a[href*="facebook"],
a[href*="x.com"],
a[href*="tiktok"],
.footer-social a,
.footer-social a * {
  pointer-events: auto !important;
  user-select: auto !important;
  -webkit-user-select: auto !important;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation !important;
  cursor: pointer !important;
}

/* Specific icon fixes for Font Awesome 6 */
.footer-social .fa-facebook-f,
.footer-social .fa-x-twitter,
.footer-social .fa-tiktok,
.footer-social i {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  display: inline-block !important;
  font-style: normal !important;
  font-variant: normal !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Link widget */
.footer-site .footer-link-widget ul li {
  margin-bottom: 10px;
}

.footer-site .footer-link-widget ul li a {
  color: var(--white);
  display: block;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.footer-site .footer-link-widget ul li a:hover,
.footer-site .footer-link-widget ul li a:focus {
  color: #ff4500 !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  border-radius: 0 !important;
}

.footer-site .footer-link-widget ul li a:active {
  color: #ff4500 !important;
  font-weight: 600 !important;
  background: none !important;
  background-color: transparent !important;
  outline: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

/* Contact footer */
.footer-site .footer-contact p {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-site .footer-contact ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-site .footer-contact ol li {
  color: var(--white);
  margin-bottom: 18px;
  padding-left: 35px;
  position: relative;
  display: block;
  line-height: 1.6;
  font-size: 15px;
}

.footer-site .footer-contact ol li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #ffffff !important;
  font-size: 16px;
  width: 25px;
  height: auto;
  font-weight: 900;
  text-align: left;
}

.footer-site .footer-contact ol li .fas {
  color: #ffffff !important;
  font-size: 16px;
}

/* Force contact icon visibility */
.footer-site .footer-contact ol li .fa-envelope,
.footer-site .footer-contact ol li .fa-phone,
.footer-site .footer-contact ol li .fa-map-marker-alt {
  color: #ffffff !important;
  font-size: 16px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}

.footer-site .footer-contact ol li a {
  color: var(--white);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  vertical-align: middle;
}

.footer-site .footer-contact ol li a:hover {
  color: var(--primary-orange);
  transform: translateX(3px);
}

.footer-site .footer-contact ol li:first-child {
  word-break: break-word;
  white-space: normal;
}

/* Lower footer */
.footer-lower {
  background: rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  text-align: center;
}

.footer-lower .footer-copyright {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.5;
  padding: 0 15px;
}

.footer-lower .footer-copyright a {
  color: var(--primary-orange);
  text-decoration: none;
  transition: var(--transition);
}

.footer-lower .footer-copyright a:hover {
  color: #ff8c66;
  text-decoration: none !important;
}

/* Social links (alternative location) */
.footer-site .footer-social-links a {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
}

.footer-site .footer-social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE - TABLETS (991px)
   ======================================== */
@media (max-width: 991px) {
  .footer-upper {
    padding: 60px 0 20px;
  }
  
  .footer-site .footer-widget {
    margin-bottom: 40px;
  }
  
  .footer-site .footer-contact ol li {
    padding-left: 30px;
    margin-bottom: 15px;
  }
  
  .footer-site .footer-contact ol li i {
    top: 2px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (767px)
   ======================================== */
@media (max-width: 767px) {
  .footer-upper {
    padding: 40px 0 20px;
  }
  
  .footer-site .footer-widget {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-site .footer-widget-title h3,
  .footer-site .footer-widget-title h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .footer-site .footer-widget-title h3::after,
  .footer-site .footer-widget-title h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }
  
  .footer-site .footer-about-widget p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  
  /* Social icons responsive */
  .footer-site .footer-about-widget .footer-social ul {
    justify-content: center !important;
    gap: 12px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a {
    width: 44px !important;
    height: 44px !important;
    line-height: 44px !important;
    font-size: 18px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a i {
    font-size: 18px !important;
  }
  
  .footer-site .footer-link-widget ul {
    text-align: center;
    padding: 0;
  }
  
  .footer-site .footer-link-widget ul li {
    margin-bottom: 8px;
  }
  
  .footer-site .footer-link-widget ul li a {
    font-size: 16px;
    padding-left: 0;
  }
  
  .footer-site .footer-contact p {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  
  .footer-site .footer-contact ol {
    text-align: center;
    padding: 0;
  }
  
  .footer-site .footer-contact ol li {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto 15px;
    padding-left: 0;
    font-size: 16px;
  }
  
  .footer-site .footer-contact ol li i {
    position: relative;
    left: auto;
    top: auto;
    margin-right: 8px;
    font-size: 16px;
  }
  
  .footer-lower {
    padding: 15px 0;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (576px)
   ======================================== */
@media (max-width: 576px) {
  .footer-upper {
    padding: 30px 0 15px;
  }
  
  .footer-site .footer-widget {
    margin-bottom: 25px;
  }
  
  .footer-site .footer-widget-title h3,
  .footer-site .footer-widget-title h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .footer-site .footer-widget-title h3::after,
  .footer-site .footer-widget-title h4::after {
    width: 35px;
  }
  
  .footer-site .footer-about-widget p {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .footer-site .footer-about-widget .footer-social ul {
    gap: 10px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a {
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    font-size: 17px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a i {
    font-size: 17px !important;
  }
  
  .footer-site .footer-link-widget ul li a {
    font-size: 15px;
  }
  
  .footer-site .footer-contact p {
    font-size: 15px;
    padding: 0 15px;
  }
  
  .footer-site .footer-contact ol li {
    max-width: 280px;
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  .footer-site .footer-contact ol li i {
    font-size: 15px;
    margin-right: 6px;
  }
  
  .footer-lower {
    padding: 12px 0;
  }
  
  .footer-lower .footer-copyright {
    font-size: 13px;
    line-height: 1.4;
    padding: 0 20px;
  }
}

/* ========================================
   RESPONSIVE - EXTRA SMALL (480px)
   ======================================== */
@media (max-width: 480px) {
  .footer-upper {
    padding: 25px 0 10px;
  }
  
  .footer-site .footer-widget {
    margin-bottom: 20px;
  }
  
  .footer-site .footer-widget-title h3,
  .footer-site .footer-widget-title h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }
  
  .footer-site .footer-widget-title h3::after,
  .footer-site .footer-widget-title h4::after {
    width: 30px;
    height: 2px;
  }
  
  .footer-site .footer-about-widget p {
    font-size: 12px;
    line-height: 1.5;
    padding: 0 20px;
  }
  
  .footer-site .footer-about-widget .footer-social ul {
    gap: 8px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    font-size: 16px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a i {
    font-size: 16px !important;
  }
  
  .footer-site .footer-link-widget ul li a {
    font-size: 12px;
  }
  
  .footer-site .footer-contact p {
    font-size: 12px;
    padding: 0 20px;
  }
  
  .footer-site .footer-contact ol li {
    max-width: 260px;
    margin-bottom: 10px;
    font-size: 12px;
    flex-wrap: wrap;
  }
  
  .footer-site .footer-contact ol li i {
    font-size: 12px;
    margin-right: 5px;
  }
  
  .footer-lower {
    padding: 10px 0;
  }
  
  .footer-lower .footer-copyright {
    font-size: 12px;
    word-wrap: break-word;
    hyphens: auto;
  }
}

/* ========================================
   RESPONSIVE - VERY SMALL (360px)
   ======================================== */
@media (max-width: 360px) {
  .footer-site .footer-about-widget p,
  .footer-site .footer-contact p {
    padding: 0 15px;
  }
  
  .footer-site .footer-contact ol li {
    max-width: 240px;
    font-size: 11px;
  }
  
  .footer-site .footer-contact ol li i {
    font-size: 11px;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a {
    width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    font-size: 15px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a i {
    font-size: 15px !important;
  }
}

/* Mobile centering for social icons - Override all responsive rules */
@media (max-width: 768px) {
  .footer-site .footer-about-widget .footer-social {
    overflow: visible !important;
    margin: 25px 0 !important;
    padding: 15px !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul {
    justify-content: center !important;
    gap: 15px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li {
    margin: 0 !important;
    flex-shrink: 0 !important;
  }
  
  .footer-site .footer-about-widget .footer-social ul li a {
    min-width: 44px !important;
    min-height: 44px !important;
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    overflow: visible !important;
    margin: 0 !important;
  }
  
  .footer-site .footer-about-widget {
    overflow: visible !important;
    padding: 0 15px !important;
  }
}
/* Styling for the Logo Image within the Footer */
.footer-site .footer-about-widget .logo img {
    max-width: 150px; /* Example size: Adjust as needed */
    height: auto;
    display: block;
    margin: 0;
}