/* ============================================================
   FILE: css/footer.css
   Footer styles.
   EDIT footer colors and layout here.
============================================================ */

.site-footer {
  background-color: var(--dark-green);
  border-top: 1px solid rgba(181, 229, 80, 0.1);
}

/* Four column grid */
.footer__main {
  padding: 4.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

/* Company description text */
.footer__desc {
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.56);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 270px;
}

/* GST / registration text */
.footer__reg {
  font-size: 0.75rem;
  color: rgba(244, 240, 230, 0.35);
  margin-bottom: 1.25rem;
}

/* Social icons row */
.footer__socials {
  display: flex;
  gap: 0.6rem;
}

/* Individual social icon */
.social-icon {
  width: 34px;
  height: 34px;
  background: rgba(181, 229, 80, 0.1);
  border: 1px solid rgba(181, 229, 80, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 240, 230, 0.65);
  font-size: 0.8rem;
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover {
  background-color: var(--lime);
  color: var(--dark-green);
  border-color: var(--lime);
}

/* Column heading */
.footer__col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.2rem;
}

/* Footer links list */
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.62);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__links a:hover { color: var(--lime); }

/* Contact info items */
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.footer__contact-item .icon {
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item span {
  font-size: 0.88rem;
  color: rgba(244, 240, 230, 0.62);
  line-height: 1.5;
}

.footer__contact-item a {
  color: rgba(244, 240, 230, 0.62);
  transition: color 0.2s;
  text-decoration: none;
}
.footer__contact-item a:hover { color: var(--lime); }

/* Business hours box */
.footer__hours {
  margin-top: 1rem;
  padding: 0.875rem;
  background: rgba(181, 229, 80, 0.07);
  border: 1px solid rgba(181, 229, 80, 0.15);
  border-radius: 8px;
}

.footer__hours-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.4rem;
}

.footer__hours p {
  font-size: 0.82rem;
  color: rgba(244, 240, 230, 0.58);
  margin: 0;
}

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(181, 229, 80, 0.09);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(244, 240, 230, 0.38);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.78rem;
  color: rgba(244, 240, 230, 0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--lime); }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1100px) {
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer__main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer__desc { max-width: 100%; }
}


/* FINAL MOBILE FORM FIX */
@media (max-width:768px){

.hero__inner,
.hero-grid,
.lead__grid{
display:flex !important;
flex-direction:column !important;
}

.hero__content,
.hero__form,
.form-card,
.lead-form{
width:100% !important;
max-width:100% !important;
flex:0 0 100% !important;
}

.form-card,
.hero__form{
margin-top:20px !important;
padding:20px !important;
}

.sp-form,
.sp-form .form-field,
.sp-form input,
.sp-form select,
.sp-form button{
width:100% !important;
max-width:100% !important;
box-sizing:border-box !important;
}

h1{
font-size:42px !important;
line-height:1.1 !important;
word-break:break-word !important;
}

body,html{
overflow-x:hidden !important;
}
}
