/* Static Hajj/Umrah package details — theme tokens only, inherits site font (IBM Plex Sans). */
.umrah-package-details {
    --upd-radius: 14px;
    --upd-sacred: #1b5e4a;
    --upd-sacred-soft: rgba(27, 94, 74, 0.08);
    --upd-line: color-mix(in srgb, var(--tx-dark) 10%, #fff);
    --upd-muted: color-mix(in srgb, var(--tx-dark) 55%, #fff);
    --upd-soft: var(--upd-sacred-soft);
    --upd-card-shadow: 0 1px 2px rgba(var(--tx-dark-rgb), 0.06), 0 12px 32px -18px rgba(var(--tx-dark-rgb), 0.28);
    color: var(--tx-dark);
    background: color-mix(in srgb, var(--upd-sacred) 4%, #fbfcfa);
    font-family: inherit;
}

.umrah-package-details img {
    display: block;
    max-width: 100%;
}

.umrah-package-details a:focus-visible,
.umrah-package-details button:focus-visible {
    outline: 2px solid var(--tx-primary);
    outline-offset: 2px;
}

.upd-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding-inline: 16px;
}

/* Hero */
.upd-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(
        120deg,
        var(--tx-dark) 0%,
        color-mix(in srgb, var(--tx-dark) 55%, var(--upd-sacred)) 100%
    );
}

.upd-hero,
.upd-hero h1,
.upd-hero p,
.upd-hero a,
.upd-hero i,
.upd-hero .upd-chip,
.upd-hero .upd-crumb,
.upd-hero .upd-crumb a {
    color: #fff;
}

.upd-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.28;
}

.upd-hero .upd-wrap {
    position: relative;
    z-index: 1;
    padding-block: 48px 40px;
}

.upd-crumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    opacity: 0.88;
}

.upd-crumb a {
    color: inherit;
    text-decoration: none;
}

.upd-crumb a:hover {
    text-decoration: underline;
}

.upd-crumb__sep {
    opacity: 0.55;
}

.upd-hero h1 {
    font-family: inherit;
    font-size: clamp(28px, 4.4vw, 46px);
    font-weight: 700;
    line-height: 1.15;
    margin: 12px 0 0;
    color: #fff;
}

.upd-hero__lead {
    max-width: 560px;
    margin: 10px 0 0;
    font-size: 15px;
    opacity: 0.92;
}

.upd-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.upd-chip {
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
    color: #fff;
}

/* Layout */
.upd-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
    padding: 36px 16px 48px;
}

.upd-col {
    display: grid;
    gap: 24px;
}

.upd-card {
    background: #fff;
    border-radius: var(--upd-radius);
    padding: 28px;
    box-shadow: var(--upd-card-shadow);
    border: 1px solid var(--upd-line);
}

.upd-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--upd-sacred);
    margin: 0;
}

.upd-card h2 {
    font-family: inherit;
    font-weight: 700;
    font-size: 24px;
    margin: 0 0 20px;
    color: var(--tx-dark);
}

.upd-eyebrow + h2 {
    margin-top: 4px;
}

.upd-grid-2 {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.upd-grid-3 {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}

/* City / overview */
.upd-city {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--upd-line);
    background: var(--upd-soft);
    border-radius: 12px;
    padding: 16px;
}

.upd-city img,
.upd-city__icon {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 10px;
    flex: 0 0 64px;
}

.upd-city__icon {
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--upd-sacred);
    font-size: 22px;
}

.upd-city h3 {
    font-family: inherit;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.upd-city span {
    font-size: 13px;
    color: var(--upd-muted);
}

.upd-incl {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
    font-size: 14px;
}

.upd-incl__row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.upd-tick {
    flex: 0 0 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--upd-soft);
    color: var(--upd-sacred);
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.upd-incl__muted {
    color: var(--upd-muted);
    font-weight: 400;
}

.upd-overview-html {
    font-size: 14px;
    color: var(--upd-muted);
    margin-top: 16px;
}

.upd-overview-html p:last-child {
    margin-bottom: 0;
}

/* Inclusions accordion */
.upd-card .inclusion-accordion .accordion-item,
.upd-card .inclusion-item-static {
    border: 1px solid var(--upd-line);
    border-radius: 10px;
    margin-bottom: 8px;
    background: #fff;
    overflow: hidden;
}

.upd-card .inclusion-accordion-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--tx-dark);
    box-shadow: none;
    background: #fff;
}

.upd-card .inclusion-accordion-btn:not(.collapsed) {
    background: var(--upd-soft);
    color: var(--tx-dark);
}

.upd-card .inclusion-static-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
}

