/* ==========================================================
   CHICAIM SERVICES PRO FOOTER STYLES
   Matches Brand Blue: #00308f
   ========================================================== */

.chicaim-footer {
  position: relative;
  background: #00308f;
  color: #ffffff;
  font-family: 'Raleway', sans-serif;
  overflow: hidden;
}

/* ====== Wave Effect ====== */
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(111% + 1.3px);
  height: 100px;
}

.footer-wave .shape-fill {
  fill: #ffffff;
}

/* ====== Footer Layout ====== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 40px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* ====== Column Styles ====== */
.footer-column h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 15px;
  border-left: 4px solid #00bfff;
  padding-left: 10px;
  font-weight: 600;
}

.footer-column p,
.footer-column a {
  color: #eaeaea;
  font-size: 15px;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #00bfff;
}

/* ====== Footer Links ====== */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links i {
  margin-right: 8px;
  font-size: 12px;
  color: #00bfff;
}

/* ====== Social Links ====== */
.social-links {
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #00bfff;
  transform: scale(1.1);
}

/* ====== Contact Info ====== */
.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #00bfff;
  margin-right: 10px;
  font-size: 16px;
}

/* ====== Newsletter Form ====== */
.newsletter-form {
  display: flex;
  margin-top: 15px;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  background: #00bfff;
  color: #fff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #008fcc;
}

/* ====== Bottom Bar ====== */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #eaeaea;
}

.footer-bottom a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #00bfff;
}

.footer-bottom i {
  margin-right: 6px;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
