/* v77 - Booking phone consultation option */
.booking-phone-option{
  max-width:980px;
  margin:26px auto 18px;
  padding:24px 26px;
  border-radius:26px;
  border:1px solid rgba(0,91,150,.18);
  background:
    radial-gradient(circle at 8% 20%, rgba(255,255,255,.92), rgba(255,255,255,0) 34%),
    linear-gradient(135deg, #ffffff 0%, #eef8ff 56%, #dff2ff 100%);
  box-shadow:0 22px 55px rgba(0,51,92,.13);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.booking-phone-copy{
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  align-items:center;
}
.booking-phone-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg, #004474 0%, #0075ae 100%);
  box-shadow:0 16px 34px rgba(0,83,139,.24);
  font-size:22px;
}
.booking-phone-label{
  display:block;
  margin-bottom:5px;
  font-family:'Roboto',sans-serif;
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#00609a;
}
.booking-phone-option h2{
  margin:0 0 5px;
  font-family:'Cormorant Garamond',serif;
  font-size:34px;
  line-height:1;
  color:#05243c;
}
.booking-phone-option p{
  margin:0;
  max-width:560px;
  color:#24445c;
  font-size:16px;
  line-height:1.55;
}
.booking-phone-btn{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 24px;
  border-radius:16px;
  color:#fff;
  text-decoration:none;
  font-family:'Roboto',sans-serif;
  font-size:16px;
  font-weight:800;
  background:linear-gradient(135deg, #00345e 0%, #006ea7 100%);
  box-shadow:0 18px 34px rgba(0,72,120,.22);
  transition:transform .2s ease, box-shadow .2s ease;
  white-space:nowrap;
}
.booking-phone-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 44px rgba(0,72,120,.28);
}
@media (max-width:860px){
  .booking-phone-option{
    margin:22px 10px 16px;
    padding:24px 20px;
    flex-direction:column;
    text-align:center;
  }
  .booking-phone-copy{
    grid-template-columns:1fr;
    justify-items:center;
  }
  .booking-phone-option p{max-width:100%;}
  .booking-phone-btn{width:100%;}
}
