/* =========================================
   S CURVE FOOTER (LIKE SAMPLE)
========================================= */

.site-footer {
  position: relative;
  background: none;
  color: #fff;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* S Curve SVG */
.footer-curve {
  display: block;
  width: 100%;
  height: 150px;
}

.footer-curve path {
  fill: #0a3d62;
}

/* Footer Content */
.footer-content {
  background-color: #0a3d62;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px 30px;
  z-index: 2;
}

/* Columns */
.footer-columns {
  display: flex;
  gap: 70px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-col {
  flex: 1 1 260px;
  min-width: 240px;
}

/* Headings */
.footer-col h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #cce5ff;
}

/* Text */
.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Links */
.footer-col a {
  color: #a8c7ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ==============================
   WORDPRESS MENU – LEFT ALIGN
================================ */

.footer-col.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.footer-col.links ul li {
  margin-bottom: 10px;
  text-align: left;
}

.footer-col.links ul li a {
  display: block;
  text-align: left;
}

/* Fix for WP menu flex/center styles */
.footer-col.links .menu {
  align-items: flex-start;
  justify-content: flex-start;
}

/* Developed By */
.footer-developed-by {
  text-align: center;
  font-size: 13px;
  color: #cfd9e6;
  background-color: #082f4f;
  padding: 12px 20px;
}

.footer-developed-by strong {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-curve {
    height: 100px;
  }
}


/* Left-align footer column titles */
.footer-col h3 {
  text-align: left;
}

/* Left-align all footer titles */
.footer-col h3 {
  text-align: left;
}

/* Keep Address title centered */
.footer-columns .footer-col:first-child h3 {
  text-align: center;
}
