.seo-request-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 70px 5%;
  background: rgba(251, 101, 1, 0.1);
  overflow: hidden;
}
.request-left,
.request-right {
  width: 100%;
}
.request-left {
  max-width: 56%;
}
.request-right {
  max-width: 40%;
}
.request-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(254, 77, 41, 0.08);
  color: #fe4d29;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.request-left h2 {
  margin: 0 0 16px;
  font-size: 35px;
  line-height: 1.15;
  font-weight: 800;
  color: #0b1f3a;
}
.request-description {
  margin: 0 0 26px;
  color: #5d6674;
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}
.request-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin-bottom: 28px;
}
.request-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1b2430;
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.request-point:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.10);
  border-color: rgba(254, 77, 41, 0.22);
}

.point-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #fe4d29;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.call-btn,
.whatsapp-btn {
  min-width: 190px;
  text-align: center;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.call-btn {
  background: #fe4d29;
  color: #fff;
  box-shadow: 0 14px 28px rgba(254, 77, 41, 0.20);
}
.call-btn:hover {
  background: #0447c3;
  color: #fff;
  transform: translateY(-2px);
}
.whatsapp-btn {
  background: #fff;
  color: black;
  box-shadow: 0 14px 28px rgba(211, 118, 37, 0.18);
}
.whatsapp-btn:hover {
  background: #0cce53;
  color: #fff;
  transform: translateY(-2px);
}
.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(251, 101, 1, 0.1);
  border: 1px solid #eef2f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(11, 31, 58, 0.14);
}
.form-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  color: #0b1f3a;
  font-weight: 800;
}
.form-subtitle {
  margin: 0 0 20px;
  color: #6c7482;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.7;
}
.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #dfe6ee;
  border-radius: 12px;
  background: #fff;
  color: #0b1f3a;
  font-size: 14px;
  padding: 14px 16px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.request-form input {
  height: 52px;
}
.request-form textarea {
  min-height: 110px;
  resize: vertical;
}
.request-form input:focus,
.request-form textarea:focus {
  border-color: #fe4d29;
  box-shadow: 0 0 0 4px rgba(254, 77, 41, 0.10);
}
.request-form button {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #fe4d29;
  color: #fff;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 14px 30px rgba(254, 77, 41, 0.18);
}

.request-form button:hover {
  background: #0cce53;
  transform: translateY(-2px);
}

