/* FOOTER STYLES - KTP Website */

/* CSS Variables for consistent theming */
:root {
  --primary: #2F4A8A;
  --white: #ffffff;
  --black: #000000;
  --gray: #f4f4f4;
}

/* Ensure footer has no animations except hover effects */
footer,
footer h3,
footer h4,
footer p,
footer ul,
footer li,
.footer-container,
.footer-left,
.footer-right {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Allow transitions for professional hover effects */
.footer-link,
.footer-right a {
  transition: all 0.3s ease !important;
}

.instagram-icon {
  transition: fill 0.3s ease !important;
}

/* FOOTER */
footer {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 83px 42px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 0;
}

.footer-left {
  flex: 0 0 auto;
  margin-right: auto;
  text-align: left;
}

.footer-right {
  flex: 0 0 auto;
  min-width: 150px;
}

.footer-left h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white) !important;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-left .copyright {
  font-size: 0.95rem;
  color: var(--white) !important;
  margin-bottom: 0;
  font-weight: 300;
}

.footer-link {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: #4A68B8 !important;
  border-bottom: 1px solid #4A68B8;
  transform: translateX(2px);
}

.instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.instagram-link:hover {
  border-bottom: none !important;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: fill 0.3s ease;
}

.instagram-link:hover .instagram-icon {
  fill: #E4405F;
}

.footer-right h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--white) !important;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right li {
  margin-bottom: 10px;
}

.footer-right a {
  color: #ffffff !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  font-size: 1rem;
}

.footer-right a:hover {
  border-bottom: 1px solid #ffffff;
  color: #ffffff !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer-left {
    margin-right: 0;
  }

  footer {
    padding: 40px 20px;
  }

  .footer-left h3 {
    font-size: 1.5rem;
  }

  .footer-links {
    margin-top: 15px;
  }

  .footer-link {
    font-size: 0.9rem;
  }
} 