/* ----------------------------------- F O O T E R ------------------------------------- */

/* Footer wrapper */
.footer {
  background-color: #072638;
  padding: 60px 20px 30px;
  color: #fff;
  font-size: 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  align-items: start;
}

/* Headings */
.footer-about h3{
  margin-top: 32px;
  font-size: 1.5rem;
  color: #997346;

}

.footer-links h4,
.footer-socials h4,
.footer-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #997346 0%, #f2c987 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* General text */
.footer-about p,
.footer-contact p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* Quick Links & Social Links */
.footer-links ul,
.footer-socials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-socials ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-socials ul li a,
.footer-contact a {
  display: inline-block;           /* bigger clickable area */
  color: #ddd;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links ul li a:hover,
.footer-socials ul li a:hover,
.footer-contact a:hover {
  color: #f2c987;
  transform: translateX(4px);       /* subtle movement on hover */
}

/* REMOVE bullet points / pseudo content */
.footer-socials ul li a::before {
  content: none; /* no dot before social links */
}

.footer-bottom {
  width: 100%;                     /* full width */
  text-align: center;              /* center text */
  padding: 20px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
}


.footer-bottom p {
  font-size: 0.9rem;
  margin: 5px 0 0 0;               /* add small top margin */
}


.phone-number {
  color: #ddd;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #f2c987;
}

/* Responsive grid already handled by auto-fit */
