.thanks-section{
  min-height:80vh;
  display:flex;
  align-items:center;
  padding:10rem 0 6rem;
  background:
          radial-gradient(820px 380px at 85% 5%, rgba(243,200,94,.18) 0%, rgba(243,200,94,0) 55%),
          radial-gradient(900px 420px at 15% 15%, rgba(47,224,198,.18) 0%, rgba(47,224,198,0) 55%),
          linear-gradient(135deg, rgba(86,150,177,.10) 0%, rgba(246,248,250,1) 55%, rgba(242,100,100,.06) 100%);
}

.thanks-icon{
  font-size:4.75rem;
  color:var(--color-primary);
  margin-bottom:2rem;
  animation:popIn .45s ease-out;
}

.thanks-title{
  font-size:2.55rem;
  font-weight:800;
  color:var(--color-dark);
  margin-bottom:1.25rem;
  animation:rise .55s ease-out .08s both;
}

.thanks-text{
  font-size:1.15rem;
  color:var(--color-gray);
  line-height:1.7;
  margin-bottom:2rem;
  animation:rise .55s ease-out .16s both;
}

.thanks-info{
  background:rgba(255,255,255,.92);
  padding:1.75rem;
  border-radius:14px;
  border:1px solid rgba(86,150,177,.14);
  border-left:4px solid rgba(47,224,198,.95);
  margin-bottom:2.25rem;
  animation:rise .55s ease-out .24s both;
}

.thanks-info p{
  font-size:1.05rem;
  color:rgba(28,35,48,.86);
  margin:0;
  line-height:1.7;
}

.thanks-actions{
  display:flex;
  gap:1rem;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:2.5rem;
  animation:rise .55s ease-out .32s both;
}

.thanks-contact{
  padding:1.75rem;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(86,150,177,.12);
  border-radius:14px;
  animation:rise .55s ease-out .40s both;
}

.thanks-contact p{
  font-size:1rem;
  color:var(--color-gray);
  margin-bottom:.75rem;
}

.contact-phone,
.contact-email{
  font-size:1.1rem;
  font-weight:700;
  color:rgba(86,150,177,.98);
  margin-bottom:.45rem;
}

.contact-phone i,
.contact-email i{
  margin-right:.5rem;
}

@keyframes popIn{
  from{transform:scale(.88);opacity:0}
  to{transform:scale(1);opacity:1}
}

@keyframes rise{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

@media (max-width:767px){
  .thanks-icon{font-size:3.6rem;}
  .thanks-title{font-size:2rem;}
  .thanks-text{font-size:1.05rem;}
  .thanks-actions{flex-direction:column;}
  .thanks-actions .btn{width:100%;}
}
