/* SayarahGo 1.25.10: booking-led photographic homepage, expanded About page, and simplified navigation. */

/* Desktop header: fewer items, steadier spacing, and more room for the primary CTA. */
.bcsg-site-header__inner {
  width: min(1380px, calc(100% - 32px));
  gap: 18px;
}
.bcsg-primary-nav {
  gap: 14px;
}
.bcsg-primary-nav a,
.bcsg-nav-group__trigger {
  white-space: nowrap;
}

/* Photographic homepage hero */
.bcsg-home-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  padding: 46px 0 54px;
  color: #fff;
  background-image: url("../img/home-hero-dubai-v1.webp");
  background-position: center;
  background-size: cover;
}
.bcsg-home-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 3, 23, .96) 0%, rgba(35, 4, 42, .84) 42%, rgba(20, 3, 24, .58) 72%, rgba(11, 2, 14, .7) 100%),
    linear-gradient(0deg, rgba(10, 1, 12, .72), transparent 58%);
}
.bcsg-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  gap: clamp(38px, 5vw, 84px);
  align-items: center;
}
.bcsg-home-hero__copy {
  max-width: 650px;
  padding: 40px 0;
}
.bcsg-home-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 193, 7, .55);
  border-radius: 999px;
  color: var(--bcsg-gold);
  background: rgba(255, 193, 7, .1);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.bcsg-home-hero h1 {
  max-width: 670px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.bcsg-home-hero__copy > p {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255,255,255,.8);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
}
.bcsg-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.bcsg-home-hero__actions .bcsg-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.08);
}
.bcsg-home-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 34px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 750;
}
.bcsg-home-hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.bcsg-home-hero__assurances svg {
  width: 18px;
  height: 18px;
  fill: var(--bcsg-gold);
}

/* Compact, framed view of the existing secure booking portal. */
.bcsg-home-booking {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 28px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}
.bcsg-home-booking__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px 18px;
  color: var(--bcsg-text);
  border-bottom: 1px solid var(--bcsg-border);
}
.bcsg-home-booking__head span {
  display: block;
  margin-bottom: 4px;
  color: var(--bcsg-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}
.bcsg-home-booking__head h2 {
  margin: 0;
  color: var(--bcsg-primary);
  font-size: 26px;
  line-height: 1.1;
}
.bcsg-home-booking__head > strong {
  padding: 7px 10px;
  border-radius: 999px;
  color: #2d6c46;
  background: #e7f7ed;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bcsg-home-booking__viewport {
  height: 550px;
  overflow: hidden;
  background: #f4f5f7;
}
.bcsg-home-booking__frame {
  display: block;
  width: 125%;
  height: 690px;
  border: 0;
  background: #f4f5f7;
  transform: scale(.8);
  transform-origin: top left;
}
.bcsg-home-booking__fallback {
  margin: 0;
  padding: 10px 18px 14px;
  color: var(--bcsg-muted);
  background: #fff;
  text-align: center;
  font-size: 12px;
}
.bcsg-home-booking__fallback a {
  color: var(--bcsg-primary);
  font-weight: 800;
}
.bcsg-home-booking__empty {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 40px;
  color: var(--bcsg-text);
  text-align: center;
}

/* Factual service statistics — no invented customer or coverage counts. */
.bcsg-home-proof {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: #fff;
  background: linear-gradient(90deg, #36003f, #52005f 52%, #36003f);
}
.bcsg-home-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bcsg-home-proof__grid > div {
  padding: 24px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(255,255,255,.14);
}
.bcsg-home-proof__grid > div:last-child {
  border-right: 0;
}
.bcsg-home-proof strong,
.bcsg-home-proof span {
  display: block;
}
.bcsg-home-proof strong {
  color: var(--bcsg-gold);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}
.bcsg-home-proof span {
  margin-top: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
}

.bcsg-home-services .bcsg-card {
  min-height: 250px;
}
.bcsg-home-purpose__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(260px, .8fr));
  gap: 24px;
  align-items: stretch;
}
.bcsg-home-purpose__intro {
  align-self: center;
  padding-right: clamp(10px, 3vw, 48px);
}
.bcsg-home-purpose__intro h2 {
  margin: 18px 0 0;
  color: var(--bcsg-primary);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.bcsg-home-purpose__intro p {
  margin: 22px 0 0;
  color: var(--bcsg-muted);
  font-size: 17px;
  line-height: 1.7;
}
.bcsg-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--bcsg-primary);
  font-weight: 850;
}
.bcsg-text-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.bcsg-purpose-card {
  padding: 34px;
  border: 1px solid var(--bcsg-border);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(63,0,73,.08);
}
.bcsg-purpose-card > span,
.bcsg-about-direction__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  border-radius: 17px;
  color: var(--bcsg-primary);
  background: var(--bcsg-primary-soft);
}
.bcsg-purpose-card svg,
.bcsg-about-direction__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.bcsg-purpose-card small,
.bcsg-about-direction__card small {
  color: var(--bcsg-gold-dark);
  font-weight: 900;
  letter-spacing: .09em;
}
.bcsg-purpose-card h3 {
  margin: 14px 0 0;
  color: var(--bcsg-primary);
  font-size: 25px;
  line-height: 1.18;
}
.bcsg-purpose-card p {
  margin: 16px 0 0;
  color: var(--bcsg-muted);
  line-height: 1.65;
}
.bcsg-purpose-card--vision {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #35003e, #590066);
}
.bcsg-purpose-card--vision > span {
  color: var(--bcsg-gold);
  background: rgba(255,255,255,.1);
}
.bcsg-purpose-card--vision h3 {
  color: #fff;
}
.bcsg-purpose-card--vision p {
  color: rgba(255,255,255,.72);
}

