/* Compiled from scss/Footer.scss */
.modern-footer{
  background-color:#0a0a14;
  color:rgba(255,255,255,0.8);
  position:relative;
  padding-top:100px;
  margin-top:100px;
  overflow:hidden;
}
.modern-footer .footer-wave{
  position:absolute;
  top:-100px;
  left:0;
  width:100%;
  height:100px;
  color:var(--primary-color);
}
.modern-footer .footer-wave svg{
  width:100%;
  height:100%;
  display:block;
}
.modern-footer .footer-main{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:60px;
  margin-bottom:60px;
}
@media (max-width: 992px){
  .modern-footer .footer-main{
    grid-template-columns:1fr;
    gap:40px;
  }
}
.modern-footer .footer-brand .footer-logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
}
.modern-footer .footer-brand .footer-logo .logo-icon{
  font-size:2.5rem;
}
.modern-footer .footer-brand .footer-logo .logo-text{
  font-size:1.8rem;
  font-weight:700;
  background:linear-gradient(90deg, var(--accent-color), #ff7b9c);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.modern-footer .footer-brand .footer-description{
  font-size:1rem;
  line-height:1.6;
  margin-bottom:30px;
  color:rgba(255,255,255,0.7);
}
.modern-footer .footer-brand .footer-social{
  display:flex;
  gap:15px;
}
.modern-footer .footer-brand .footer-social .social-link{
  width:40px;
  height:40px;
  border-radius:50%;
  background-color:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,0.7);
  font-size:1rem;
  transition:all 0.3s;
}
.modern-footer .footer-brand .footer-social .social-link:hover{
  background-color:var(--accent-color);
  color:white;
  transform:translateY(-3px);
  box-shadow:0 5px 15px rgba(233,69,96,0.3);
}
.modern-footer .footer-links{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}
@media (max-width: 768px){
  .modern-footer .footer-links{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 576px){
  .modern-footer .footer-links{
    grid-template-columns:1fr;
  }
}
.modern-footer .footer-links .footer-column .column-title{
  font-size:1.2rem;
  font-weight:700;
  color:white;
  margin-bottom:25px;
  position:relative;
}
.modern-footer .footer-links .footer-column .column-title::after{
  content:"";
  position:absolute;
  bottom:-10px;
  left:0;
  width:40px;
  height:3px;
  background-color:var(--accent-color);
  border-radius:2px;
}
.modern-footer .footer-links .footer-column .footer-menu{
  list-style:none;
  padding:0;
  margin:0;
}
.modern-footer .footer-links .footer-column .footer-menu li{
  margin-bottom:15px;
}
.modern-footer .footer-links .footer-column .footer-menu li a{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
  transition:all 0.3s;
  position:relative;
  padding-left:0;
}
.modern-footer .footer-links .footer-column .footer-menu li a::before{
  content:'›';
  position:absolute;
  left:0;
  opacity:0;
  transition:all 0.3s;
  color:var(--accent-color);
}
.modern-footer .footer-links .footer-column .footer-menu li a:hover{
  color:white;
  padding-left:15px;
}
.modern-footer .footer-links .footer-column .footer-menu li a:hover::before{
  opacity:1;
  left:-5px;
}
.modern-footer .footer-links .footer-column .footer-menu li.contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.modern-footer .footer-links .footer-column .footer-menu li.contact-item i{
  color:var(--accent-color);
  margin-top:3px;
  font-size:0.9rem;
  min-width:16px;
}
.modern-footer .footer-links .footer-column .footer-menu li.contact-item span{
  color:rgba(255,255,255,0.7);
  line-height:1.5;
}
.modern-footer .footer-newsletter{
  background:linear-gradient(90deg, rgba(15,52,96,0.2), rgba(233,69,96,0.2));
  border-radius:20px;
  padding:40px;
  margin-bottom:60px;
  border:1px solid rgba(255,255,255,0.1);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}
@media (max-width: 768px){
  .modern-footer .footer-newsletter{
    flex-direction:column;
    text-align:center;
    padding:30px;
  }
}
.modern-footer .footer-newsletter .newsletter-content{
  flex:1;
}
.modern-footer .footer-newsletter .newsletter-content .newsletter-title{
  font-size:1.8rem;
  color:white;
  margin-bottom:15px;
  font-weight:700;
}
@media (max-width: 768px){
  .modern-footer .footer-newsletter .newsletter-content .newsletter-title{font-size:1.5rem;}
}
.modern-footer .footer-newsletter .newsletter-content .newsletter-description{
  color:rgba(255,255,255,0.8);
  line-height:1.6;
}
.modern-footer .footer-newsletter .newsletter-form{
  flex:1;
  max-width:500px;
}
.modern-footer .footer-newsletter .newsletter-form .form-group{
  display:flex;
  gap:10px;
  margin-bottom:15px;
}
@media (max-width: 576px){
  .modern-footer .footer-newsletter .newsletter-form .form-group{flex-direction:column;}
}
.modern-footer .footer-newsletter .newsletter-form .form-group input{
  flex:1;
  background-color:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.2);
  border-radius:10px;
  padding:15px 20px;
  color:white;
  font-family:var(--font-family);
  font-size:1rem;
  transition:all 0.3s;
}
.modern-footer .footer-newsletter .newsletter-form .form-group input::placeholder{
  color:rgba(255,255,255,0.5);
}
.modern-footer .footer-newsletter .newsletter-form .form-group input:focus{
  outline:none;
  border-color:var(--accent-color);
  background-color:rgba(255,255,255,0.15);
  box-shadow:0 0 0 3px rgba(233,69,96,0.1);
}
.modern-footer .footer-newsletter .newsletter-form .form-group .btn-newsletter{
  background:linear-gradient(90deg, var(--accent-color), #ff7b9c);
  color:white;
  border:none;
  border-radius:10px;
  padding:15px 25px;
  font-family:var(--font-family);
  font-weight:600;
  font-size:1rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  transition:all 0.3s;
  white-space:nowrap;
}
.modern-footer .footer-newsletter .newsletter-form .form-group .btn-newsletter:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 20px rgba(233,69,96,0.3);
}
@media (max-width: 576px){
  .modern-footer .footer-newsletter .newsletter-form .form-group .btn-newsletter{justify-content:center;}
}
.modern-footer .footer-newsletter .newsletter-form .form-note{
  font-size:0.85rem;
  color:rgba(255,255,255,0.6);
}
.modern-footer .footer-newsletter .newsletter-form .form-note a{
  color:var(--accent-color);
  text-decoration:none;
}
.modern-footer .footer-newsletter .newsletter-form .form-note a:hover{
  text-decoration:underline;
}
.modern-footer .footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,0.1);
}
@media (max-width: 768px){
  .modern-footer .footer-bottom{flex-direction:column;gap:30px;text-align:center;}
}
.modern-footer .footer-bottom .footer-copyright p{
  color:rgba(255,255,255,0.7);
  margin-bottom:10px;
}
.modern-footer .footer-bottom .footer-copyright .footer-legal{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
@media (max-width: 768px){
  .modern-footer .footer-bottom .footer-copyright .footer-legal{justify-content:center;}
}
.modern-footer .footer-bottom .footer-copyright .footer-legal a{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
  font-size:0.9rem;
  transition:color 0.3s;
}
.modern-footer .footer-bottom .footer-copyright .footer-legal a:hover{
  color:var(--accent-color);
}
.modern-footer .footer-bottom .footer-copyright .footer-legal .separator{
  color:rgba(255,255,255,0.3);
}
.modern-footer .footer-bottom .footer-payment .payment-title{
  color:rgba(255,255,255,0.7);
  font-size:0.9rem;
  margin-bottom:10px;
  text-align:right;
}
@media (max-width: 768px){
  .modern-footer .footer-bottom .footer-payment .payment-title{text-align:center;}
}
.modern-footer .footer-bottom .footer-payment .payment-methods{
  display:flex;
  gap:15px;
  font-size:1.5rem;
}
@media (max-width: 768px){
  .modern-footer .footer-bottom .footer-payment .payment-methods{justify-content:center;}
}
.modern-footer .footer-bottom .footer-payment .payment-methods i{
  color:rgba(255,255,255,0.6);
  transition:color 0.3s;
}
.modern-footer .footer-bottom .footer-payment .payment-methods i:hover{
  color:var(--accent-color);
}
.modern-footer .back-to-top{
  position:fixed;
  bottom:30px;
  right:30px;
  width:50px;
  height:50px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent-color), #ff7b9c);
  color:white;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.2rem;
  box-shadow:0 5px 15px rgba(233,69,96,0.4);
  z-index:100;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all 0.3s;
}
.modern-footer .back-to-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.modern-footer .back-to-top:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(233,69,96,0.5);
}
.modern-footer .footer-decoration{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:0;
}
.modern-footer .footer-decoration .decoration-circle{
  position:absolute;
  border-radius:50%;
  background:radial-gradient(circle, rgba(233,69,96,0.1), transparent 70%);
  z-index:0;
}
.modern-footer .footer-decoration .circle-1{
  width:300px;
  height:300px;
  top:10%;
  left:5%;
  opacity:0.3;
}
.modern-footer .footer-decoration .circle-2{
  width:200px;
  height:200px;
  top:40%;
  right:10%;
  opacity:0.2;
}
.modern-footer .footer-decoration .circle-3{
  width:150px;
  height:150px;
  bottom:20%;
  left:20%;
  opacity:0.15;
}
@keyframes floatUpDown{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}
.footer-column .footer-menu li a{position:relative;overflow:hidden;}
.footer-column .footer-menu li a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:1px;background-color:var(--accent-color);transition:width 0.3s;}
.footer-column .footer-menu li a:hover::after{width:100%;}
@media screen and (max-width: 1200px){
  .modern-footer .footer-main{gap:40px;}
  .modern-footer .footer-links{gap:20px;}
}
@media screen and (max-width: 992px){
  .modern-footer{padding-top:80px;}
  .modern-footer .footer-main{grid-template-columns:1fr;}
  .modern-footer .footer-links{grid-template-columns:repeat(2,1fr);}
  .modern-footer .footer-newsletter{flex-direction:column;text-align:center;}
}
@media screen and (max-width: 768px){
  .modern-footer{margin-top:80px;}
  .modern-footer .footer-wave{top:-80px;height:80px;}
  .modern-footer .footer-links{grid-template-columns:1fr;gap:30px;}
  .modern-footer .footer-newsletter{padding:25px;}
  .modern-footer .footer-newsletter .newsletter-form .form-group{flex-direction:column;}
  .modern-footer .footer-bottom{flex-direction:column;gap:25px;}
  .modern-footer .footer-bottom .footer-payment .payment-title{text-align:center;}
  .modern-footer .footer-bottom .footer-payment .payment-methods{justify-content:center;}
  .modern-footer .back-to-top{bottom:20px;right:20px;width:45px;height:45px;}
}
@media screen and (max-width: 576px){
  .modern-footer{padding-top:60px;margin-top:60px;}
  .modern-footer .footer-wave{top:-60px;height:60px;}
  .modern-footer .footer-brand .footer-logo .logo-text{font-size:1.5rem;}
  .modern-footer .footer-newsletter .newsletter-content .newsletter-title{font-size:1.4rem;}
  .modern-footer .footer-newsletter .newsletter-form .btn-newsletter{justify-content:center;}
  .modern-footer .footer-bottom .footer-copyright .footer-legal{flex-direction:column;gap:5px;}
  .modern-footer .footer-bottom .footer-copyright .footer-legal .separator{display:none;}
}
