.site-footer{
  background:#062d57; 
  color:#fff;
  padding:32px 0 28px;
  font-family: Arial, sans-serif;
}

.site-footer .footer-wrap{
  width:90%;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr 1.6fr 1.2fr 1.6fr;
  gap:32px;
  align-items:start;
}

/* Column 1 */
.footer-brand .footer-logo{
  max-width:145px;
  height:auto;
  margin-bottom:14px;
  filter: brightness(0) invert(1);
}
.footer-brand p{
  font-size:13.5px;
  font-weight:600;
  margin-bottom:8px;
  line-height:1.5;
  color:#fff;
}

/* Headings */
.footer-heading{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
  color:#fff;
}

/* Connect text */
.footer-connect p{
  font-size:13.8px;
  line-height:1.55;
  margin-bottom:8px;
  color:rgba(255,255,255,0.95);
}

/* Column 3 rows */
.footer-accordion .acc-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:8px 0;
  font-size:15.5px;
  font-weight:700;
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,0.10);
  cursor:pointer;
}
.footer-accordion .acc-row:last-child{ border-bottom:none; }

.footer-accordion .acc-plus{
  font-size:20px;
  font-weight:400;
  margin-left:10px;
  color:#fff;
  line-height:1;
  transition:0.3s;
}

/* Dropdown Style */
.footer-accordion .acc-item{ display:block; }
.footer-accordion .acc-drop{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease;
}
.footer-accordion .acc-drop a{
  display:block;
  font-size:13.5px;
  font-weight:500;
  color:rgba(255,255,255,0.9);
  text-decoration:none;
  padding:6px 0;
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.footer-accordion .acc-drop a:last-child{ border-bottom:none; }
.footer-accordion .acc-drop a:hover{
  color:#fff;
  padding-left:4px;
}
.footer-accordion .acc-item.active .acc-drop{
  max-height:500px;
  margin-top:4px;
}
.footer-accordion .acc-item.active .acc-plus{
  transform:rotate(45deg);
}

/* Form Layout */
.footer-newsletter{
  max-width:340px;
}
.service-form{
  margin-top:6px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-bottom:10px;
}
.service-form input,
.service-form select{
  width:100%;
  padding:9px 10px;
  font-size:13.5px;
  border:1px solid #dee2e6;
  outline:none;
  border-radius:3px;
  background:#ffffff;
  color:#333;
}

/* Submit button animation */
.service-form button{
  width:100%;
  padding:10px 12px;
  font-size:14px;
  font-weight:700;
  border:none;
  border-radius:3px;
  background:#e9ecef;
  color:#083D77;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:0.3s;
  animation: submitPulse 2.2s infinite;
}
.service-form button:hover{
  background:#dee2e6;
  transform: translateY(-1px);
}
.service-form button::after{
  content:"";
  position:absolute;
  top:0; left:-120%;
  width:80%; height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.service-form button:hover::after{
  left:140%;
}
@keyframes submitPulse{
  0%{ box-shadow:0 0 0 0 rgba(233,236,239,0.55); }
  70%{ box-shadow:0 0 0 10px rgba(233,236,239,0); }
  100%{ box-shadow:0 0 0 0 rgba(233,236,239,0); }
}

/* Responsive */
@media(max-width:992px){
  .site-footer .footer-wrap{ grid-template-columns:1fr 1fr; }
  .footer-newsletter{ max-width:100%; }
}
@media(max-width:768px){
  .site-footer .footer-wrap{ grid-template-columns:1fr; gap:20px; }
  .form-row{ grid-template-columns: 1fr 1fr; gap:6px; }
  .service-form input, .service-form select{
    padding:8px 8px; font-size:12.3px;
  }
  .service-form button{ font-size:13px; padding:9px 10px; }
}

/* Copyright strip */
.copyright-strip{
  background:#ffffff;
  padding:12px 0;
  text-align:center;
  border-top:1px solid #dee2e6;
}
.copyright-strip p{
  margin:0;
  font-size:13px;
  color:#083D77;
  font-weight:600;
  letter-spacing:0.2px;
  text-shadow: 0 0 6px rgba(8,61,119,0.35);
  filter: blur(0.2px);
}

/* Success Toast */
.success-toast{
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ffffff;
  color: #083D77;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.35s ease;
  z-index: 9999;
}
.success-toast.show{
  opacity: 1;
  transform: translateY(0);
}
@media(max-width:768px){
  .success-toast{
    left: 50%;
    right: auto;
    transform: translate(-50%, 10px);
    width: 90%;
    text-align:center;
  }
  .success-toast.show{
    transform: translate(-50%, 0);
  }
}