/* Expanded About page */
.bcsg-about-direction__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.bcsg-about-direction__card {
  min-height: 390px;
  padding: clamp(34px, 4vw, 58px);
  border: 1px solid var(--bcsg-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--bcsg-shadow);
}
.bcsg-about-direction__card h3 {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--bcsg-primary);
  font-size: clamp(31px, 3.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.bcsg-about-direction__card p {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--bcsg-muted);
  font-size: 17px;
  line-height: 1.7;
}
.bcsg-about-direction__card--dark {
  color: #fff;
  border-color: transparent;
  background:
    radial-gradient(circle at 90% 8%, rgba(255,193,7,.2), transparent 32%),
    linear-gradient(145deg, #2d0035, #570062);
}
.bcsg-about-direction__card--dark .bcsg-about-direction__icon {
  color: var(--bcsg-gold);
  background: rgba(255,255,255,.1);
}
.bcsg-about-direction__card--dark h3 {
  color: #fff;
}
.bcsg-about-direction__card--dark p {
  color: rgba(255,255,255,.72);
}
.bcsg-about-values .bcsg-card {
  min-height: 270px;
}

/* Switch to a comfortable drawer before the desktop header starts squeezing. */
@media (max-width: 1120px) {
  .bcsg-site-header {
    overflow: visible;
  }
  .bcsg-site-header__inner {
    height: 66px;
    width: calc(100% - 24px);
    padding: 0 14px 0 18px;
  }
  .bcsg-logo img {
    width: 126px;
  }
  .bcsg-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 3;
  }
  .bcsg-primary-nav {
    position: absolute;
    top: 76px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 14px;
    border: 1px solid var(--bcsg-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--bcsg-shadow);
  }
  .bcsg-primary-nav.is-open {
    display: flex;
  }
  .bcsg-primary-nav > a,
  .bcsg-nav-group__trigger {
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    font-size: 15px;
    text-align: left;
  }
  .bcsg-nav-group {
    display: flex;
    flex-direction: column;
  }
  .bcsg-nav-group__menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0;
    padding: 2px 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .bcsg-nav-group.is-open .bcsg-nav-group__menu {
    display: flex;
    transform: none;
  }
  .bcsg-nav-group__menu::before {
    display: none;
  }
  .bcsg-nav-group__menu a {
    color: var(--bcsg-muted);
    white-space: normal;
  }
  .bcsg-header-cta {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .bcsg-header-cta .bcsg-btn--ghost {
    display: none;
  }
  .bcsg-header-cta .bcsg-btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }
  .bcsg-home-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bcsg-home-hero__copy {
    max-width: 760px;
    padding-bottom: 4px;
  }
  .bcsg-home-booking {
    max-width: 780px;
  }
  .bcsg-home-purpose__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bcsg-home-purpose__intro {
    grid-column: 1 / -1;
    max-width: 760px;
    padding-right: 0;
  }
}

@media (max-width: 800px) {
  .bcsg-home-hero {
    min-height: 0;
    padding: 34px 0 42px;
    background-position: 58% center;
  }
  .bcsg-home-hero::before {
    background: linear-gradient(180deg, rgba(24,3,29,.92), rgba(24,3,29,.75) 55%, rgba(12,1,15,.88));
  }
  .bcsg-home-hero__copy {
    padding: 22px 0 6px;
    text-align: center;
  }
  .bcsg-home-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }
  .bcsg-home-hero__copy > p {
    margin-right: auto;
    margin-left: auto;
  }
  .bcsg-home-hero__actions,
  .bcsg-home-hero__assurances {
    justify-content: center;
  }
  .bcsg-home-booking__viewport {
    height: 760px;
  }
  .bcsg-home-booking__frame {
    width: 100%;
    height: 760px;
    transform: none;
  }
  .bcsg-home-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bcsg-home-proof__grid > div:nth-child(2) {
    border-right: 0;
  }
  .bcsg-home-proof__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .bcsg-home-purpose__grid,
  .bcsg-about-direction__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .bcsg-home-hero__actions {
    display: grid;
  }
  .bcsg-home-hero__actions .bcsg-btn {
    width: 100%;
  }
  .bcsg-home-booking {
    border-radius: 22px;
  }
  .bcsg-home-booking__head {
    padding: 18px;
  }
  .bcsg-home-booking__head h2 {
    font-size: 22px;
  }
  .bcsg-home-proof__grid {
    grid-template-columns: 1fr;
  }
  .bcsg-home-proof__grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .bcsg-home-proof__grid > div:last-child {
    border-bottom: 0;
  }
  .bcsg-purpose-card,
  .bcsg-about-direction__card {
    padding: 28px 24px;
  }
}