/* Itinerary */
.upd-timeline {
    list-style: none;
    margin: 0;
    padding: 0 0 0 26px;
    border-inline-start: 1px solid var(--upd-line);
    display: grid;
    gap: 14px;
}

[dir="rtl"] .upd-timeline {
    padding: 0 26px 0 0;
}

.upd-timeline li {
    position: relative;
}

.upd-dot {
    position: absolute;
    inset-inline-start: -38px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--upd-sacred);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.upd-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
    align-items: baseline;
    background: var(--upd-soft);
    border-radius: 10px;
    padding: 12px 16px;
}

.upd-row strong {
    font-size: 14px;
    font-weight: 600;
}

.upd-row .upd-date {
    font-size: 12px;
    color: var(--upd-muted);
    display: block;
}

.upd-pill {
    background: #fff;
    color: var(--upd-sacred);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
}

.upd-itinerary-desc {
    font-size: 13px;
    color: var(--upd-muted);
    margin: 6px 16px 0;
}

/* Hotels */
.upd-hotel {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    border: 1px solid var(--upd-line);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.upd-hotel:last-child {
    margin-bottom: 0;
}

.upd-hotel img {
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.upd-hotel h3 {
    font-family: inherit;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    display: inline;
    margin-inline-end: 8px;
}

.upd-tag {
    background: var(--upd-soft);
    color: var(--tx-dark);
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
    display: inline-block;
}

.upd-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--tx-secondary);
    font-size: 12px;
    margin-inline-start: 6px;
    vertical-align: middle;
}

.upd-hotel .upd-addr,
.upd-hotel .upd-tel {
    font-size: 12px;
    color: var(--upd-muted);
    margin: 6px 0 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.upd-hotel .upd-tel {
    color: var(--tx-primary);
    font-weight: 500;
    font-size: 14px;
}

.upd-hotel .upd-body {
    font-size: 14px;
    margin: 12px 0 0;
}

/* Flights */
.upd-flight {
    border: 1px solid var(--upd-line);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.upd-flight__dir {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--upd-muted);
    font-weight: 600;
    margin: 0;
}

.upd-flight__meta {
    font-size: 13px;
    color: var(--upd-muted);
    margin: 4px 0 0;
}

.upd-frow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
}

.upd-fcol {
    min-width: 0;
    max-width: 48%;
}

.upd-fcol--end {
    text-align: end;
}

.upd-frow .upd-code {
    font-family: inherit;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--tx-dark);
    letter-spacing: 0.02em;
}

.upd-frow small {
    display: block;
    font-size: 12px;
    line-height: 1.35;
    color: var(--upd-muted);
}

.upd-fline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    color: var(--tx-primary);
}

.upd-fline .upd-l {
    height: 1px;
    flex: 1;
    background: var(--upd-line);
}

.upd-fline .isax {
    display: inline-block;
    line-height: 1;
}

.upd-fline .upd-plane--out {
    transform: rotate(90deg);
}

.upd-fline .upd-plane--in {
    transform: rotate(-90deg);
}

/* Rooms */
.upd-room {
    position: relative;
    border: 1px solid var(--upd-line);
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    text-align: start;
    font: inherit;
    color: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color .2s ease, background .2s ease;
}

.upd-room:hover {
    border-color: color-mix(in srgb, var(--upd-sacred) 45%, var(--upd-line));
}

.upd-room.selected {
    border-color: var(--upd-sacred);
    background: var(--upd-soft);
    box-shadow: var(--upd-card-shadow);
}

.upd-room img {
    height: 96px;
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.upd-room h3 {
    font-size: 14px;
    margin: 12px 0 0;
    font-weight: 600;
}

.upd-room .upd-p {
    font-family: inherit;
    font-size: 20px;
    color: var(--tx-primary);
    margin: 4px 0 0;
    font-weight: 700;
}

.upd-room .upd-p small {
    font-size: 12px;
    color: var(--upd-muted);
    font-weight: 500;
}

.upd-badge {
    position: absolute;
    inset-inline-end: 12px;
    top: 12px;
    background: var(--tx-secondary);
    color: #fff;
    border-radius: 999px;
    padding: 2px 9px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Gallery */
.upd-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.upd-gallery figure {
    margin: 0;
    position: relative;
}

.upd-gallery img {
    height: 224px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.upd-gallery figcaption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 10px 12px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(transparent, rgba(var(--tx-dark-rgb), 0.7));
    border-radius: 0 0 12px 12px;
}

/* Notes / exclusions */
.upd-notes {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--upd-line);
    border-radius: 12px;
}

.upd-notes li {
    display: flex;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--upd-line);
}

.upd-notes li:last-child {
    border-bottom: none;
}

