:root {
  --ad-teal: #0f6464;
  --ad-teal-deep: #0b5555;
  --ad-cyan: #27bdbe;
  --ad-yellow: #d5c015;
  --ad-yellow-bright: #dfcd08;
  --ad-light: #f5f5f5;
  --ad-hero-grey: #d9d9d9;
  --ad-border: #d9d9d9;
  --ad-muted: #777;
  --ad-black: #111;
  --ad-white: #fff;
  --ad-radius: 6px;
  --ad-max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ad-black);
  background: var(--ad-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body, button, a { -webkit-tap-highlight-color: transparent; }
button, input, textarea, select { font-family: "Manrope", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3, strong, .ad-btn, .ad-main-nav a { font-family: "Manrope", Arial, sans-serif; }
h1, h2, h3, p { margin-top: 0; }
svg { display: block; }
.ad-svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ad-container { width: min(calc(100% - 48px), var(--ad-max)); margin-inline: auto; }
.ad-section { padding: 86px 0; }
.ad-section-heading { max-width: 690px; margin: 0 auto 46px; text-align: center; }
.ad-section-heading h2 {
  margin-bottom: 13px;
  color: var(--ad-teal);
  font-size: clamp(28px, 2.35vw, 34px);
  line-height: 1.2;
  font-weight: 700;
}
.ad-section-heading p { margin: 0; font-size: 16px; line-height: 1.55; }
.ad-media-placeholder {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(15,100,100,.12) 50%, transparent 50.5%),
    linear-gradient(45deg, transparent 49.5%, rgba(15,100,100,.08) 50%, transparent 50.5%),
    linear-gradient(135deg, #ececec, #d4dddd);
  background-size: 42px 42px, 42px 42px, 100% 100%;
}
.ad-media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(15,100,100,.08);
}

/* Header */
.ad-site-header { background: #fff; position: relative; z-index: 30; }
.ad-header-inner {
  width: min(calc(100% - 80px), 1320px);
  height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 295px 1fr auto;
  align-items: center;
  gap: 30px;
}
.ad-brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; color: var(--ad-cyan); }
.ad-brand-mark { position: relative; width: 38px; height: 38px; flex: 0 0 38px; }
.ad-brand-mark i { position: absolute; left: 17px; top: 2px; width: 4px; height: 34px; background: var(--ad-cyan); border-radius: 3px; transform-origin: 2px 17px; }
.ad-brand-mark i:nth-child(2) { transform: rotate(60deg); }
.ad-brand-mark i:nth-child(3) { transform: rotate(120deg); background: var(--ad-yellow); }
.ad-brand-mark i:nth-child(4) { width: 9px; height: 9px; left: 14px; top: 14px; border-radius: 50%; background: #fff; border: 2px solid var(--ad-cyan); }
.ad-brand-copy { display: flex; flex-direction: column; line-height: 1; }
.ad-brand-copy strong { font-size: 20px; font-weight: 700; white-space: nowrap; }
.ad-brand-copy small { margin-top: 3px; font-size: 10px; font-weight: 700; }
.ad-main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 48px); }
.ad-main-nav a { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; white-space: nowrap; }
.ad-main-nav a span { color: var(--ad-cyan); font-size: 15px; }
.ad-header-badges { display: flex; align-items: center; gap: 16px; }
.ad-header-badges span { display: grid; grid-template-columns: 25px 1fr; align-items: center; font-size: 10px; line-height: 1.12; }
.ad-header-badges span + span { padding-left: 16px; border-left: 1px solid #aaa; }
.ad-header-badges svg { width: 23px; height: 23px; stroke: #888; fill: none; stroke-width: 1.6; }
.ad-menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.ad-menu-toggle svg { width: 25px; height: 25px; fill: none; stroke: #111; stroke-width: 2; }
.ad-breadcrumb { padding: 10px 0 14px; display: flex; gap: 5px; align-items: center; font-size: 12px; color: #777; }
.ad-breadcrumb a { color: #111; font-weight: 600; }

/* Buttons */
.ad-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border: 2px solid #111;
}
.ad-btn svg, .ad-btn-icon { width: 24px; height: 24px; flex: 0 0 24px; object-fit: contain; }
.ad-btn-yellow { background: var(--ad-yellow-bright); }
.ad-btn-phone { background: #fff; }
.ad-btn-phone svg, .ad-phone-icon { width: 22px; height: 22px; flex: 0 0 22px; object-fit: contain; }
.ad-btn:hover { filter: brightness(.98); transform: translateY(-1px); }

/* Hero */
.ad-hero { padding: 0 0 38px; }
.ad-hero-shell {
  min-height: 558px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ad-hero-grey);
  border-radius: 5px;
  overflow: hidden;
}
.ad-hero-copy { position: relative; padding: 54px 44px 42px; overflow: hidden; }
.ad-hero-copy::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 373px;
  height: 345px;
  opacity: 1;
  background: url("../../images/abu-dhabi-stopover-tour/hero-copy-pattern.webp") center / contain no-repeat;
  pointer-events: none;
}
.ad-hero-copy > * { position: relative; z-index: 1; }
.ad-hero-eyebrow {
  margin-bottom: 10px;
  color: var(--ad-teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ad-hero h1 {
  margin-bottom: 22px;
  color: var(--ad-teal);
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 800;
  text-transform: none;
}
.ad-hero-copy > p { max-width: 520px; margin-bottom: 23px; font-weight: 600; line-height: 1.52; }
.ad-check-list { list-style: none; padding: 0; margin: 0; }
.ad-check-list li { display: flex; align-items: flex-start; gap: 8px; font-weight: 600; line-height: 1.42; }
.ad-check-list li + li { margin-top: 4px; }
.ad-check-list svg, .ad-check-icon { width: 16px; height: 16px; flex: 0 0 16px; margin-top: 3px; object-fit: contain; }
.ad-hero-actions { display: flex; gap: 17px; margin-top: 38px; }
.ad-hero-media {
  position: relative;
  min-height: 558px;
  display: flex;
  align-items: flex-end;
     justify-content: flex-start;
  padding: 0 22px 33px;
  overflow: hidden;
}
.ad-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ad-hero-media > *:not(.ad-hero-image) { position: relative; z-index: 2; }
.ad-hero-stats {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
}
.ad-hero-stats span {
  min-width: 92px;
  padding: 8px 10px;
  border-radius: 5px;
  background: rgba(255,255,255,.76);
  font-size: 10px;
  line-height: 1.15;
}
.ad-hero-stats strong { display: block; font-size: 13px; }
.ad-rating-row { position: relative; z-index: 2; display: flex; gap: 10px; align-items: center; }
.ad-rating { display: grid; grid-template-columns: 30px auto auto auto; align-items: center; gap: 6px; min-height: 52px; padding: 7px 10px; background: rgba(255,255,255,.72); border-radius: 6px; font-size: 12px; line-height: 1.08; }
.ad-rating-logo { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #fff; font-weight: 800; }
.ad-rating-logo img { width: 16px; height: 16px; object-fit: contain; }
.ad-rating-google .ad-rating-logo { color: #4285f4; }
.ad-rating-trip .ad-rating-logo { color: #111; background: #15d8a4; }
.ad-rating strong { align-self: start; padding-top: 2px; }
.ad-rating-dots { grid-column: 2 / 4; margin-top: -15px; color: #11d9a5; letter-spacing: 1px; }
.ad-rating-stars { color: #f9c400; }
.ad-rating b { font-family: "Manrope"; font-size: 12px; font-weight: 600; }
.ad-rating b small { font-family: "Manrope"; font-size: 10px; font-weight: 600; }

/* Reviews */
.ad-reviews { padding: 0 0 98px; }
.ad-review-viewport { overflow: hidden; }
.ad-review-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; transition: transform .3s ease; }
.ad-review-card { min-height: 164px; display: grid; grid-template-columns: 62px 1fr; gap: 16px; padding: 22px 18px; border: 1px solid #cacaca; border-radius: 6px; background: #fff; }
.ad-avatar { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; }
.ad-review-head { display: grid; grid-template-columns: auto 1fr auto 16px; align-items: center; gap: 7px; margin-bottom: 9px; }
.ad-review-head strong { font-size: 15px; }
.ad-review-head time { color: #888; font-size: 12px; white-space: nowrap; }
.ad-review-head i { color: #00c790; font-style: normal; font-size: 10px; }
.ad-review-dots { color: #00d59d; font-size: 14px; letter-spacing: 1px; white-space: nowrap; }
.ad-review-card p { margin: 0; font-size: 13px; line-height: 1.4; }
.ad-review-controls { margin-top: 38px; display: flex; justify-content: center; align-items: center; gap: 34px; }
.ad-review-arrow { width: 38px; height: 38px; display: grid; place-items: center; border: 0; background: transparent; color: var(--ad-teal); line-height: 1; cursor: pointer; padding: 0; }
.ad-review-arrow img { width: 23px; height: 21px; object-fit: contain; }
.ad-review-count { min-width: 70px; padding: 8px 16px; border-radius: 30px; background: #f5f5f5; text-align: center; color: #777; font-weight: 700; }
.ad-review-all { width: max-content; margin: 16px auto 0; display: block; padding: 9px 22px; border: 2px solid #075be6; color: #075be6; border-radius: 30px; font-family: "Manrope"; font-weight: 600; font-size: 13px; }

/* Tour cards */
.ad-tours-section { padding-top: 68px; }
.ad-tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.ad-tour-card { overflow: hidden; background: var(--ad-light); border-radius: 4px; }
.ad-tour-media { height: 245px; }
.ad-tour-num, .ad-tour-tag { position: absolute; z-index: 2; top: 16px; }
.ad-tour-num { left: 16px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 4px; background: rgba(255,255,255,.9); color: #777; font-family: "Manrope"; font-size: 18px; font-weight: 700; }
.ad-tour-tag { right: 16px; padding: 7px 13px; border-radius: 20px; background: var(--ad-teal); color: #fff; font-family: "Manrope"; font-size: 12px; font-weight: 600; }
.ad-tour-body { padding: 18px 17px 20px; }
.ad-tour-body h3 { min-height: 56px; margin-bottom: 0; font-size: 24px; line-height: 1.2; font-weight: 700; }
.ad-tour-meta { display: flex; align-items: center; gap: 5px; padding: 10px 0; border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; font-family: "Manrope"; font-size: 14px; font-weight: 700;    margin: 6px 0px; }
.ad-tour-meta svg { width: 16px; height: 16px; fill: none; stroke: var(--ad-teal); stroke-width: 2.2; }
.ad-tour-bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; padding-top: 10px; }
.ad-tour-bottom > div { display: flex; flex-direction: column; line-height: 1; }
.ad-tour-bottom span { font-size: 12px; }
.ad-tour-bottom strong { font-size: 21px; }
.ad-btn-book { min-width: 150px; min-height: 58px; padding-inline: 18px; }

/* Layover vs stopover */
/* Layover and stopover cards */
.ad-type-section {
  padding-top: 78px;
  padding-bottom: 90px;
}

.ad-type-section .ad-section-heading {
  max-width: 700px;
  margin-bottom: 78px;
}

.ad-type-section .ad-section-heading h2 {
  margin-bottom: 28px;
}

.ad-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ad-type-card {
  position: relative;
  min-height: 342px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ad-teal);
}

.ad-type-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(7, 105, 105, 0.97) 0%,
    rgba(7, 105, 105, 0.94) 27%,
    rgba(7, 105, 105, 0.72) 45%,
    rgba(7, 105, 105, 0.15) 72%,
    rgba(7, 105, 105, 0) 100%
  );
}

.ad-type-content {
  position: relative;
  z-index: 2;
  width: 49%;
  padding: 83px 0 30px 29px;
  color: var(--ad-white);
}

.ad-type-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  margin-bottom: 18px;
  padding: 5px 15px;
  border-radius: 30px;
  background: var(--ad-yellow-bright);
  color: var(--ad-teal);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.ad-type-content h3 {
  margin-bottom: 14px;
  color: var(--ad-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.ad-type-content p {
  margin: 0;
  color: var(--ad-white);
  font-size: 14px;
  line-height: 1.58;
  font-weight: 400;
}

/* Itinerary */
.ad-itinerary { padding-top: 88px; }
.ad-itin-tabs { width: max-content; margin: 0 auto 30px; display: flex; padding: 3px; background: #f1f1f1; border-radius: 28px; }
.ad-itin-tab { min-width: 135px; border: 0; border-radius: 25px; padding: 10px 18px; background: transparent; color: #888; font-family: "Manrope"; font-size: 13px; font-weight: 600; cursor: pointer; }
.ad-itin-tab.is-active { background: var(--ad-teal); color: #fff; }
.ad-duration-tabs { max-width: 850px; margin: 0 auto 44px; display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid #ccc; }
.ad-duration-tab { position: relative; min-height: 48px; border: 0; border-left: 1px solid #ddd; background: #f5f5f5; text-align: left; padding: 10px 15px; font-family: "Manrope"; font-size: 12px; font-weight: 600; cursor: pointer; }
.ad-duration-tab:first-child { border-left: 0; }
.ad-duration-tab::after { content: "↗"; position: absolute; right: 8px; top: 5px; color: var(--ad-yellow); }
.ad-duration-tab.is-active { color: var(--ad-cyan); background: #fff; }
.ad-duration-tab.is-active::before { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 3px; background: var(--ad-cyan); }
.ad-timeline { max-width: 850px; margin: 0 auto; position: relative; }
.ad-timeline::before { content: ""; position: absolute; top: 18px; bottom: 18px; left: 37px; border-left: 2px dashed #d6d6d6; }
.ad-itin-step { position: relative; display: grid; grid-template-columns: 74px 1fr; gap: 15px; margin-bottom: 27px; }
.ad-itin-icon { width: 74px; display: grid; place-items: center; position: relative; z-index: 1; }
.ad-itin-icon svg { width: 32px; height: 32px; fill: none; stroke: var(--ad-cyan); stroke-width: 1.8; background: #fff; }
.ad-itin-card { min-height: 105px; padding: 18px 20px; border: 1px solid #d5d5d5; border-radius: 8px; background: #fff; }
.ad-itin-card .ad-itin-time { margin-bottom: 3px; color: var(--ad-teal); font-family: "Manrope"; font-size: 13px; font-weight: 700; }
.ad-itin-card h3 { margin-bottom: 9px; padding-bottom: 8px; border-bottom: 1px solid #ddd; font-size: 15px; }
.ad-itin-card p { margin: 0; color: #777; font-size: 13px; }
.ad-hotel-badge { margin-left: 7px; padding: 3px 8px; border-radius: 15px; background: var(--ad-teal); color: #fff; font-size: 10px; }
.ad-itin-summary { max-width: 850px; margin: -2px auto 0; padding: 13px 17px; border-left: 4px solid var(--ad-teal); background: #ddf0f0; font-size: 13px; }

/* Features */
.ad-feature-section { padding-top: 42px; }
.ad-feature-card { display: grid; grid-template-columns: 46% 54%; align-items: center; min-height: 420px; margin-bottom: 95px; padding: 40px; background: var(--ad-light); border-radius: 4px; }
.ad-feature-card:last-child { margin-bottom: 0; }
.ad-feature-media { height: 340px; border-radius: 4px; }
.ad-feature-copy { padding: 20px 0 20px 38px; }
.ad-feature-copy h2 { margin-bottom: 18px; color: var(--ad-teal); font-size: 25px; line-height: 1.2; }
.ad-feature-copy p { margin-bottom: 15px; font-size: 16px; line-height: 1.6; }
.ad-feature-copy ul { margin: 0; padding-left: 22px; }
.ad-feature-copy li { margin-bottom: 7px; font-size: 13px; }

/* Hotels */
.ad-hotels { padding-top: 74px; }
.ad-hotel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.ad-hotel-card { overflow: hidden; background: var(--ad-light); border-radius: 3px; }
.ad-hotel-media { height: 220px; }
.ad-hotel-copy { padding: 16px 17px 14px; }
.ad-hotel-copy h3 { margin-bottom: 11px; padding-bottom: 10px; border-bottom: 1px solid #ccc; font-size: 20px; line-height: 1.15; }
.ad-hotel-copy > div { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.ad-hotel-copy span { display: flex; align-items: center; gap: 5px; color: #777; font-size: 12px; font-weight: 600; }
.ad-hotel-copy svg { width: 15px; height: 15px; fill: none; stroke: var(--ad-teal); stroke-width: 2.3; }
.ad-hotel-copy b { color: #f2ae00; letter-spacing: 1px; font-size: 17px; white-space: nowrap; }

/* Guides and custom icons */
.ad-guide-section { padding-bottom: 72px; }
.ad-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; text-align: center; }
.ad-guide-grid article { padding: 0 24px; }
.ad-line-icon { width: 62px; height: 62px; margin: 0 auto 12px; display: grid; place-items: center; color: var(--ad-cyan); }
.ad-line-icon svg { width: 56px; height: 56px; fill: rgba(213,192,21,.32); stroke: var(--ad-cyan); stroke-width: 1.3; }
.ad-guide-grid h3 { margin-bottom: 8px; font-size: 15px; }
.ad-guide-grid p { margin: 0; font-size: 16px; line-height: 1.6; }
.ad-custom-section { padding-top: 62px; }
.ad-custom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px 90px; text-align: center; }
.ad-custom-grid h3 { margin: 0; font-size: 14px; line-height: 1.22; }

/* Who */
.ad-who-section { padding-top: 92px; }
.ad-who-card { display: grid; grid-template-columns: 46% 54%; align-items: center; padding: 40px; background: var(--ad-light); border-radius: 4px; }
.ad-who-media { height: 340px; border-radius: 4px; }
.ad-who-copy { padding-left: 36px; }
.ad-who-copy h2 { margin-bottom: 18px; color: var(--ad-teal); font-size: 25px; }
.ad-who-copy .ad-check-list li { font-size: 16px; }

/* Duration */
.ad-duration-section { padding-top: 95px; }
.ad-duration-grid { max-width: 720px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; text-align: center; }
.ad-duration-grid h3 { margin-bottom: 8px; font-size: 16px; }
.ad-duration-grid strong { display: block; margin-bottom: 7px; color: var(--ad-cyan); font-size: 30px; }
.ad-duration-grid p { margin: 0; font-size: 13px; }

/* FAQ */
.ad-faq-section { padding-top: 104px; }
.ad-faq-section .ad-section-heading { margin-bottom: 38px; }
.ad-faq-list { max-width: 850px; margin: 0 auto; }
.ad-faq-item { margin-bottom: 22px; border: 1px solid #ccc; border-radius: 7px; background: #fff; overflow: hidden; }
.ad-faq-question { width: 100%; min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 28px; border: 0; background: transparent; text-align: left; font-family: "Manrope"; font-size: 14px; font-weight: 700; cursor: pointer; }
.ad-faq-question b { font-size: 24px; line-height: 1; font-weight: 500; }
.ad-faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.ad-faq-answer > p { min-height: 0; overflow: hidden; margin: 0; padding: 0 28px; font-size: 16px; line-height: 1.6; }
.ad-faq-item.is-open { background: var(--ad-light); }
.ad-faq-item.is-open .ad-faq-answer { grid-template-rows: 1fr; }
.ad-faq-item.is-open .ad-faq-answer > p { padding-bottom: 20px; }

/* CTA */
.ad-cta-section { padding: 70px 0 100px; }
.ad-cta-card { min-height: 390px; display: grid; grid-template-columns: 47% 53%; overflow: hidden; border-radius: 5px; background: var(--ad-teal); }
.ad-cta-media { min-height: 390px; }
.ad-cta-copy { padding: 52px 48px; color: #fff; }
.ad-cta-copy h2 { margin-bottom: 17px; font-size: 39px; line-height: 1.12; }
.ad-cta-copy p { margin-bottom: 30px; color: var(--ad-yellow-bright); font-size: 16px; line-height: 1.45; }
.ad-cta-copy .ad-btn { color: #111; }

/* Footer */
.ad-site-footer { position: relative; margin-top: 35px; }
.ad-footer-skyline { height: 125px; background: linear-gradient(to top, #d9d9d9 0 46%, transparent 46%); position: relative; overflow: hidden; }
.ad-footer-skyline::after { content: ""; position: absolute; left: 50%; bottom: 0; width: min(100%, 950px); height: 98px; transform: translateX(-50%); background: linear-gradient(90deg, transparent 0 2%, #d9d9d9 2% 5%, transparent 5% 9%, #d9d9d9 9% 14%, transparent 14% 18%, #d9d9d9 18% 26%, transparent 26% 29%, #d9d9d9 29% 36%, transparent 36% 38%, #d9d9d9 38% 39%, transparent 39% 44%, #d9d9d9 44% 52%, transparent 52% 55%, #d9d9d9 55% 62%, transparent 62% 68%, #d9d9d9 68% 71%, transparent 71% 77%, #d9d9d9 77% 86%, transparent 86% 92%, #d9d9d9 92% 96%, transparent 96%); clip-path: polygon(0 100%,0 85%,4% 83%,4% 69%,8% 69%,8% 78%,13% 78%,13% 55%,15% 55%,15% 77%,21% 77%,21% 66%,24% 66%,24% 81%,28% 81%,28% 57%,31% 57%,31% 73%,36% 73%,36% 83%,43% 83%,43% 28%,44% 28%,44% 0,45% 28%,47% 28%,47% 78%,51% 78%,51% 59%,54% 59%,54% 81%,59% 81%,59% 63%,63% 63%,63% 84%,68% 84%,68% 55%,73% 55%,73% 80%,79% 80%,79% 64%,82% 64%,82% 77%,87% 77%,87% 48%,90% 48%,90% 78%,95% 78%,95% 67%,100% 67%,100% 100%); }
.ad-footer-main { background: #d9d9d9; padding: 45px 0 55px; }
.ad-footer-grid { display: grid; grid-template-columns: 41% 59%; gap: 54px; }
.ad-footer-brand { display: inline-flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.ad-footer-brand .ad-brand-mark { width: 76px; height: 76px; flex-basis: 76px; }
.ad-footer-brand .ad-brand-mark i { left: 35px; top: 5px; width: 7px; height: 66px; transform-origin: 3.5px 33px; background: #111; }
.ad-footer-brand .ad-brand-mark i:nth-child(3) { background: #111; }
.ad-footer-brand .ad-brand-mark i:nth-child(4) { width: 16px; height: 16px; left: 30px; top: 30px; border-color: #111; }
.ad-footer-brand strong { display: block; font-family: "Manrope"; font-size: 38px; line-height: .95; }
.ad-footer-brand small { display: block; font-family: "Manrope"; font-size: 16px; font-weight: 700; }
.ad-footer-about > p { max-width: 460px; font-size: 12px; line-height: 1.45; }
.ad-footer-map { width: 420px; max-width: 100%; height: 200px; margin: 24px 0 16px; background-color: transparent; }
.ad-footer-about address { display: flex; align-items: flex-start; gap: 10px; font-style: normal; font-size: 12px; font-weight: 700; }
.ad-footer-about address svg { width: 24px; height: 24px; fill: none; stroke: #111; stroke-width: 2; }
.ad-footer-links { display: grid; grid-template-columns: repeat(3, 1fr); align-content: start; gap: 24px 56px; }
.ad-footer-links h3 { margin: 0 0 8px; padding-bottom: 8px; border-bottom: 1px solid #777; font-size: 14px; }
.ad-footer-links a { display: block; margin: 0 0 12px; font-size: 12px; }
.ad-footer-wide { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid #777; }
.ad-footer-wide h3 { border: 0; padding: 0; }
.ad-logo-placeholders, .ad-payment-placeholders { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.ad-logo-placeholders span, .ad-payment-placeholders span { display: block; height: 48px; border-radius: 3px; background: rgba(17,17,17,.14); }
.ad-logo-placeholders span:nth-child(1) { width: 145px; }
.ad-logo-placeholders span:nth-child(2) { width: 100px; }
.ad-logo-placeholders span:nth-child(3) { width: 180px; }
.ad-logo-placeholders span:nth-child(4) { width: 175px; }
.ad-logo-placeholders span:nth-child(5) { width: 160px; }
.ad-payment-placeholders span { width: 82px; height: 38px; }
.ad-footer-bottom { background: var(--ad-cyan); color: #fff; }
.ad-footer-bottom .ad-container { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ad-footer-bottom p { margin: 0; font-size: 12px; }
.ad-socials { display: flex; gap: 14px; }
.ad-socials span { width: 24px; height: 24px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; font-size: 10px; font-weight: 700; }

@media (max-width: 1050px) {
  .ad-header-inner { grid-template-columns: auto 1fr auto; gap: 18px; width: min(calc(100% - 36px), 1320px); }
  .ad-main-nav { gap: 18px; }
  .ad-header-badges { display: none; }
  .ad-hero-copy { padding: 42px 32px 34px; }
  .ad-hero-actions { gap: 10px; }
  .ad-btn { padding-inline: 16px; gap: 10px; }
  .ad-tour-grid, .ad-hotel-grid { gap: 22px; }
  .ad-feature-card, .ad-who-card { padding: 30px; }
}

@media (max-width: 820px) {
  .ad-container { width: min(calc(100% - 40px), var(--ad-max)); }
  .ad-section { padding: 72px 0; }
  .ad-site-header { height: 65px; }
  .ad-header-inner { width: calc(100% - 40px); height: 65px; display: flex; justify-content: space-between; }
  .ad-brand-mark { width: 31px; height: 31px; flex-basis: 31px; }
  .ad-brand-mark i { left: 14px; top: 1px; width: 3px; height: 29px; transform-origin: 1.5px 14.5px; }
  .ad-brand-mark i:nth-child(4) { width: 7px; height: 7px; left: 12px; top: 12px; }
  .ad-brand-copy strong { font-size: 17px; }
  .ad-brand-copy small { font-size: 8px; }
  .ad-menu-toggle { display: block; margin-left: auto; }
  .ad-main-nav { position: absolute; top: 65px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 20px 20px; background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,.1); }
  .ad-main-nav.is-open { display: flex; }
  .ad-main-nav a { padding: 12px 4px; border-bottom: 1px solid #eee; }
  .ad-header-badges, .ad-breadcrumb { display: none; }

  .ad-hero { padding: 0; }
  .ad-hero-shell { width: calc(100% - 40px); grid-template-columns: 1fr; border-radius: 4px; }
  .ad-hero-copy { padding: 23px 15px 40px; text-align: center; }
  .ad-hero-eyebrow { font-size: 10px; }
  .ad-hero h1 { margin-bottom: 22px; font-size: 34px; line-height: 1.18; }
  .ad-hero-copy > p { margin-bottom: 18px; text-align: left; font-size: 13px; line-height: 1.45; }
  .ad-hero-copy .ad-check-list { text-align: left; }
  .ad-hero-copy .ad-check-list li { font-size: 13px; }
  .ad-hero-actions { margin-top: 24px; gap: 9px; justify-content: center; }
  .ad-hero-actions .ad-btn { min-height: 54px; padding: 10px 13px; font-size: 12px; gap: 8px; }
  .ad-hero-actions .ad-btn-yellow { flex: 1 1 48%; }
  .ad-hero-actions .ad-btn-phone { flex: 1 1 48%; }
  .ad-hero-media { min-height: 385px; padding: 0 12px 17px; }
  .ad-hero-stats {left: 50%;translate:-50%;}
  .ad-hero-stats span { min-width: 80px; padding: 6px 8px; }
  .ad-rating-row { flex-direction: column; align-items: center; gap: 8px; }
  .ad-rating { min-height: 46px; }

  .ad-reviews { padding: 42px 0 78px; }
  .ad-review-track { display: flex; gap: 20px; }
  .ad-review-card { min-width: 100%; min-height: 177px; padding: 20px; grid-template-columns: 62px 1fr; }
  .ad-review-head { grid-template-columns: 1fr auto; align-items: start; }
  .ad-review-head .ad-review-dots { grid-column: 1; }
  .ad-review-head time { grid-column: 2; grid-row: 2; }
  .ad-review-head i { display: none; }
  .ad-review-controls { margin-top: 30px; }

  .ad-section-heading { margin-bottom: 38px; }
  .ad-section-heading h2 { font-size: 27px; }
  .ad-section-heading p { font-size: 13px; }
  .ad-tour-grid { grid-template-columns: 1fr; gap: 36px; }
  .ad-tour-card { width: 100%; }
  .ad-tour-media { height: 275px; }
  .ad-tour-body { padding: 22px 18px 23px; }
  .ad-tour-body h3 { min-height: 0; margin-bottom: 17px; font-size: 20px; }
  .ad-tour-meta { font-size: 12px; }
  .ad-btn-book { min-width: 160px; }

  .ad-type-section {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .ad-type-section .ad-section-heading {
    margin-bottom: 38px;
  }

  .ad-desktop-break {
    display: none;
  }

  .ad-type-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ad-type-card {
    min-height: 330px;
    border-radius: 16px;
  }

  .ad-type-content {
    width: 55%;
    padding: 72px 0 25px 20px;
  }

  .ad-type-content span {
    font-size: 12px;
  }

  .ad-type-content h3 {
    font-size: 18px;
  }

  .ad-type-content p {
    font-size: 12px;
    line-height: 1.55;
  }

  .ad-itin-tabs { margin-bottom: 17px; }
  .ad-itin-tab { min-width: 110px; font-size: 11px; }
  .ad-duration-tabs { display: flex; overflow-x: auto; margin-bottom: 30px; scrollbar-width: none; }
  .ad-duration-tabs::-webkit-scrollbar { display: none; }
  .ad-duration-tab { min-width: 108px; flex: 0 0 108px; }
  .ad-timeline::before { left: 22px; }
  .ad-itin-step { grid-template-columns: 44px 1fr; gap: 10px; margin-bottom: 18px; }
  .ad-itin-icon { width: 44px; }
  .ad-itin-icon svg { width: 25px; height: 25px; }
  .ad-itin-card { min-height: 92px; padding: 14px 13px; }
  .ad-itin-card .ad-itin-time { font-size: 11px; }
  .ad-itin-card h3 { font-size: 12px; }
  .ad-itin-card p { font-size: 11px; }
  .ad-itin-summary { font-size: 11px; }

  .ad-feature-card { grid-template-columns: 1fr; padding: 14px; margin-bottom: 45px; }
  .ad-feature-media { height: 245px; }
  .ad-feature-copy { padding: 20px 7px 12px; }
  .ad-feature-copy h2 { font-size: 22px; }
  .ad-feature-copy p, .ad-feature-copy li { font-size: 12px; }

  .ad-hotel-grid { grid-template-columns: 1fr; gap: 26px; }
  .ad-hotel-media { height: 230px; }
  .ad-guide-grid { grid-template-columns: 1fr; gap: 40px; }
  .ad-guide-grid article { padding-inline: 20px; }
  .ad-custom-grid { grid-template-columns: 1fr 1fr; gap: 42px 25px; }

  .ad-who-card { grid-template-columns: 1fr; padding: 14px; }
  .ad-who-media { height: 260px; }
  .ad-who-copy { padding: 23px 8px 12px; }
  .ad-who-copy h2 { font-size: 23px; }
  .ad-who-copy .ad-check-list li { font-size: 12px; }

  .ad-duration-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .ad-duration-grid strong { font-size: 22px; }
  .ad-duration-grid p { font-size: 11px; }

  .ad-faq-item { margin-bottom: 9px; }
  .ad-faq-question { min-height: 53px; padding: 12px 13px; font-size: 11px; }
  .ad-faq-answer > p { padding-inline: 13px; font-size: 11px; }

  .ad-cta-card { grid-template-columns: 1fr; }
  .ad-cta-media { min-height: 260px; }
  .ad-cta-copy { padding: 29px 20px 31px; }
  .ad-cta-copy h2 { font-size: 30px; }
  .ad-cta-copy p { font-size: 13px; }

  .ad-footer-skyline { height: 90px; }
  .ad-footer-main { padding-top: 38px; }
  .ad-footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .ad-footer-about { text-align: center; }
  .ad-footer-brand { justify-content: center; }
  .ad-footer-about > p { margin-inline: auto; }
  .ad-footer-map { margin-inline: auto; }
  .ad-footer-about address { justify-content: center; }
  .ad-footer-links { grid-template-columns: 1fr 1fr; gap: 25px; }
  .ad-footer-wide { grid-column: 1 / -1; }
  .ad-logo-placeholders, .ad-payment-placeholders { gap: 12px; }
  .ad-logo-placeholders span { width: 110px !important; height: 35px; }
  .ad-payment-placeholders span { width: 65px; height: 30px; }
  .ad-footer-bottom .ad-container { flex-direction: column; justify-content: center; padding: 12px 0; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .ad-container { width: calc(100% - 40px); }
  .ad-section { padding: 66px 0; }
  .ad-hero h1 { font-size: 33px; }
  .ad-hero-actions .ad-btn { min-width: 0; }
  .ad-rating { grid-template-columns: 28px auto auto auto; }
  .ad-review-card { grid-template-columns: 60px 1fr; gap: 12px; }
  .ad-review-card p { font-size: 12px; }
  .ad-tour-media { height: 265px; }
  .ad-tour-num { width: 41px; height: 41px; }
  .ad-tour-tag { top: 17px; right: 17px; }
  .ad-tour-bottom strong { font-size: 22px; }
  .ad-btn-book { min-width: 160px; }
  .ad-type-card {
    min-height: 320px;
  }

  .ad-type-content {
    width: 58%;
    padding-top: 62px;
    padding-left: 18px;
  }

  .ad-type-content span {
    padding-inline: 13px;
  }
  .ad-feature-media { height: 235px; }
  .ad-hotel-copy h3 { font-size: 18px; }
  .ad-duration-grid { gap: 10px; }
  .ad-duration-grid strong { font-size: 20px; }
  .ad-footer-brand strong { font-size: 31px; }
  .ad-footer-brand .ad-brand-mark { width: 64px; height: 64px; flex-basis: 64px; }
  .ad-footer-brand .ad-brand-mark i { left: 29px; top: 4px; height: 56px; transform-origin: 3.5px 28px; }
  .ad-footer-brand .ad-brand-mark i:nth-child(4) { left: 24px; top: 25px; }
}

@media (min-width: 820px) {
	.ad-review-controls {
		display: none;
	}
}

.ad-tour-media {
  position: relative;
  height: 232px;
  overflow: hidden;
}

.ad-tour-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-tour-num,
.ad-tour-tag {
  position: absolute;
  z-index: 3;
  top: 16px;
}

.ad-tour-num {
  left: 16px;
}

.ad-tour-tag {
  right: 16px;
}

 #itinerary .ad-duration-tab::after {
      content: none;
    }

    #itinerary .ad-duration-tab {
      padding-right: 30px;
    }

    #itinerary .ad-duration-arrow {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 11px;
      height: 11px;
      object-fit: contain;
    }

    #itinerary .ad-duration-arrow-active {
      display: none;
    }

    #itinerary .ad-duration-tab.is-active .ad-duration-arrow-inactive {
      display: none;
    }

    #itinerary .ad-duration-tab.is-active .ad-duration-arrow-active {
      display: block;
    }

    #itinerary .ad-itin-icon img {
      display: block;
      width: 50px;
      height: 50px;
      object-fit: contain;
    }

    @media (max-width: 820px) {
      #itinerary .ad-itin-icon img {
        width: 40px;
        height: 40px;
      }
    }
.ad-feature-media,
.ad-hotel-media {
  overflow: hidden;
}

.ad-feature-media > img,
.ad-hotel-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-hotel-clock {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.ad-hotel-rating {
  display: block;
  width: 96px;
  height: 16px;
  object-fit: contain;
}
.ad-guide-grid .ad-line-icon,
.ad-custom-grid .ad-line-icon {
  width: 80px;
  height: 62px;
}

.ad-line-icon img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.ad-who-media {
  overflow: hidden;
  aspect-ratio: 450 / 350;
  height: auto;
}

.ad-who-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* FAQ supplied plus and minus icons */
.ad-faq-question .ad-faq-icon {
  width: 28px;
  height: 20px;
  flex: 0 0 28px;
  display: block;
  font-size: 0;
  background:
    url("../../images/abu-dhabi-stopover-tour/faq-plus.webp")
    center / 17px 17px no-repeat;
}

.ad-faq-item.is-open .ad-faq-question .ad-faq-icon {
  background:
    url("../../images/abu-dhabi-stopover-tour/faq-minus.webp")
    center / 20px 3px no-repeat;
}

/* CTA supplied image */
.ad-cta-media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
}

.ad-cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.ad-cta-copy .ad-btn-icon {
  width: 21px;
  height: 22px;
  flex: 0 0 21px;
  object-fit: contain;
}

@media (max-width: 820px) {
  .ad-cta-media,
  .ad-cta-media img {
    min-height: 260px;
  }
}
/* Review card alignment */
.ad-review-card {
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: start;
}

.ad-review-content {
  min-width: 0;
}

.ad-review-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  white-space: nowrap;
}

.ad-review-head strong {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 15px;
  line-height: 1.3;
}

.ad-review-head time {
  flex: 0 0 auto;
  color: #888;
  font-size: 12px;
}

.ad-review-dots {
  flex: 0 0 auto;
  color: #00cf98;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1px;
}

.ad-review-source {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  object-fit: contain;
}

.ad-review-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

/* Who section supplied checklist icons */
.ad-who-copy .ad-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.ad-who-check-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
  object-fit: contain;
}

.ad-who-copy .ad-check-list li span {
  display: block;
  min-width: 0;
}

@media (max-width: 1050px) and (min-width: 821px) {
  .ad-review-head {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .ad-review-head strong {
    flex-basis: 100%;
  }
}

@media (max-width: 820px) {
  .ad-review-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 5px 7px;
    white-space: normal;
  }

  .ad-review-head strong {
    grid-column: 1 / -1;
  }

  .ad-review-dots {
    grid-column: 1;
  }

  .ad-review-head time {
    grid-column: 2;
  }

  .ad-review-source {
    grid-column: 3;
  }
}