/* --- FOOTER PARENT & STRIPES --- */
.sym-footer-parent {
  position: relative;
  width: 100%;
  /* margin-top: -150px; */
  z-index: 1000;
}

.sym-footer-accents {
  position: absolute;
  top: -49px;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 1100;
  pointer-events: none;
}

.accent-box {
  position: absolute;
  height: 40px;
  transform: skewY(-5deg);
  /* Matches the footer slant */
}

.dark-blue {
  background-color: #0077b580;
  top: 60px;
  left: 265px;
  width: 250px !important;
}

.light-blue {
  background-color: #61b5c9;
  top: 100px;
  left: -10px;
  width: 650px !important;
}

/* --- MAIN BODY WITH CLIP-PATH --- */
.sym-footer-main {
  background-color: #efeeee;
  clip-path: polygon(0 100px, 100% 0, 100% 100%, 0% 100%);
  padding: 100px 0 0 0;
  position: relative;
}

.sym-footer-container {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  gap: 100px;
}

/* Branding & Links */
.footer-left {
  flex: 1.2;
}

.logo-placeholder img {
  height: 77px;
  width: auto;
  margin-bottom: 15px;
}

.tagline-bold {
  font-size: 12px;
  font-weight: bold;
  color: #333;
  margin: 2px 0;
}

.links-grid {
  display: flex;
  gap: 95px;
  /* Exact gap provided in your design */
  margin-top: 60px;
}

.link-header {
  color: #67b7d1;
  border-left: 2px solid #67b7d1;
  padding-left: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}

.link-column ul {
  list-style: none;
  padding: 0;
}

.link-column ul li a {
  text-decoration: none;
  color: #888;
  font-size: 12px;
  line-height: 2.2;
}

/* Form Card */
.footer-right {
  flex: 1.8;
  padding-left: 60px;
  width: 100% !important;
  max-width: 618px;

}

.form-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 25px;
}

.form-title {
  font-weight: bold;
  font-size: 20px;
  margin: 0 0 5px 0;
  color: #444;
}

.form-subtitle {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 15px;
}

.inquire-btn {
  background-color: transparent;
  color: #67b7d1;
  border: 1px solid #bed8e1;
  padding: 10px 25px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  /* Prevents button text from wrapping to 2 lines */
  transition: all 0.3s ease;
  height: fit-content;
  /* Keeps button height based on padding */
  border-radius: 6px;
  position: relative;
  top: -123px;

}

.inquire-btn:hover {
  background-color: #67b7d1;
  color: white;
}

.input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.input-group label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
  border: 1px solid #e0e0e0;
  border-top: 3px solid #cecece;
  padding: 12px;
  border-radius: 6px;
  outline: none;
}

.send-btn {
  background-color: #67b7d1;
  color: white;
  border: none;
  padding: 12px 35px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

/* Bottom Strip */
.footer-copyright-strip {
  border-top: 1px solid #d1cfcf;
  padding: 10px 0;
  margin-top: 10px;
}

.copyright-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
}

.copyright-container p,
.footer-legal-links a {
  color: #888;
  font-size: 13px;
  text-decoration: none;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.link-column {
  width: 150px;
}