/******************************************
Section | Booking Block
******************************************/
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
.booking-block {
  background: #f5f5f5;
}
.booking-block .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 30px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.booking-block .booking-content-left {
  padding-right: 40px;
}
.booking-block h2 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 54px;
  color: #0d1e34;
  font-weight: 800;
  line-height: 0.95em;
  margin: 0 0 28px;
  max-width: 520px;
}
.booking-block .section-body {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #464f60;
  font-weight: 500;
  line-height: 1.75em;
  margin: 0 0 48px;
  max-width: 520px;
}
.booking-block .logo-wrap {
  margin: 0 0 32px;
  max-width: 50%;
}
.booking-block .logo-wrap img {
  max-width: 280px;
  height: auto;
  display: block;
}
.booking-block .logo-text {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #0d1e34;
  font-weight: 700;
  line-height: 1.6em;
  margin: 0;
  max-width: 520px;
}
.booking-block .booking-content-right {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 28px 24px;
  position: sticky;
  top: 40px;
}
.booking-block h3 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 32px;
  color: #0d1e34;
  font-weight: 800;
  line-height: 1.1em;
  margin: 0 0 10px;
}
.booking-block .booking-description {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: #4b5d78;
  font-weight: 500;
  line-height: 1.65em;
  margin: 0 0 20px;
}
.booking-block .calendly-embed {
  margin-top: 16px;
}
.booking-block .calendly-embed iframe {
  border-radius: 8px;
}
@media only screen and (max-width: 1100px) {
  .booking-block .inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 30px;
  }
  .booking-block .booking-content-left {
    padding-right: 0;
  }
  .booking-block h2 {
    font-size: 52px;
  }
  .booking-block .section-body {
    font-size: 17px;
  }
  .booking-block .booking-content-right {
    position: static;
  }
  .booking-block h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .booking-block .inner {
    padding: 40px 20px;
    gap: 28px;
  }
  .booking-block h2 {
    font-size: 38px;
    margin-bottom: 16px;
  }
  .booking-block .section-body {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .booking-block .logo-wrap {
    margin-bottom: 24px;
  }
  .booking-block .logo-wrap img {
    max-width: 220px;
  }
  .booking-block .logo-text {
    font-size: 16px;
  }
  .booking-block .booking-content-right {
    padding: 20px 16px;
  }
  .booking-block h3 {
    font-size: 24px;
  }
  .booking-block .booking-description {
    font-size: 14px;
  }
  .booking-block .calendly-embed {
    margin-top: 12px;
  }
}
