/* Site Footer Styles */
.site-footer {
  background-color: #010101;
  color: #fff;
  font-size: 0.9375rem;
  position: relative;
  overflow: hidden;
}


/* Main Footer Content */
.site-footer__main {
  padding: 4rem 0 3rem;
  position: relative;
  z-index: 1;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Column Styles */
.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.site-footer__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
  position: relative;
  padding-bottom: 0.75rem;
}

.site-footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
  width: 3rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.site-footer__text {
  line-height: 1.6;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Logo Styles */
.site-footer__logo {
  margin-bottom: 1.5rem;
}

.site-footer__logo-img {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.site-footer__logo-img:hover {
  opacity: 1;
}

.site-footer__logo .custom-logo-link {
  display: inline-block;
  line-height: 0;
}

.site-footer__logo .custom-logo {
  height: 3rem;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.site-footer__logo .custom-logo:hover {
  opacity: 1;
}

.site-footer__logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

/* Social Media Section */
.site-footer__social-main {
  margin-top: 1rem;
}

.site-footer__subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.site-footer__social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.site-footer__social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.site-footer__social-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.site-footer__social-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: #fff;
}

.site-footer__social-name {
  font-size: 0.75rem;
  text-transform: capitalize;
  opacity: 0.8;
}

/* Quick Links */
.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* WordPress Menu */
.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__menu li {
  margin: 0;
}

.site-footer__menu a,
.site-footer__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.site-footer__menu a span,
.site-footer__link span {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.site-footer__menu a:hover,
.site-footer__link:hover {
  color: #fff;
  padding-right: 0.75rem;
}

.site-footer__menu a:hover span,
.site-footer__link:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Cards */
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.site-footer__contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-5px);
}

.site-footer__contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  flex-shrink: 0;
}

.site-footer__contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #fff;
}

.site-footer__contact-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.25rem;
}

.site-footer__contact-value {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.site-footer__contact-value:hover {
  opacity: 0.8;
}

.site-footer__hours {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Awards Section */
.site-footer__awards-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__awards-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2rem;
  position: relative;
  display: inline-block;
}

.site-footer__awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer__award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.site-footer__award-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

.site-footer__award-item img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%) brightness(2);
  transition: all 0.3s ease;
}

.site-footer__award-item:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
}

.site-footer__award-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Bottom Bar */
.site-footer__bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.site-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__copyright,
.site-footer__credits {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__credits a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.2em;
  transition: all 0.3s ease;
}

.site-footer__credits a:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

/* RTL Support */
html[dir="rtl"] .site-footer__title::after {
  left: auto;
  right: 0;
}

html[dir="rtl"] .site-footer__menu a:hover,
html[dir="rtl"] .site-footer__link:hover {
  padding-right: 0;
  padding-left: 0.75rem;
}

html[dir="rtl"] .site-footer__menu a span,
html[dir="rtl"] .site-footer__link span {
  transform: translateX(10px);
}

html[dir="rtl"] .site-footer__menu a:hover span,
html[dir="rtl"] .site-footer__link:hover span {
  transform: translateX(0);
}

html[dir="rtl"] .site-footer__contact-card:hover {
  transform: translateX(5px);
}


/* Responsive Design */
@media (max-width: 64rem) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .site-footer__column--about {
    grid-column: 1 / -1;
  }
  
  .site-footer__social-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 48rem) {
  .site-footer__main {
    padding: 3rem 0 2rem;
  }
  
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .site-footer__title::after {
    right: 50%;
    transform: translateX(50%);
  }
  
  .site-footer__social-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 20rem;
    margin: 0 ;
  }
  
  
  .site-footer__nav {
    max-width: 20rem;
    margin: 0 ;
  }
  
  .site-footer__contact {
    max-width: 25rem;
    margin: 0 ;
  }
  
  .site-footer__awards-grid {
    gap: 1rem;
  }
  
  .site-footer__award-item {
    padding: 0.75rem;
  }
  
  .site-footer__award-item img {
    width: 4rem;
    height: 4rem;
  }
  
  .site-footer__bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Subtle Animations */
@keyframes footerFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer__column {
  animation: footerFadeIn 0.6s ease-out;
}

.site-footer__column:nth-child(2) {
  animation-delay: 0.1s;
}

.site-footer__column:nth-child(3) {
  animation-delay: 0.2s;
}


/* Performance optimizations */
.site-footer * {
  will-change: auto;
}

.site-footer__social-card:hover,
.site-footer__contact-card:hover,
.site-footer__award-item:hover {
  will-change: transform;
}