.alert-box {
  position: fixed;
  top: 20px;
  right: 20px;
  transform: scale(0.9);
  background: #2d3a4a;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #3d4f63;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  text-align: center;
  width: 90%;
  max-width: 320px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  font-family: 'Manrope', sans-serif;
}

.alert-box.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.alert-box p {
  font-size: 16px;
  color: #e0e0e0;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.timer-bar {
  width: 100%;
  height: 4px;
  background: #3d4f63;
  border-radius: 2px;
  overflow: hidden;
}

.timer-bar::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background: #28d294;
  transition: width 3s linear;
}

.alert-box.active .timer-bar::after {
  width: 100%;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
}

.backdrop.active {
  opacity: 0;
  visibility: hidden;
}

/*
                                                                       
FFFFFFFFFFFFFFFFFFFFFF                                       tttt          
F::::::::::::::::::::F                                    ttt:::t          
F::::::::::::::::::::F                                    t:::::t          
FF::::::FFFFFFFFF::::F                                    t:::::t          
  F:::::F       FFFFFFooooooooooo     ooooooooooo   ttttttt:::::ttttttt    
  F:::::F           oo:::::::::::oo oo:::::::::::oo t:::::::::::::::::t    
  F::::::FFFFFFFFFFo:::::::::::::::o:::::::::::::::ot:::::::::::::::::t    
  F:::::::::::::::Fo:::::ooooo:::::o:::::ooooo:::::otttttt:::::::tttttt    
  F:::::::::::::::Fo::::o     o::::o::::o     o::::o      t:::::t          
  F::::::FFFFFFFFFFo::::o     o::::o::::o     o::::o      t:::::t          
  F:::::F          o::::o     o::::o::::o     o::::o      t:::::t          
  F:::::F          o::::o     o::::o::::o     o::::o      t:::::t    tttttt
FF:::::::FF        o:::::ooooo:::::o:::::ooooo:::::o      t::::::tttt:::::t
F::::::::FF        o:::::::::::::::o:::::::::::::::o      tt::::::::::::::t
F::::::::FF         oo:::::::::::oo oo:::::::::::oo         tt:::::::::::tt
FFFFFFFFFFF           ooooooooooo     ooooooooooo             ttttttttttt  
                                                                            */
.footer {
  padding: 40px 8% 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 30px;
}

.footer-section {
  text-align: left;
}

.footer-title {
  font-family: 'Space Grotesk', sans-serif, Arial, Helvetica;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #E0E0E0;
}

.footer-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #B0B0B0;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 1rem;
}

.footer-links a:hover {
  color: #28d294;
}

.footer-social a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 1rem;
}

.footer-social a:hover {
  color: #28d294;
}

.email-link {
  text-decoration: none;
  color: #E0E0E0;
}

.email-link:hover {
  color: #28d294;
}

.footer-map {
  margin-top: 1rem;
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #E0E0E0;
}

.footer-bottom span {
  font-weight: bold;
  color: #28d294;
}

/*
                                                                                                                       
                                                                               mmmmmmm    mmmmmmm      qqqqqqqqq   qqqqq
                                                                             mm:::::::m  m:::::::mm   q:::::::::qqq::::q
                                                                            m::::::::::mm::::::::::m q:::::::::::::::::q
                                                                            m::::::::::::::::::::::mq::::::qqqqq::::::qq
                                                                            m:::::mmm::::::mmm:::::mq:::::q     q:::::q 
                                                                            m::::m   m::::m   m::::mq:::::q     q:::::q 
                                                                            m::::m   m::::m   m::::mq:::::q     q:::::q 
                                                                            m::::m   m::::m   m::::mq::::::q    q:::::q 
                                                                            m::::m   m::::m   m::::mq:::::::qqqqq:::::q 
                                                                            m::::m   m::::m   m::::m q::::::::::::::::q 
                                                                            m::::m   m::::m   m::::m  qq::::::::::::::q 
                                                                            mmmmmm   mmmmmm   mmmmmm    qqqqqqqq::::::q 
                                                                                                                q:::::q 
                                                                                                                q:::::q 
                                                                                                               q:::::::q
                                                                                                               q:::::::q
                                                                                                               q:::::::q
                                                                                                               qqqqqqqqq                                           
                                                                            */
@media screen and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 425px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links,
  .footer-social {
    align-items: center;
  }

  .footer-map iframe {
    height: 150px;
  }
}




