/* ================================
   NEW MODERN FOOTER
================================ */

.new-footer {
  background: #081927;
  padding: 60px 0 25px;
  color: #ffffff;
  position: relative;
}

.footer-content {
  width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Column Styling */
.footer-col h3 {
  color: #fbdd94; /* golden yellow from screenshot */
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 1rem;
  color: #dfe6ec;
  line-height: 1.6;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a {
  text-decoration: none;
  transition: 0.3s;
  padding-left: 10px;
  border-radius: 6px;
  border-left: #0abf53 3px solid;
}

.footer-col ul li a:hover {
  color: #0abf53;
  padding: 5px;
  border-radius: 10px;
  border: #0abf53 1px solid;
  padding-left: 5px;
}

/* Social Media */
.sm-title {
  margin-top: 30px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.1rem;
  transition: 0.3s ease;
  border-radius: 4px;
}

.social-links a:hover {
  background: #0abf53;
  border-color: #0abf53;
  box-shadow: 0 0 12px rgba(10, 191, 83, 0.7);
}

/* =========================================
   FORM AREA
========================================== */

.form-col input,
.form-col textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: 0.3s ease;
}

.form-col input::placeholder,
.form-col textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-col input:focus,
.form-col textarea:focus {
  border-color: #0abf53;
  background: rgba(255,255,255,0.15);
}


/************MAP SECTION ********************/

.map-section {
    display: flex;
    justify-content: left;
    
    margin-left: -80px;
    border-radius: 14px;
    
}

/* Wrapper for styling */
.map-wrapper {
    width: 500PX;                        
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(13, 37, 56, 0.25);
    border: 2px solid rgba(13, 37, 56, 0.15);
    
}

/* Actual map styling */
.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 14px;
    filter: grayscale(20%);
}


/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: #ced6db;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .form-buttons {
    justify-content: center;
  }
}
