/* --- 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;
}


/* --- RESPONSIVE OVERRIDES --- */

@media (min-width: 1240px) and (max-width: 1450px) {
    .sym-footer-container {
        gap: 0;
    }
}

/* Tablet & Small Laptops (under 1100px) */
@media (max-width: 1100px) {
    .sym-footer-container {
        flex-direction: column;
        gap: 40px; /* Reducing your 100px gap */
        padding: 40px;
    }

    .links-grid {
        gap: 40px; /* Reducing your 95px gap */
    }

    .footer-right {
        padding-left: 0;
    }
    
       .dived{
        display: none!important;
    }
}

/* Tablets (under 992px) */
@media (max-width: 992px) {
    .sym-footer-container {
        flex-direction: column; /* Stack left and right sections */
        align-items: center;
        text-align: center;
    }

    .footer-left, .footer-right {
        width: 100%;
        max-width: 100%;
        flex: unset;
    }

    .link-header {
        text-align: left;
    }

    .links-grid {
        justify-content: center;
    }

    /* Adjusting the negative margin button for the new layout */
    .inquire-btn {
        position: static; /* Removes the -123px top offset so it sits in the flow */
        margin-top: 15px;
    }

    .form-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Hide accents if they cause horizontal scroll or overlap */
    .sym-footer-accents {
        display: none; 
    }
    
       .dived{
        display: none!important;
    }
}

/* Mobile Devices (under 600px) */
@media (max-width: 600px) {
    .sym-footer-main {
        padding: 80px 0 0 0;
        clip-path: polygon(0 50px, 100% 0, 100% 100%, 0% 100%); /* Shallower slant for mobile */
    }

    .links-grid {
        flex-direction: column; /* Stack Quick Links / Products / Quick Links */
        gap: 30px;
        align-items: center;
    }

    .link-column {
        width: 100%;
        text-align: center;
    }

    .link-header {
        border-left: none;
        border-bottom: 2px solid #67b7d1;
        display: inline-block;
        padding-left: 0;
        padding-bottom: 5px;
    }

    .input-row {
        flex-direction: column; /* Stack Name/Email/Subject inputs */
    }

    .copyright-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
    }
    
    .dived{
        display: none!important;
    }
}



/* ===== LARGE DESKTOP & ULTRA-WIDE SCREENS ===== */
@media (min-width: 1400px) {

  .sym-footer-container {
    max-width: 1480px;
    gap: 120px;
    padding: 40px 20px;
  }

  .footer-left {
    flex: 1.1;
  }

  .footer-right {
    flex: 1.9;
    max-width: 680px;
    padding-left: 80px;
  }

  .links-grid {
    gap: 110px;
    margin-top: 70px;
  }

  /* Accent stripes refined for wide screens */
  .dark-blue {
    left: 18vw;
    width: 300px !important;
  }

  .light-blue {
    width: 800px !important;
    left: -5vw;
  }
}

/* Ultra-wide (2000px+) */
@media (min-width: 2000px) {

  .sym-footer-container {
    max-width: 1680px;
  }

  .dark-blue {
    left: 22vw;
  }

  .light-blue {
    width: 900px !important;
  }
  
}


.dived{
    max-width: 1200px;
}


/* ===== TABLETS & SMALL LAPTOPS ===== */
@media (max-width: 1100px) {

  .sym-footer-container {
    gap: 50px;
    padding: 40px 30px;
  }

  .links-grid {
    gap: 50px;
    margin-top: 50px;
  }

  .footer-right {
    padding-left: 0;
    max-width: 100%;
  }


  .inquire-btn {
    top: -90px; /* reduced but keeps design intent */
  }
}


@media (max-width: 992px) {

  .sym-footer-container {
    padding: 30px 20px;
  }

  .footer-left {
    margin-bottom: 40px;
  }

  .links-grid {
    margin-top: 40px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-subtitle {
    max-width: 520px;
  }
  
    .dived{
        display: none !important;
    }
}


@media (min-width: 1600px) {
  .sym-footer-main {
    clip-path: polygon(0 90px, 100% 0, 100% 100%, 0% 100%);
  }
}


/* Button disable hone par styling */
.send-btn:disabled {
    background-color: #a0aec0 !important;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Spinner Circle */
.loader-dots {
    width: 18px;
    height: 18px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
