/* ==============================
   FOOTER STYLES
   ============================== */

.site-footer {
  background: #0a1a24;
  color: rgba(255, 255, 255, 0.65);
  padding: 70px 0 0;
}

.site-footer .row {
  align-items: flex-start;
}

.site-footer .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Footer Top */
.footer-logo img {
  height: 55px;
  margin-bottom: 18px;
}

.footer-about {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #c9a84c;
  border-color: #c9a84c;
  color: #fff;
}

/* Footer Headings */
.footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  white-space: nowrap;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #c9a84c;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: #c9a84c;
}

.footer-links a:hover {
  color: #c9a84c;
  padding-left: 5px;
}

/* Contact Info */
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-icon i {
  color: #c9a84c;
  font-size: 14px;
}

.footer-contact-text {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-text a:hover {
  color: #c9a84c;
}

/* Newsletter */
.footer-newsletter-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-newsletter-input-wrap {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  max-width: 100%;
}

.footer-newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  outline: none;
  border-radius: 6px 0 0 6px;
  transition: border-color 0.3s;
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-input:focus {
  border-color: #c9a84c;
}

.footer-newsletter-btn {
  background: #c9a84c;
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: background 0.3s;
}

.footer-newsletter-btn:hover {
  background: #b89640;
}

.footer-sub-heading {
  font-size: 14px;
  font-weight: 600;
  color: #c9a84c;
  margin-bottom: 10px;
}

.footer-office-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.footer-office-text i {
  color: #c9a84c;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
}

.footer-bottom-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom-text a {
  color: #c9a84c;
  text-decoration: none;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: #c9a84c;
}

@media (max-width: 991px) {
  .site-footer {
    display: none;
  }
  .footer-bottom-links {
    justify-content: flex-start;
    margin-top: 10px;
  }
}
