.ate-emergency{
  width:100%;
  background:#E1D59F;
  padding:80px 20px;
  overflow:hidden;
}

.ate-emergency-wrap{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  background:linear-gradient( #374045 0%, #2C061F 100%);
  border-radius:34px;
  padding:70px 70px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:50px;
  align-items:center;
  position:relative;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(30,41,59,0.28);
}

.ate-emergency-wrap::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-160px;
  top:-160px;
  background:#D89216;
  opacity:0.12;
  border-radius:50%;
}

.ate-emergency-wrap::after{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  left:-150px;
  bottom:-160px;
  background:#E1D59F;
  opacity:0.0;
  border-radius:50%;
}

/* Removed side round shapes */
.ate-emergency-wrap::before,
.ate-emergency-wrap::after{
  content:none !important;
  display:none !important;
}

.ate-emergency-content,
.ate-emergency-action{
  position:relative;
  z-index:2;
}

.ate-emergency-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#E1D59F;
  border:1px solid rgba(255,255,255,0.18);
  color:#2C061F;
  padding:13px 22px;
  border-radius:999px;
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:30px;
}

.ate-emergency-badge svg{
  width:20px;
  height:20px;
  color:#D89216;
}

.ate-emergency-content h2{
  font-family:'Cinzel', serif;
  color:#FFFFFF;
  font-size:46px;
  line-height:1.05;
  font-weight:800;
  margin:0 0 26px;
}

.ate-emergency-content h2 span{
  color:#E1D59F;
}

.ate-emergency-content p{
  max-width:620px;
  color:rgba(255,255,255,0.90);
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.8;
  margin:0;
}

.ate-emergency-action{
  display:flex;
  justify-content:flex-end;
}

.ate-emergency-btn{
  width:100%;
  max-width:440px;
  min-height:112px;
  background:#D89216;
  color:#2C061F !important;
  border-radius:18px;
  display:flex;
  align-items:center;
  gap:22px;
  padding:24px 30px;
  font-family:'Inter', sans-serif;
  box-shadow:0 20px 55px rgba(216,146,22,0.35);
  transition:0.3s ease;
}

.ate-emergency-btn:hover{
  transform:translateY(-5px);
  background:#E1D59F;
  color:#2C061F !important;
}

.ate-phone-icon{
  width:62px;
  height:62px;
  min-width:62px;
  border-radius:50%;
  background:#FFFFFF;
  display:flex;
  align-items:center;
  justify-content:center;
}

.ate-phone-icon svg{
  width:26px;
  height:26px;
  stroke:#2C061F;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.ate-emergency-btn strong{
  display:block;
  font-size:17px;
  line-height:1.2;
  font-weight:800;
}

.ate-emergency-btn small{
  display:block;
  margin-top:8px;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:0.75;
}

@media(max-width:991px){
  .ate-emergency-wrap{
    grid-template-columns:1fr;
    padding:55px 35px;
  }

  .ate-emergency-action{
    justify-content:flex-start;
  }

  .ate-emergency-content h2{
    font-size:44px;
  }
}

@media(max-width:767px){
  .ate-emergency{
    padding:60px 16px;
  }

  .ate-emergency-wrap{
    border-radius:28px;
    padding:42px 24px;
  }

  .ate-emergency-content h2{
    font-size:34px;
  }

  .ate-emergency-content p{
    font-size:16px;
  }

  .ate-emergency-btn{
    min-height:auto;
    padding:20px;
    gap:16px;
  }

  .ate-emergency-btn strong{
    font-size:19px;
  }

  .ate-phone-icon{
    width:54px;
    height:54px;
    min-width:54px;
  }
}