.elementor-6188 .elementor-element.elementor-element-39f05cf{--display:flex;}.elementor-6188 .elementor-element.elementor-element-39f05cf.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-6188 .elementor-element.elementor-element-39f05cf{--width:402.667px;}}/* Start custom CSS *//* ===============================
   7Whys Booking Page (Premium)
   Palette:
   BG #0B1218
   Accent #F38B4D
   Heading #FFFFFF
   Body #D1D5DB
   Secondary #161F27
   Border #2D3741
   Muted #9CA3AF
   Hover #D97339
================================ */

.page-booking-7whys{
  --bg: #0B1218;
  --panel: #161F27;
  --border: #2D3741;
  --text: #D1D5DB;
  --heading: #FFFFFF;
  --muted: #9CA3AF;
  --accent: #F38B4D;
  --accentHover: #D97339;

  background:
    radial-gradient(1200px 650px at 75% 10%, rgba(243,139,77,0.18), transparent 55%),
    radial-gradient(900px 500px at 15% 35%, rgba(229,231,235,0.06), transparent 55%),
    linear-gradient(180deg, rgba(11,18,24,1) 0%, rgba(11,18,24,1) 100%);
  color: var(--text);
  padding: 70px 0;
}

/* grid wrapper */
.page-booking-7whys .wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

/* cards */
.page-booking-7whys .card{
  background: rgba(22,31,39,0.86);
  border: 1px solid rgba(45,55,65,0.85);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.40);
  backdrop-filter: blur(10px);
}

/* typography */
.page-booking-7whys h1{
  color: var(--heading);
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 10px 0;
  letter-spacing: -0.02em;
}

.page-booking-7whys p{
  margin: 0 0 16px 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
}

/* bullets */
.page-booking-7whys .bullets{
  margin: 18px 0 0 0;
  padding: 0;
  list-style: none;
}

.page-booking-7whys .bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid rgba(45,55,65,0.55);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
}

.page-booking-7whys .bullets li:first-child{
  border-top: 0;
  padding-top: 0;
}

.page-booking-7whys .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(243,139,77,0.12);
}

/* meta */
.page-booking-7whys .meta{
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

/* CTA button (mobile utility; hidden on desktop below) */
.page-booking-7whys .cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #0B1218;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.page-booking-7whys .cta:hover{
  background: var(--accentHover);
  transform: translateY(-1px);
}

/* calendly card */
.page-booking-7whys .calendly-wrap{
  padding: 14px;
  background:
    radial-gradient(600px 300px at 30% 10%, rgba(243,139,77,0.10), transparent 60%),
    rgba(22,31,39,0.70);
}

/* calendly widget frame */
.page-booking-7whys .calendly-inline-widget{
  min-width: 320px;
  height: 620px;          /* desktop balanced height */
  border-radius: 16px;
  overflow: hidden;
}

/* ===============================
   Desktop premium balancing
================================ */
@media (min-width: 981px){
  /* equal card height + center left content */
  .page-booking-7whys .card{
    min-height: 620px;
  }

  .page-booking-7whys .wrap > .card:first-child{
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* hide jump CTA button on desktop/tablet */
  .page-booking-7whys .cta{
    display: none !important;
  }
}

/* ===============================
   Tablet
================================ */
@media (max-width: 980px){
  .page-booking-7whys{
    padding: 60px 0;
  }
  .page-booking-7whys .wrap{
    grid-template-columns: 1fr;
  }
  .page-booking-7whys .calendly-inline-widget{
    height: 900px;
  }
}

/* ===============================
   Mobile: centered + right-aligned bullets
================================ */
@media (max-width: 767px){
  .page-booking-7whys{
    padding: 46px 0;
  }

  .page-booking-7whys .card{
    text-align: center;
    padding: 18px;
    border-radius: 20px;
  }

  .page-booking-7whys h1{
    font-size: 30px;   /* requested */
    line-height: 1.18;
  }

  .page-booking-7whys p{
    font-size: 12px;   /* requested */
    line-height: 1.75;
  }

  .page-booking-7whys .meta{
    font-size: 12px;
  }

  /* Right-aligned bullets (dot on right) */
  .page-booking-7whys .bullets{
    margin-top: 14px;
  }

  .page-booking-7whys .bullets li{
    font-size: 12px;     /* requested */
    line-height: 1.65;
    justify-content: flex-end;
    text-align: right;
    flex-direction: row-reverse; /* dot on right */
    gap: 10px;
    padding: 10px 0;
  }

  .page-booking-7whys .dot{
    margin-top: 6px;
  }

  /* CTA centered + full width feel */
  .page-booking-7whys .cta{
    margin-left: auto;
    margin-right: auto;
  }

  .page-booking-7whys .calendly-inline-widget{
    height: 980px;
    border-radius: 14px;
  }
}

/* Mobile bullets: clean LEFT aligned */
@media (max-width: 767px){
  .page-booking-7whys .bullets{
    max-width: 340px;
    margin: 14px auto 0 auto;  /* keeps the list centered as a block */
    padding: 0;
  }

  .page-booking-7whys .bullets li{
    flex-direction: row;       /* dot on left */
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 12px 0;
  }

  .page-booking-7whys .dot{
    flex: 0 0 10px;
    margin-top: 7px;
  }

  .page-booking-7whys .bullets li span:last-child{
    display: block;
    width: 100%;
  }
}/* End custom CSS */