footer {
  background-color: #1a2357;
  color: #fff;
  padding: 40px 20px;
  
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.footer-box {
  flex: 1 1 250px;
  padding: 0 20px;
  position: relative;
}

.footer-box h3 {
  color: #ffbb00; 
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffbb00;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li a {
  text-decoration: none;
  color: #fff; 
}

.footer-box ul li a:hover {
  color: #FFD700; 
}

.footer-box ul li {
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}
.social-icons img {
  width: 50px;
  height: 50px;
}

.footer-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 1px;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;    
    flex-wrap: wrap;         
    gap: 12px;               
  }

  .footer-box {
    width: calc(50% - 6px);  
  }

  .footer-box::after {
    display: none;
  }
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  color: #aaaaaa;
}

/* Small Phone*/
@media (max-width: 600px) {
  .map-container {
    max-width: 100%;
    border-radius: 8px;
  }
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    .service-cards {
        flex-direction: column;
        gap: 1.5rem;
    }
    .card {
        width: 90%;
        margin: 0 auto;
    }
}


.choose-contact {
  text-align: center;
  margin-top: 20px;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.fixed-inquiry-btn {
  position: fixed;
  bottom: 20px;
  width: calc(100% - 40px);
  left: 20px;
  padding: 14px 0;
  background: #13b405;
  color: #fff;
  text-align: center;
  font-size: 33px;
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fixed-inquiry-btn:hover {
  background: #ffae00;
}


@media (max-width: 768px) {
  .fixed-inquiry-btn {
    font-size: 18px;
    padding: 14px 0;
    bottom: 15px;
    width: calc(100% - 20px);
    left: 10px;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .fixed-inquiry-btn {
    font-size: 16px;
    padding: 12px 0;
    bottom: 10px;
  }
}

.auth-icon {
  display: flex;
  align-items: center;
  min-width: 160px;        
  justify-content: flex-end;
  position: relative;
}

.auth-link {
  display: flex;
  align-items: center;
  gap: 8px;               
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;    
}

.auth-link img {
  width: 30px;
  height: 30px;
}

.user-name {
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 25px;
  cursor: pointer;
}

.user-toggle:hover {
  background: rgba(255,255,255,0.15);
}
.user-menu {
  position: absolute;
  top: 120%;
  right: 0;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 8px;
  display: none;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  min-width: 180px;
}

.logout-btn {
  width: 100%;
  background: #e74c3c;
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
  .map-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  #map {
    width: 100%;
    height: 100%;
  }


.footer-contact {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 25px 20px;
  text-align: center;
  background:  #1a2357;
  color: #fff;
}

.footer-contact h4 {
  color: #ffbb00; 
  font-size: 18px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ffbb00;
  display: inline-block;
  padding-bottom: 5px;
}

.contact-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; 
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  color: #ffffff;
  white-space: nowrap;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
}
.contact-item span {
  font-size: 22px;
}

.contact-item a:hover {
  color: #ffbb00;
}
@media (max-width: 768px) {
  .contact-horizontal {
    gap: 15px;
  }
  @media (max-width: 768px) {
  .contact-item {
    white-space: normal;   
    font-size: 16px;
    align-items: flex-start;
    max-width: 100%;
  }
  .contact-item span:last-child {
    line-height: 1.6;
  }
  }
  @media (max-width: 480px) {
  .contact-item {
    flex-direction: row;
    align-items: flex-start;
  }
}


}
.footer-highlights {
  margin-top: 18px;         
  padding-top: 77px;        
  border-top: 1px dashed rgba(255,255,255,0.5); 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;               
  font-size: 22px;       
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}


.footer-highlights span {
  white-space: nowrap;
}

.footer-highlights strong {
  color: #ffbb00;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer-highlights {
    margin-top: 16px;
    padding-top: 22px;
    gap: 10px;
    font-size: 13px;
  }
}




