/**
 * Desktop home — exact mockup clone (≥768px).
 * Assets: /public/uploads/home-desktop/
 */
.d-only { display: none !important; }
.d-only-flex { display: none !important; }
.d-only-grid { display: none !important; }

@media (min-width: 768px) {
  :root {
    --d-navy: #0f172a;
    --d-blue: #1a478a;
    --d-orange: #f97316;
    --d-ink: #0f172a;
    --d-muted: #64748b;
    --d-line: #e2e8f0;
    --d-soft: #f8fafc;
    --d-green: #16a34a;
  }

  .d-only { display: block !important; }
  .d-only-flex { display: flex !important; }
  .d-only-grid { display: grid !important; }

  body.d-home-app { background: #fff; color: var(--d-ink); }

  /* —— Dark utility bar —— */
  body.d-home-app .utility {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 1.5rem;
    background: var(--d-navy) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 0 !important;
    font-size: 0.75rem;
  }
  body.d-home-app .utility a,
  body.d-home-app .utility button {
    color: rgba(255, 255, 255, 0.92) !important;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
  }
  body.d-home-app .utility__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
    align-items: center;
  }
  body.d-home-app .utility__trust span::before {
    content: "✓ ";
    color: #4ade80;
    font-weight: 700;
  }
  body.d-home-app .utility__right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
  }
  body.d-home-app .utility__sep { opacity: 0.35; }

  /* —— Header —— */
  body.d-home-app .site-header {
    background: #fff;
    border-bottom: 1px solid var(--d-line);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  }
  body.d-home-app .site-header__inner {
    max-width: 1280px;
    min-height: 4.4rem;
    gap: 0.75rem 1rem;
  }
  body.d-home-app .nav-main {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.05rem;
  }
  body.d-home-app .nav-main a {
    color: var(--d-navy);
    font-size: 0.8rem;
    font-weight: 650;
    padding: 0.42rem 0.5rem;
    border-radius: 8px;
    white-space: nowrap;
  }
  body.d-home-app .nav-main a[data-nav="home"],
  body.d-home-app .nav-main a[aria-current="page"] {
    color: var(--d-orange);
  }
  body.d-home-app .nav-main a:hover {
    background: var(--d-soft);
    text-decoration: none;
  }
  body.d-home-app .header-actions {
    gap: 0.65rem;
    align-items: center;
  }
  body.d-home-app .header-phone-block {
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
    text-decoration: none;
    margin-right: 0.15rem;
  }
  body.d-home-app .header-phone-block strong {
    color: var(--d-navy);
    font-size: 0.92rem;
    font-weight: 800;
  }
  body.d-home-app .header-phone-block small {
    color: var(--d-muted);
    font-size: 0.68rem;
    font-weight: 600;
  }
  body.d-home-app .header-phone-block:hover strong {
    color: var(--d-orange);
  }
  body.d-home-app .btn-signin { display: none !important; }
  body.d-home-app .m-header-search {
    display: inline-flex !important;
    width: 2.35rem;
    height: 2.35rem;
    align-items: center;
    justify-content: center;
    color: var(--d-navy);
    font-size: 1.05rem;
  }

  /* —— Hero —— */
  body.d-home-app .hero {
    min-height: min(72vh, 620px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 4rem 1.5rem 4.75rem;
  }
  body.d-home-app .home-banner-host--hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 0 !important;
  }
  body.d-home-app .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.25) 0%,
      rgba(15, 23, 42, 0.45) 40%,
      rgba(15, 23, 42, 0.72) 100%
    );
  }
  body.d-home-app .hero__inner {
    align-items: center !important;
    align-self: center !important;
    text-align: center;
    width: 100% !important;
    max-width: 1100px;
    margin-left: auto !important;
    margin-right: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
  body.d-home-app .hero__title-desktop {
    display: block !important;
    max-width: none;
    font-size: clamp(2.35rem, 4.2vw, 3.35rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    min-height: 0;
    margin: 0 0 0.65rem;
  }
  body.d-home-app .hero__title-mobile,
  body.d-home-app .hero__cta { display: none !important; }
  body.d-home-app .hero__subtitle {
    display: block !important;
    margin: 0 0 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    font-weight: 550;
    text-align: center;
  }
  body.d-home-app .hero-trust {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.5rem;
    margin: 0 0 1.75rem;
  }
  body.d-home-app .hero-trust__item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 650;
  }
  body.d-home-app .hero-trust__icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    font-size: 0.72rem;
  }
  body.d-home-app .hero > .hero__inner > .search-card {
    display: block !important;
    width: 100% !important;
    max-width: 64rem;
    margin: 0 auto !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    border-radius: 18px;
    padding: 0;
    min-height: 0;
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.32);
  }
  body.d-home-app .search-tabs {
    background: #f8fafc;
  }
  body.d-home-app .search-tabs button[aria-selected="true"] {
    color: var(--d-orange) !important;
    border-bottom-color: var(--d-orange) !important;
  }
  body.d-home-app .btn-search {
    background: var(--d-orange) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.38) !important;
    border-radius: 12px !important;
    padding: 0.9rem 1.5rem !important;
    font-weight: 750 !important;
  }

  /* —— Shared section chrome —— */
  .d-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  .d-sec {
    padding: 3.25rem 0 0.35rem;
  }
  .d-sec__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
  }
  .d-sec__head h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    color: var(--d-navy);
  }
  .d-sec__more {
    color: var(--d-blue);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
  }
  .d-sec__more:hover { text-decoration: underline; }

  /* —— Category image cards —— */
  .d-cats {
    padding-top: 2.75rem;
  }
  .d-cats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
  @media (min-width: 1100px) {
    .d-cats__grid { grid-template-columns: repeat(6, 1fr); }
  }
  .d-cat {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    background: #1e293b center / cover no-repeat;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
  }
  .d-cat::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(15, 23, 42, 0.82));
  }
  .d-cat__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0.95rem 0.8rem;
    color: #fff;
  }
  .d-cat__label strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
  }
  .d-cat__label span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.9;
    line-height: 1.3;
  }
  .d-cat:hover {
    text-decoration: none;
    transform: translateY(-2px);
    filter: brightness(1.04);
  }

  /* —— Popular rails —— */
  body.d-home-app .home-below-search {
    padding: 2.5rem 0 0.5rem;
    background: var(--d-soft);
  }
  body.d-home-app .home-below-search .home-section {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  body.d-home-app .home-section__title,
  body.d-home-app #you-might-like-heading {
    color: var(--d-navy) !important;
    font-weight: 800 !important;
  }
  body.d-home-app .home-card__rating-badge {
    position: absolute;
    left: 0.65rem;
    top: 0.65rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--d-ink);
    font-size: 0.75rem;
    font-weight: 750;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }
  body.d-home-app .home-card__price,
  body.d-home-app .home-card__price strong {
    color: var(--d-orange) !important;
    font-weight: 800 !important;
  }

  /* —— Build day + Available today —— */
  .d-promo-split {
    padding: 2.75rem 0 0.5rem;
  }
  .d-promo-split__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 1.15rem;
  }
  .d-build {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 18rem;
    color: #fff;
    background: #0f172a center / cover no-repeat;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .d-build::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(26, 71, 138, 0.55) 100%);
  }
  .d-build > * { position: relative; z-index: 1; }
  .d-build h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.25;
    max-width: 18ch;
  }
  .d-build__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin: 0 0 1.15rem;
    padding: 0;
    list-style: none;
    font-size: 0.75rem;
    font-weight: 650;
  }
  .d-build__steps li {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
  }
  .d-build__steps i {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 0.68rem;
  }
  .d-build__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: var(--d-orange);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
  }
  .d-build__cta:hover { text-decoration: none; filter: brightness(1.05); }

  .d-today {
    border: 1px solid var(--d-line);
    border-radius: 20px;
    background: #fff;
    padding: 1.35rem 1.35rem 1.15rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  }
  .d-today__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .d-today__head h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--d-navy);
  }
  .d-today__browse {
    display: inline-block;
    margin-top: 0.25rem;
    color: var(--d-navy);
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
  }
  .d-today__browse:hover {
    color: var(--d-orange);
    text-decoration: underline;
  }
  .d-today__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    background: #dcfce7;
    color: var(--d-green);
    font-size: 0.72rem;
    font-weight: 750;
    flex-shrink: 0;
  }
  .d-today__loading {
    margin: 0;
    padding: 0.75rem 0.2rem;
    color: var(--d-muted);
    font-size: 0.88rem;
  }
  .d-today__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .d-today__item {
    display: grid;
    grid-template-columns: 3.5rem 1fr auto;
    gap: 0.75rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 0.45rem;
    border-radius: 12px;
  }
  .d-today__item:hover {
    background: var(--d-soft);
    text-decoration: none;
  }
  .d-today__thumb {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 10px;
    object-fit: cover;
    background: #e2e8f0;
  }
  .d-today__title {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 750;
    color: var(--d-navy);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .d-today__price {
    margin: 0.2rem 0 0;
    color: var(--d-orange);
    font-weight: 800;
    font-size: 0.85rem;
  }
  .d-today__avail {
    font-size: 0.7rem;
    font-weight: 750;
    color: var(--d-green);
    background: #dcfce7;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* —— Why book —— */
  body.d-home-app .why-book {
    background: #fff;
    padding: 3.25rem 1.5rem 1rem;
  }
  body.d-home-app .why-book::before { display: none; }
  body.d-home-app .why-book__inner { max-width: 1280px; }
  body.d-home-app .why-book__title {
    text-align: center;
    color: var(--d-navy);
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
  }
  body.d-home-app .why-book__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  body.d-home-app .why-book__item {
    border: 1px solid var(--d-line);
    border-radius: 14px;
    padding: 1.2rem 1.1rem;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  }
  body.d-home-app .why-book__icon { color: var(--d-blue); }
  body.d-home-app .why-book__item h3 { color: var(--d-navy); }

  /* —— Fleet (two-panel mockup) —— */
  .d-fleet {
    padding: 2.75rem 0 0.5rem;
  }
  .d-fleet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    align-items: stretch;
  }
  .d-fleet__left {
    background: #f3f5f8;
    border-radius: 18px;
    padding: 1.6rem 1.5rem 1.4rem;
    display: flex;
    flex-direction: column;
  }
  .d-fleet__left h2 {
    margin: 0 0 0.35rem;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    font-weight: 800;
    color: var(--d-navy);
  }
  .d-fleet__lead {
    margin: 0 0 1.15rem;
    color: var(--d-muted);
    font-size: 0.92rem;
  }
  .d-fleet__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.55rem;
    margin-bottom: 1.15rem;
  }
  .d-fleet__veh {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    text-align: center;
  }
  .d-fleet__veh img {
    width: 100%;
    height: 4.25rem;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    display: block;
  }
  .d-fleet__veh strong {
    display: block;
    margin-top: 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--d-navy);
  }
  .d-fleet__veh span {
    display: block;
    font-size: 0.68rem;
    color: var(--d-muted);
    margin-top: 0.1rem;
  }
  .d-fleet__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    width: fit-content;
    margin-top: auto;
    padding: 0.7rem 1.05rem;
    border-radius: 10px;
    border: 1.5px solid var(--d-navy);
    background: #fff;
    color: var(--d-navy);
    font-weight: 750;
    font-size: 0.88rem;
    text-decoration: none;
  }
  .d-fleet__cta:hover {
    background: var(--d-navy);
    color: #fff;
    text-decoration: none;
  }
  .d-fleet__panel {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 100%;
    background: #0f172a center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  @media (min-width: 1101px) {
    .d-fleet__panel { min-height: 18.5rem; }
  }
  .d-fleet__panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(15, 23, 42, 0.2) 100%);
  }
  .d-fleet__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--d-navy);
  }
  .d-fleet__stats li {
    text-align: center;
    padding: 0.95rem 0.45rem;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
  .d-fleet__stats li:last-child {
    border-right: 0;
  }
  .d-fleet__stats strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
  }
  .d-fleet__stats span {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 600;
    opacity: 0.92;
  }

  /* —— Explore UAE —— */
  .d-uae__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 12rem 12rem;
    gap: 0.85rem;
  }
  .d-uae__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background: #1e293b center / cover no-repeat;
    min-height: 12rem;
  }
  .d-uae__card--wide { grid-row: span 2; min-height: auto; }
  .d-uae__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(15, 23, 42, 0.78));
  }
  .d-uae__card span {
    position: relative;
    z-index: 1;
    padding: 1rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
  }
  .d-uae__card small {
    display: block;
    font-weight: 600;
    font-size: 0.78rem;
    opacity: 0.9;
    margin-top: 0.2rem;
  }
  .d-uae__card:hover { text-decoration: none; filter: brightness(1.05); }

  /* —— Packages / Group —— */
  .d-services {
    padding: 2.75rem 0 0.5rem;
  }
  .d-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
  }
  .d-service {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 17rem;
    color: #fff;
    background: #0f172a center / cover no-repeat;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .d-service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.82));
  }
  .d-service > * { position: relative; z-index: 1; }
  .d-service h3 {
    margin: 0 0 0.45rem;
    font-size: 1.35rem;
    font-weight: 800;
  }
  .d-service p {
    margin: 0 0 0.75rem;
    opacity: 0.92;
    font-size: 0.9rem;
  }
  .d-service ul {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
    font-size: 0.82rem;
  }
  .d-service li { margin: 0.25rem 0; }
  .d-service li::before { content: "✓ "; color: #4ade80; font-weight: 800; }
  .d-service__cta {
    display: inline-flex;
    width: fit-content;
    padding: 0.75rem 1.1rem;
    border-radius: 11px;
    background: var(--d-orange);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
  }
  .d-service__cta:hover { text-decoration: none; filter: brightness(1.05); }

  /* —— Reviews —— */
  .d-reviews__rail {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
  }
  .d-review {
    flex: 0 0 min(22rem, 78%);
    scroll-snap-align: start;
    border: 1px solid var(--d-line);
    border-radius: 14px;
    padding: 1.15rem 1.2rem;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  }
  .d-review__top {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.55rem;
  }
  .d-review__avatar {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: #e8eef5;
    color: var(--d-blue);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.78rem;
    flex-shrink: 0;
  }
  .d-review__name { margin: 0; font-weight: 800; color: var(--d-navy); font-size: 0.95rem; }
  .d-review__meta { margin: 0; font-size: 0.72rem; color: var(--d-muted); }
  .d-review__google {
    margin-left: auto;
    color: #4285f4;
    font-weight: 800;
    font-size: 0.85rem;
  }
  .d-review__stars { color: #f5a524; letter-spacing: 0.04em; margin: 0 0 0.4rem; font-size: 0.85rem; }
  .d-review__quote {
    margin: 0;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* —— Blog —— */
  .d-blog__rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.9rem;
  }
  .d-blog__card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--d-line);
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
  }
  .d-blog__card:hover { text-decoration: none; transform: translateY(-2px); }
  .d-blog__thumb {
    aspect-ratio: 16 / 10;
    background: #cbd5e1 center / cover no-repeat;
  }
  .d-blog__body { padding: 0.85rem 0.9rem 1rem; }
  .d-blog__body strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--d-navy);
    line-height: 1.3;
    margin-bottom: 0.35rem;
  }
  .d-blog__body span {
    font-size: 0.72rem;
    color: var(--d-muted);
  }

  /* —— Newsletter —— */
  .d-newsletter {
    padding: 2.5rem 0 3rem;
  }
  .d-newsletter__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    border-radius: 18px;
    background: var(--d-navy);
    color: #fff;
  }
  .d-newsletter__copy {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .d-newsletter__ico {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
    font-size: 1.15rem;
  }
  .d-newsletter__copy h2 {
    margin: 0 0 0.2rem;
    font-size: 1.25rem;
    font-weight: 800;
  }
  .d-newsletter__copy p { margin: 0; opacity: 0.88; font-size: 0.88rem; }
  .d-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    flex: 1 1 18rem;
    max-width: 30rem;
    justify-content: flex-end;
  }
  .d-newsletter__form input {
    flex: 1 1 12rem;
    min-height: 2.85rem;
    border: 0;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    font: inherit;
  }
  .d-newsletter__form button {
    min-height: 2.85rem;
    padding: 0.65rem 1.15rem;
    border: 0;
    border-radius: 12px;
    background: var(--d-orange);
    color: #fff;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
  }
  .d-newsletter__msg {
    width: 100%;
    margin: 0.25rem 0 0;
    font-size: 0.8rem;
    text-align: right;
  }

  body.d-home-app .home-seo { display: none !important; }

  @media (max-width: 1100px) {
    .d-promo-split__grid,
    .d-fleet__grid,
    .d-services__grid { grid-template-columns: 1fr; }
    .d-uae__grid {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }
    .d-uae__card--wide { grid-row: auto; min-height: 12rem; }
    .d-blog__rail { grid-template-columns: repeat(2, 1fr); }
    .d-fleet__list { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 900px) {
    body.d-home-app .why-book__grid { grid-template-columns: repeat(2, 1fr); }
    body.d-home-app .header-phone-block { display: none !important; }
  }
}

@media (max-width: 767px) {
  .d-only,
  .d-only-flex,
  .d-only-grid,
  .hero-trust,
  .header-phone-block,
  .utility__trust { display: none !important; }
}
