.ate-servicearea{
  width:100%;
  background:#E1D59F;
  padding:100px 20px;
  box-sizing:border-box;
  overflow:hidden;
}

.ate-servicearea *{
  box-sizing:border-box;
}

.ate-servicearea-wrap{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:stretch;
}

.ate-servicearea-map{
  width:100%;
  height:100%;
}

.ate-servicearea-map iframe{
  width:100%;
  height:100%;
  min-height:700px;
  display:block;
  border:0;
  border-radius:18px;
}

.ate-servicearea-map img{
  width:100%;
  height:100%;
  min-height:700px;
  display:block;
  border:0;
  border-radius:18px;
  object-fit:cover;
}

.ate-map-placeholder{
  width:100%;
  height:100%;
  min-height:700px;
  border-radius:18px;
  overflow:hidden;
  background:
    linear-gradient(rgba(44,6,31,.18), rgba(44,6,31,.18)),
    #E1D59F;
  border:2px dashed rgba(44,6,31,.25);
  display:flex;
  align-items:center;
  justify-content:center;
}

.ate-map-placeholder span{
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  color:#2C061F;
}

.ate-servicearea-content{
  width:100%;
}

.ate-servicearea-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#2C061F;
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}

.ate-servicearea-badge::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#D89216;
  display:block;
}

.ate-servicearea-content h2{
  margin:0 0 24px;
  color:#2C061F;
  font-family:'Cinzel', serif;
  font-size:46px;
  line-height:1.08;
  font-weight:900;
  text-transform:uppercase;
}

.ate-servicearea-content p{
  margin:0 0 26px;
  color:#1E293B;
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.7;
  font-weight:600;
}

.ate-servicearea-content h3{
  margin:0 0 18px;
  color:#2C061F;
  font-family:'Inter', sans-serif;
  font-size:20px;
  line-height:1.3;
  font-weight:900;
  text-transform:uppercase;
}

.ate-area-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:28px;
}

.ate-area-list span{
  min-height:48px;
  border:1.5px solid rgba(44,6,31,.45);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10px 14px;
  color:#2C061F;
  background:#ffffff;
  font-family:'Inter', sans-serif;
  font-size:16px;
  line-height:1.15;
  font-weight:900;
  text-transform:uppercase;
  transition:.25s ease;
}

.ate-area-list span:first-child{
  background:#D89216;
  border-color:#D89216;
  color:#ffffff;
}

.ate-area-list span:hover{
  background:#2C061F;
  border-color:#2C061F;
  color:#ffffff;
  transform:translateY(-2px);
}

.ate-servicearea-btn{
  width:100%;
  min-height:54px;
  border-radius:999px;
  background:#D89216;
  color:#ffffff;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  transition:.25s ease;
}

.ate-servicearea-btn svg{
  width:34px;
  height:34px;
  background:#ffffff;
  color:#2C061F;
  border-radius:50%;
  padding:8px;
  flex:0 0 34px;
}

.ate-servicearea-btn:hover{
  background:#2C061F;
  color:#ffffff;
  transform:translateY(-2px);
}

.ate-call-link{
  color:#D89216;
  font-weight:900;
  text-decoration:none;
  transition:.25s ease;
}

.ate-call-link:hover{
  color:#2C061F;
  text-decoration:underline;
}

@media(max-width:1024px){
  .ate-servicearea-wrap{
    grid-template-columns:1fr;
    align-items:start;
  }

  .ate-servicearea-content h2{
    font-size:36px;
  }

  .ate-map-placeholder,
  .ate-servicearea-map img,
  .ate-servicearea-map iframe{
    height:420px;
    min-height:420px;
  }
}

@media(max-width:600px){
  .ate-servicearea{
    padding:70px 16px;
  }

  .ate-servicearea-content h2{
    font-size:30px;
  }

  .ate-area-list{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }

  .ate-area-list span{
    font-size:11px;
    min-height:44px;
  }

  .ate-map-placeholder,
  .ate-servicearea-map img,
  .ate-servicearea-map iframe{
    height:330px;
    min-height:330px;
  }
}