/* Scroll animation */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.delay-1 {
  transition-delay: 0.12s;
}
.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 991px) {
  .seo-request-section {
    gap: 30px;
    padding: 56px 5%;
    flex-direction: column;
    align-items: stretch;
  }

  .request-left,
  .request-right {
    max-width: 100%;
  }

  .request-left h2 {
    font-size: 34px;
  }

  .request-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .seo-request-section {
    padding: 42px 16px;
    gap: 24px;
  }

  .request-eyebrow {
    font-size: 12px;
  }

  .request-left h2 {
    font-size: 28px;
  }

  .request-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .request-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .request-point {
    font-size: 14px;
    padding: 13px 14px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .call-btn,
  .whatsapp-btn {
    width: 100%;
  }

  .form-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .form-card h3 {
    font-size: 24px;
  }

  .request-form input,
  .request-form textarea {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .request-form input {
    height: 48px;
  }

  .request-form textarea {
    min-height: 96px;
  }
}
/* =========================
   STANDPHILL MODERN FOOTER
   ========================= */

.sp-footer{
  background: #071a33;
  color: #fff;
  position: relative;
}

.sp-footer a{
  text-decoration: none !important;
}

.sp-footer-cta{
  background: linear-gradient(135deg, #0b2344 0%, #102c52 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sp-footer-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
}

.sp-footer-cta-text h3{
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.sp-footer-cta-text p{
  margin: 0;
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}

.sp-footer-cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sp-footer-btn{
  min-width: 160px;
  padding: 13px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: all 0.28s ease;
}

.sp-footer-btn-call{
  background: #fe4d29;
  color: #fff;
  box-shadow: 0 12px 24px rgba(254,77,41,0.18);
}

.sp-footer-btn-call:hover{
  background: #e94724;
  color: #fff;
  transform: translateY(-2px);
}

.sp-footer-btn-wa{
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 24px rgba(37,211,102,0.18);
}

.sp-footer-btn-wa:hover{
  background: #1fb65a;
  color: #fff;
  transform: translateY(-2px);
}

.sp-footer-main{
  padding: 56px 0 34px;
  background: #071a33;
}

.sp-footer-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.sp-footer-col{
  margin-bottom: 24px;
}

.sp-footer-col h5{
  position: relative;
  margin: 0 0 22px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding-bottom: 12px;
}

.sp-footer-col h5::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: #fe4d29;
  transition: width 0.3s ease;
}

.sp-footer-col:hover h5::after{
  width: 78px;
}

.sp-footer-logo img{
  max-width: 185px;
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.sp-footer-about{
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.78);
}

.sp-footer-mini-points{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sp-footer-mini-points span{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.sp-footer-links{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sp-footer-links li{
  margin-bottom: 10px;
}

.sp-footer-links li a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.28s ease, transform 0.28s ease;
}

.sp-footer-links li a i{
  color: #fff;
  transition: transform 0.28s ease, color 0.28s ease;
}

.sp-footer-links li a:hover{
  color: #fe4d29;
  transform: translateX(6px);
}

.sp-footer-links li a:hover i{
  color: #fe4d29;
  transform: translateX(3px);
}

.sp-footer-contact-box{
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.sp-footer-contact-box a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  transition: color 0.28s ease, transform 0.28s ease;
}

.sp-footer-contact-box a:hover{
  color: #fe4d29;
  transform: translateX(6px);
}
.sp-footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.10);
  background: #051327;
}
.sp-footer-bottom-inner{
  display: flex;
  align-items: center;
  justify-content: center;   /* ✅ center everything */
  flex-direction: column;    /* ✅ stack items */
  text-align: center;
  gap: 10px;
}
.sp-footer-copy{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.sp-footer-social{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-footer-social li a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: #fff;
  transition: all 0.28s ease;
}

.sp-footer-social li a:hover{
  background: #fe4d29;
  color: #fff;
  transform: translateY(-3px);
}

.sp-footer-legal{
  padding-bottom: 18px;
}

.sp-footer-legal p{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

.sp-footer-legal p a{
  color: rgba(255,255,255,0.86);
  transition: color 0.28s ease;
}

.sp-footer-legal p a:hover{
  color: #fe4d29;
}

/* reveal animation */
.footer-reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.footer-reveal.show{
  opacity: 1;
  transform: translateY(0);
}

.footer-reveal.delay-1{ transition-delay: 0.08s; }
.footer-reveal.delay-2{ transition-delay: 0.16s; }
.footer-reveal.delay-3{ transition-delay: 0.24s; }

/* responsive */
@media (max-width: 991px){
  .sp-footer-cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-footer-cta-text h3{
    font-size: 24px;
  }

  .sp-footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px){
  .sp-footer-cta{
    padding: 0;
  }

  .sp-footer-cta-inner{
    padding: 22px 0;
    gap: 18px;
  }

  .sp-footer-cta-text h3{
    font-size: 22px;
  }

  .sp-footer-cta-text p{
    font-size: 14px;
  }

  .sp-footer-cta-actions{
    width: 100%;
    flex-direction: column;
  }

  .sp-footer-btn{
    width: 100%;
  }

  .sp-footer-main{
    padding: 40px 0 20px;
  }

  .sp-footer-col h5{
    font-size: 17px;
    margin-bottom: 18px;
  }

  .sp-footer-about,
  .sp-footer-links li a,
  .sp-footer-contact-box a{
    font-size: 14px;
  }

  .sp-footer-copy{
    font-size: 14px;
  }

  .sp-footer-social{
    gap: 10px;
  }

  .sp-footer-social li a{
    width: 36px;
    height: 36px;
  }

  .sp-footer-legal p{
    font-size: 12px;
  }
}/* EMAIL BUTTON */
.sp-footer-btn-email{
  background: #fe4d29;
  color: #fff;
  box-shadow: 0 12px 24px rgba(254,77,41,0.18);
}

.sp-footer-btn-email:hover{
  background: #e94724;
  color: #fff;
  transform: translateY(-2px);
}

/* LINKEDIN BUTTON */
.sp-footer-btn-linkedin{
  background: #0077b5;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,119,181,0.18);
}

.sp-footer-btn-linkedin:hover{
  background: #006097;
  color: #fff;
  transform: translateY(-2px);
}