/* ===========================================
   OLIMPOSGAZAB MODERN FOOTER DESIGN
   =========================================== */

/* Modern Footer Container */
.site-footer {
  background: linear-gradient(135deg, 
    rgba(3, 7, 30, 0.98) 0%, 
    rgba(20, 20, 50, 0.95) 30%, 
    rgba(40, 40, 80, 0.92) 70%, 
    rgba(3, 7, 30, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 0, 110, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* Animated Background */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 86, 7, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 0, 110, 0.05) 0%, transparent 70%);
  animation: footerBackgroundMove 20s ease-in-out infinite;
  z-index: 1;
}

@keyframes footerBackgroundMove {
  0%, 100% { 
    transform: translateX(0) translateY(0) scale(1);
    opacity: 0.6;
  }
  25% { 
    transform: translateX(-20px) translateY(-10px) scale(1.02);
    opacity: 0.8;
  }
  50% { 
    transform: translateX(20px) translateY(10px) scale(0.98);
    opacity: 0.7;
  }
  75% { 
    transform: translateX(-10px) translateY(20px) scale(1.01);
    opacity: 0.9;
  }
}

/* Footer Container */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  color: #ffffff;
}

/* Footer Content Grid */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  animation: footerContentFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes footerContentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Company Info Section */
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-info h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(45deg, #ff006e, #fb5607);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
}

.footer-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.footer-info p:hover {
  color: #ff006e;
  transform: translateX(5px);
}

.footer-info p::before {
  content: '';
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, #ff006e, #fb5607);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: footerDotPulse 2s ease-in-out infinite;
}

@keyframes footerDotPulse {
  0%, 100% { 
    opacity: 0.6;
    transform: scale(1);
  }
  50% { 
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Navigation Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Footer Menu Grid */
.footer-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-menu-column {
  display: flex;
  flex-direction: column;
}

.footer-menu-column:nth-child(2) {
  margin-top: 1rem;
}

.footer-links h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ff006e, #fb5607);
  border-radius: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.3rem 0;
  display: inline-block;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff006e, #fb5607);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #ff006e;
  transform: translateX(8px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Contact Section */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #ff006e, #fb5607);
  border-radius: 1px;
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.3rem 0;
  display: inline-block;
}

.footer-contact a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff006e, #fb5607);
  transition: width 0.3s ease;
}

.footer-contact a:hover {
  color: #ff006e;
  transform: translateX(8px);
}

.footer-contact a:hover::before {
  width: 100%;
}


/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  position: relative;
  animation: footerBottomFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes footerBottomFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 400;
}

/* Floating Elements */
.footer-floating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-footer-element {
  position: absolute;
  background: linear-gradient(45deg, 
    rgba(255, 0, 110, 0.1) 0%, 
    rgba(251, 86, 7, 0.1) 100%);
  border-radius: 50%;
  animation: floatingFooterElementMove 25s linear infinite;
}

.floating-footer-element:nth-child(1) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 30s;
}

.floating-footer-element:nth-child(2) {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation-delay: 10s;
  animation-duration: 35s;
}

.floating-footer-element:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 20%;
  animation-delay: 20s;
  animation-duration: 25s;
}

@keyframes floatingFooterElementMove {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .footer-info {
    grid-column: 1 / -1;
  }
  
  .footer-menu-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-container {
    padding: 3rem 1.5rem 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-info h3 {
    font-size: 1.8rem;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.2rem;
  }
  
  .footer-menu-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .floating-footer-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 2.5rem 1rem 1.5rem;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-info h3 {
    font-size: 1.6rem;
  }
  
  .footer-info p {
    font-size: 0.9rem;
  }
  
  .footer-links a,
  .footer-contact a {
    font-size: 0.9rem;
  }
  
}

/* Performance Optimizations */
.site-footer,
.footer-info h3,
.footer-links a,
.footer-contact a,
.social-link {
  will-change: transform, opacity;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .site-footer::before,
  .footer-info p::before,
  .floating-footer-element {
    animation: none !important;
  }
  
  .footer-info h3 {
    background: #ff006e;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