.upd-bang {
    flex: 0 0 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--upd-soft);
    color: var(--upd-sacred);
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.upd-notes-html {
    font-size: 14px;
}

.upd-notes-html ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--upd-line);
    border-radius: 12px;
    overflow: hidden;
}

.upd-notes-html li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    font-size: 14px;
    margin: 0;
    border-bottom: 1px solid var(--upd-line);
}

.upd-notes-html li:last-child {
    border-bottom: none;
}

.upd-notes-html li::before {
    content: "!";
    flex: 0 0 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--upd-soft);
    color: var(--upd-sacred);
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-top: 2px;
}

.upd-notes-html p:last-child {
    margin-bottom: 0;
}

.upd-exclusions {
    margin: 0;
    padding-inline-start: 18px;
    font-size: 14px;
}

.upd-exclusions li + li {
    margin-top: 8px;
}

/* FAQ */
.upd-card .accordion-item {
    border-color: var(--upd-line);
}

.upd-card .accordion-button:not(.collapsed) {
    background: var(--upd-soft);
    color: var(--tx-dark);
    box-shadow: none;
}

.upd-card .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--tx-primary-rgb), 0.25);
}

/* Sidebar */
.upd-aside {
    position: sticky;
    top: 100px;
}

.upd-book {
    background: #fff;
    border: 1px solid var(--upd-line);
    border-radius: var(--upd-radius);
    padding: 24px;
    box-shadow: 0 24px 60px -28px rgba(var(--tx-dark-rgb), 0.45);
}

.upd-book .upd-from {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--upd-muted);
    margin: 0;
}

.upd-book .upd-price {
    font-family: inherit;
    font-size: 36px;
    color: var(--tx-primary);
    margin: 2px 0 0;
    font-weight: 700;
    line-height: 1.1;
}

.upd-book .upd-pp {
    font-size: 12px;
    color: var(--upd-muted);
    margin: 4px 0 0;
}

.upd-book dl {
    margin: 20px 0 0;
    font-size: 14px;
}

.upd-book dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--upd-line);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.upd-book dt {
    color: var(--upd-muted);
}

.upd-book dd {
    margin: 0;
    font-weight: 500;
    text-align: end;
}

.upd-opts {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.upd-opt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--upd-line);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 14px;
    font: inherit;
    text-align: start;
    text-decoration: none;
    color: inherit;
    background: #fff;
    cursor: pointer;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.upd-opt label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.upd-opt input[type="radio"] {
    accent-color: var(--tx-primary);
    width: 16px;
    height: 16px;
    margin: 0;
    flex: 0 0 16px;
}

.upd-opt:hover {
    border-color: var(--upd-sacred);
    background: var(--upd-soft);
    color: inherit;
}

.upd-opt.selected {
    border-color: var(--upd-sacred);
    background: var(--upd-soft);
}

.upd-opt__price {
    font-weight: 600;
    color: var(--tx-primary);
    white-space: nowrap;
}

.upd-book .btn {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
}

.upd-book .btn-outline-dark {
    margin-top: 8px;
}

.upd-alert {
    margin: 36px auto;
    max-width: 1120px;
    padding-inline: 16px;
}

/* Mobile sticky bar — one bar, starting price + SelectUrl */
.umrah-package-details .fixed__price {
    display: none;
}

@media (max-width: 991.98px) {
    .upd-main {
        grid-template-columns: 1fr;
        padding-bottom: 96px;
    }

    .upd-aside {
        position: static;
    }

    .umrah-package-details .fixed__price {
        display: block;
        border-start-start-radius: 8px;
        border-start-end-radius: 8px;
        padding: 10px 16px;
        position: fixed;
        inset-block-end: 0;
        inset-inline: 0;
        z-index: 99;
        background: #fff;
        width: 100%;
        box-shadow: 0 -4px 18px rgba(var(--tx-dark-rgb), 0.12);
    }

    .umrah-package-details .fixed__price h6 {
        color: var(--tx-dark);
        font-size: 20px;
        margin: 0;
    }

    .umrah-package-details .fixed__price .small {
        margin: 0;
        color: var(--upd-muted);
    }
}

@media (max-width: 640px) {
    .upd-grid-2,
    .upd-grid-3,
    .upd-incl,
    .upd-gallery {
        grid-template-columns: 1fr;
    }

    .upd-hotel {
        grid-template-columns: 1fr;
    }

    .upd-hotel img {
        min-height: 180px;
    }

    .upd-card {
        padding: 20px;
    }

    .upd-hero .upd-wrap {
        padding-block: 32px 28px;
    }

    .upd-gallery img {
        height: 180px;
    }
}
