/* Footer Styles */
.site-footer {
  width: 100%;
}

.site-footer__main {
  background: #0A1E3D;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 3rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.site-footer__heading {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.site-footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #0055FF;
  border-radius: 4px;
}

.site-footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__contact li svg {
  color: #ffffff;
  margin-top: 2px;
  flex-shrink: 0;
}

.site-footer__nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__nav-menu li {
  margin-bottom: 0.85rem;
}

.site-footer__nav-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.site-footer__nav-menu a:hover {
  color: #ffffff;
}

.site-footer__newsletter-text {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__newsletter-form {
    display: flex;
    margin-bottom: 1rem;
    position: relative;
}

.site-footer__newsletter-form input {
    width: 100%;
    padding: 0.85rem 1rem;
    padding-right: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.site-footer__newsletter-form input:focus {
    outline: none;
    border-color: #0055FF;
}

.site-footer__newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 3rem;
    background: transparent;
    border: none;
    color: #0055FF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.site-footer__newsletter-form button:hover {
    color: #fff;
}

.site-footer__newsletter .site-footer__social {
    margin-top: 1.5rem;
}

.site-footer__bottom {
  background: #0A1E3D;
  padding: 0 0 2rem;
}

.site-footer__bottom-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer__bottom-left {
  display: flex;
  align-items: center;
}

.site-footer__bottom-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-footer__logo img {
  height: 40px;
  width: auto;
}

.site-footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.site-footer__social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.site-footer__social a:hover {
  background: #0055FF;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #0055FF;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: #0A1E3D;
  transform: translateY(-5px);
}

/* Floating Contact Menu */
.floating-contact {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-contact__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-contact.is-active .floating-contact__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact__btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.floating-contact__btn:hover {
  transform: scale(1.1);
}

.floating-contact__btn--whatsapp {
  background-color: #25D366;
}

.floating-contact__btn--email {
  background-color: #FF4B4B;
}

.floating-contact__toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0055FF; /* Blue toggle button */
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.3);
  transition: transform 0.3s ease;
}

.floating-contact__toggle .icon-close {
  display: none;
}

.floating-contact.is-active .floating-contact__toggle {
  background-color: #0A1E3D;
}

.floating-contact.is-active .floating-contact__toggle .icon-chat {
  display: none;
}

.floating-contact.is-active .floating-contact__toggle .icon-close {
  display: block;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
  
  .site-footer__col:nth-child(1),
  .site-footer__col:nth-child(4) {
    grid-column: span 2;
  }

  .site-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  
  .site-footer__bottom-left,
  .site-footer__bottom-right {
    align-items: flex-start;
  }
  
  .scroll-to-top {
      bottom: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
  }
  
  .floating-contact {
      bottom: 20px;
      left: 20px;
  }
  
  .floating-contact__toggle {
      width: 50px;
      height: 50px;
  }
  
  .floating-contact__btn {
      width: 40px;
      height: 40px;
  }
}
