/* ===== MODERN FOOTER STYLES ===== */
.footer {
  background-color: var(--secondary-color);
  padding: 80px 0 30px; /* More top padding */
  color: white;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 350px 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 10px;
}

.footer-logo-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.contact-info {
  margin-top: 25px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary-light);
}

.contact-info a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  position: relative;

  margin-top: 15px;
}



.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  color: white;
  font-weight: 600;
}

.footer-nav h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-light);
}

.footer-nav a,
.footer-nav p {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-nav a:before,
.footer-nav p:before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-nav p:hover {
  color: white;
  padding-left: 20px;
}

.footer-nav a:hover:before,
.footer-nav p:hover:before {
  opacity: 1;
}

.social-links {
  position: fixed;
  right: 0;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 3px 8px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  background-color: var(--primary-dark);
  transform: translateX(-5px);
}

.social-link img {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  opacity: 0.9;
}

.social-link:hover img {
  transform: scale(1.15);
  opacity: 1;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.tech-support {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
  text-align: center;
}

