.quick-find-trigger {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: .45rem;
 min-height: 2.7rem;
 padding: .65rem .95rem;
 border: 1px solid rgba(16, 43, 70, .12);
 border-radius: 999px;
 background: #ffffff;
 color: var(--navy);
 font-weight: 800;
 font-size: .92rem;
 line-height: 1;
 box-shadow: 0 12px 24px rgba(8, 24, 39, .08);
 cursor: pointer;
 transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.quick-find-trigger:hover {
 transform: translateY(-2px);
 border-color: rgba(35, 131, 94, .28);
 box-shadow: 0 18px 32px rgba(8, 24, 39, .12);
}

.quick-find-trigger svg {
 width: 1rem;
 height: 1rem;
 stroke-width: 2.6;
}

.quick-find-overlay {
 position: fixed;
 inset: 0;
 z-index: 100;
 display: grid;
 place-items: start center;
 padding: clamp(1rem, 4vw, 2.5rem);
 background: rgba(8, 24, 39, .56);
 backdrop-filter: blur(10px);
}

.quick-find-overlay[hidden] {
 display: none;
}

.quick-find-dialog {
 width: min(58rem, 100%);
 max-height: min(46rem, calc(100vh - 2rem));
 margin-top: clamp(1rem, 5vh, 3rem);
 overflow: hidden;
 border: 1px solid rgba(255, 255, 255, .38);
 border-radius: 1.25rem;
 background: rgba(255, 255, 255, .98);
 box-shadow: 0 30px 80px rgba(8, 24, 39, .28);
}

.quick-find-panel {
 display: grid;
 max-height: inherit;
 grid-template-rows: auto minmax(0, 1fr);
}

.quick-find-top {
 display: flex;
 align-items: center;
 gap: .85rem;
 padding: .9rem .95rem;
 border-bottom: 1px solid rgba(16, 43, 70, .1);
}

.quick-find-field {
 position: relative;
 flex: 1;
}

.quick-find-field svg {
 position: absolute;
 left: .95rem;
 top: 50%;
 width: 1.05rem;
 height: 1.05rem;
 color: var(--muted);
 transform: translateY(-50%);
}

.quick-find-input {
 width: 100%;
 min-height: 3.2rem;
 padding: .85rem 1rem .85rem 2.75rem;
 border: 1px solid rgba(16, 43, 70, .12);
 border-radius: .95rem;
 background: #f8fbfa;
 color: var(--navy);
 font-size: 1rem;
 font-weight: 700;
 outline: none;
}

.quick-find-input:focus {
 border-color: rgba(35, 131, 94, .48);
 box-shadow: 0 0 0 4px rgba(35, 131, 94, .12);
}

.quick-find-close {
 display: inline-grid;
 place-items: center;
 width: 2.75rem;
 height: 2.75rem;
 border: 1px solid rgba(16, 43, 70, .12);
 border-radius: 999px;
 background: #ffffff;
 color: var(--navy);
 cursor: pointer;
}

.quick-find-close svg {
 width: 1.05rem;
 height: 1.05rem;
}

.quick-find-results {
 overflow: auto;
 padding: 1rem;
}

.quick-find-status {
 margin: .1rem .1rem 1rem;
 color: var(--navy);
 font-size: 1.05rem;
 font-weight: 900;
}

.quick-find-result {
 display: grid;
 gap: .35rem;
 padding: .95rem;
 border: 1px solid transparent;
 border-radius: .9rem;
 color: inherit;
 text-decoration: none;
}

.quick-find-result:hover,
.quick-find-result:focus {
 border-color: rgba(35, 131, 94, .24);
 background: #f8fbfa;
 outline: none;
}

.quick-find-meta {
 display: flex;
 align-items: center;
 gap: .5rem;
 color: var(--green);
 font-size: .75rem;
 font-weight: 900;
 letter-spacing: .12em;
 text-transform: uppercase;
}

.quick-find-title {
 margin: 0;
 color: var(--navy);
 font-size: 1.02rem;
 line-height: 1.28;
}

.quick-find-copy {
 margin: 0;
 color: var(--muted);
 font-size: .9rem;
 line-height: 1.55;
}

.quick-find-empty {
 display: grid;
 justify-items: center;
 gap: 1rem;
 padding: 2rem .75rem 2.25rem;
 color: var(--navy);
 text-align: center;
}

.quick-find-empty p {
 max-width: 26rem;
 margin: 0;
 color: var(--muted);
 font-weight: 700;
}

.quick-find-loading {
 padding: 1.25rem;
 border: 1px solid rgba(16, 43, 70, .08);
 border-radius: .9rem;
 background: #f8fbfa;
 color: var(--navy);
 font-weight: 800;
 text-align: center;
}

.quick-find-destination-card {
 display: grid;
 grid-template-columns: minmax(13rem, .85fr) minmax(0, 1.35fr);
 gap: 0;
 overflow: hidden;
 margin-bottom: 1rem;
 border: 1px solid rgba(16, 43, 70, .1);
 border-radius: 1rem;
 background: #ffffff;
 box-shadow: 0 18px 42px rgba(8, 24, 39, .1);
}

.quick-find-destination-media {
 min-height: 100%;
 background: var(--green-soft);
}

.quick-find-destination-media img {
 width: 100%;
 height: 100%;
 min-height: 16rem;
 object-fit: cover;
}

.quick-find-destination-body {
 display: grid;
 gap: .75rem;
 align-content: start;
 padding: 1.2rem;
}

.quick-find-destination-title {
 margin: 0;
 color: var(--navy);
 font-family: "Playfair Display", serif;
 font-size: clamp(1.45rem, 3vw, 2.1rem);
 line-height: 1.08;
}

.quick-find-package-list {
 display: grid;
 gap: .65rem;
 margin-top: .2rem;
}

.quick-find-package-heading {
 margin: .15rem 0 0;
 color: var(--green-deep);
 font-size: .78rem;
 font-weight: 900;
 letter-spacing: .13em;
 text-transform: uppercase;
}

.quick-find-package-card {
 display: grid;
 gap: .22rem;
 padding: .78rem .85rem;
 border: 1px solid rgba(16, 43, 70, .08);
 border-radius: .8rem;
 background: linear-gradient(135deg, #ffffff, #f6fbf8);
 color: inherit;
 text-decoration: none;
 transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.quick-find-package-card:hover,
.quick-find-package-card:focus {
 border-color: rgba(35, 131, 94, .3);
 box-shadow: 0 12px 24px rgba(8, 24, 39, .08);
 transform: translateY(-1px);
 outline: none;
}

.quick-find-package-card span {
 color: var(--green);
 font-size: .73rem;
 font-weight: 900;
 letter-spacing: .1em;
 text-transform: uppercase;
}

.quick-find-package-card strong {
 color: var(--navy);
 line-height: 1.25;
}

.quick-find-package-card small {
 color: var(--muted);
 line-height: 1.45;
}

.quick-find-whatsapp {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 justify-self: start;
 min-height: 2.8rem;
 padding: .75rem 1rem;
 border-radius: 999px;
 background: linear-gradient(135deg, var(--green), var(--green-deep));
 color: var(--white);
 font-weight: 900;
 text-decoration: none;
 box-shadow: 0 14px 28px rgba(35, 131, 94, .24);
}

body.hotel-detail-page .quick-find-detail-action-row {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: .85rem;
 margin-top: .45rem;
 padding-top: .25rem;
}

body.hotel-detail-page .quick-find-detail-button {
 width: 100%;
 min-height: 3.35rem;
 padding: .9rem 1rem;
 border-radius: 999px;
 font-weight: 900;
 text-align: center;
 box-shadow: 0 14px 28px rgba(8, 24, 39, .08);
}

body.hotel-detail-page .quick-find-detail-enquire {
 border: 1px solid rgba(35, 131, 94, .28);
 background: linear-gradient(135deg, var(--green), var(--green-deep));
 color: var(--white);
}

body.hotel-detail-page .quick-find-detail-whatsapp {
 border: 1px solid rgba(16, 43, 70, .14);
 background: var(--white);
 color: var(--navy);
}

body.hotel-detail-page .quick-find-detail-whatsapp:hover {
 border-color: rgba(35, 131, 94, .32);
 background: var(--green-soft);
 color: var(--green-deep);
}

.button-whatsapp,
.quick-find-whatsapp,
body.hotel-detail-page .quick-find-detail-whatsapp {
 display: none !important;
}

.approved-hotel-gallery {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: .85rem;
}

.approved-hotel-gallery-item {
 overflow: hidden;
 min-height: 11rem;
 margin: 0;
 border-radius: 1rem;
 background: #eef4f5;
}

.approved-hotel-gallery-item:first-child {
 grid-column: span 2;
 grid-row: span 2;
}

.approved-hotel-gallery-item img {
 width: 100%;
 height: 100%;
 min-height: 11rem;
 object-fit: cover;
}

.whatsapp-float {
 width: 4rem;
 min-width: 4rem !important;
 height: 4rem;
 min-height: 4rem !important;
 padding: 0 !important;
 border: 3px solid rgba(255, 255, 255, .92);
 font-size: 0;
}

.whatsapp-float::before {
 content: "";
 width: 2rem;
 height: 2rem;
 background: currentColor;
 -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.01 3.2c-7.04 0-12.76 5.62-12.76 12.54 0 2.2.59 4.36 1.7 6.25L3.15 28.8l7.02-1.8a12.96 12.96 0 0 0 5.84 1.38c7.04 0 12.76-5.62 12.76-12.54S23.05 3.2 16.01 3.2Zm0 22.96c-1.86 0-3.68-.49-5.28-1.42l-.38-.22-4.17 1.07 1.11-4.02-.25-.41a10.21 10.21 0 0 1-1.56-5.42c0-5.69 4.72-10.32 10.53-10.32s10.53 4.63 10.53 10.32-4.72 10.42-10.53 10.42Zm5.77-7.72c-.31-.16-1.86-.9-2.15-1-.29-.11-.5-.16-.71.16-.21.31-.82 1-.99 1.2-.18.21-.37.23-.68.08-.31-.16-1.32-.48-2.52-1.53-.93-.81-1.56-1.81-1.74-2.12-.18-.31-.02-.48.14-.63.14-.14.31-.37.47-.55.16-.18.21-.31.31-.52.1-.21.05-.39-.03-.55-.08-.16-.71-1.68-.97-2.3-.26-.6-.52-.52-.71-.53h-.6c-.21 0-.55.08-.84.39-.29.31-1.1 1.06-1.1 2.59 0 1.52 1.13 3 1.29 3.21.16.21 2.22 3.33 5.38 4.67.75.32 1.34.51 1.8.65.76.24 1.44.21 1.98.13.6-.09 1.86-.75 2.12-1.47.26-.72.26-1.34.18-1.47-.08-.13-.29-.21-.6-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
 mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.01 3.2c-7.04 0-12.76 5.62-12.76 12.54 0 2.2.59 4.36 1.7 6.25L3.15 28.8l7.02-1.8a12.96 12.96 0 0 0 5.84 1.38c7.04 0 12.76-5.62 12.76-12.54S23.05 3.2 16.01 3.2Zm0 22.96c-1.86 0-3.68-.49-5.28-1.42l-.38-.22-4.17 1.07 1.11-4.02-.25-.41a10.21 10.21 0 0 1-1.56-5.42c0-5.69 4.72-10.32 10.53-10.32s10.53 4.63 10.53 10.32-4.72 10.42-10.53 10.42Zm5.77-7.72c-.31-.16-1.86-.9-2.15-1-.29-.11-.5-.16-.71.16-.21.31-.82 1-.99 1.2-.18.21-.37.23-.68.08-.31-.16-1.32-.48-2.52-1.53-.93-.81-1.56-1.81-1.74-2.12-.18-.31-.02-.48.14-.63.14-.14.31-.37.47-.55.16-.18.21-.31.31-.52.1-.21.05-.39-.03-.55-.08-.16-.71-1.68-.97-2.3-.26-.6-.52-.52-.71-.53h-.6c-.21 0-.55.08-.84.39-.29.31-1.1 1.06-1.1 2.59 0 1.52 1.13 3 1.29 3.21.16.21 2.22 3.33 5.38 4.67.75.32 1.34.51 1.8.65.76.24 1.44.21 1.98.13.6-.09 1.86-.75 2.12-1.47.26-.72.26-1.34.18-1.47-.08-.13-.29-.21-.6-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.quick-find-open {
 overflow: hidden;
}

@media (max-width: 920px) {
 .quick-find-trigger {
 margin-left: auto;
 }
}

@media (max-width: 760px) {
 .quick-find-trigger {
 min-height: 2.45rem;
 padding: .55rem .7rem;
 font-size: .82rem;
 }

 .quick-find-trigger span {
 display: none;
 }

 .quick-find-overlay {
 padding: .75rem;
 }

 .quick-find-dialog {
 max-height: calc(100vh - 1.5rem);
 margin-top: .4rem;
 border-radius: 1rem;
 }

 .quick-find-top {
 gap: .6rem;
 padding: .75rem;
 }

 .quick-find-input {
 min-height: 3rem;
 font-size: .95rem;
 }

 .quick-find-close {
 width: 2.5rem;
 height: 2.5rem;
 }

 .quick-find-results {
 padding: .75rem;
 }

 .quick-find-destination-card {
 grid-template-columns: 1fr;
 }

 .quick-find-destination-media img {
 min-height: 12.5rem;
 max-height: 14rem;
 }

 .quick-find-destination-body {
 padding: 1rem;
 }

 .quick-find-whatsapp {
 width: 100%;
 }

 body.hotel-detail-page .quick-find-detail-action-row {
 grid-template-columns: 1fr;
 gap: .7rem;
 }

 body.hotel-detail-page .quick-find-detail-button {
 min-height: 3.2rem;
 }

 .approved-hotel-gallery {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .approved-hotel-gallery-item:first-child {
 grid-column: span 2;
 grid-row: span 1;
 }

 .whatsapp-float {
 width: 3.55rem;
 min-width: 3.55rem !important;
 height: 3.55rem;
 min-height: 3.55rem !important;
 }
}

.footer-network {
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: .75rem;
 padding: 1.45rem 0 0;
 margin-top: 1.6rem;
 border-top: 1px solid rgba(255, 255, 255, .1);
 color: rgba(255, 255, 255, .78);
 text-align: center;
}

.footer-network-logo {
 width: clamp(8.125rem, 12vw, 9.375rem);
 height: auto;
 flex: 0 0 auto;
 padding: .35rem .55rem;
 border-radius: .65rem;
 background: #ffffff;
 box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.footer-network p {
 max-width: 34rem;
 margin: 0;
 font-size: .94rem;
 line-height: 1.6;
}

@media (max-width: 760px) {
 .footer-network {
 gap: .85rem;
 }

}
/* round-action-buttons-1 */
.offer-card .offer-actions,
body[data-destination-page="mauritius"] .mauritius-zanzibar-style-grid .offer-actions,
body[data-destination-page="thailand"] .thailand-standard-grid .offer-actions,
body.hotel-detail-page .quick-find-detail-action-row {
 display: flex !important;
 grid-template-columns: none !important;
 align-items: center;
 justify-content: center;
 gap: .75rem;
 margin-top: auto;
}

.offer-card .offer-actions .button,
body[data-destination-page="mauritius"] .mauritius-zanzibar-style-grid .offer-actions .button,
body[data-destination-page="thailand"] .thailand-standard-grid .offer-actions .button,
body.hotel-detail-page .quick-find-detail-button {
 display: inline-flex !important;
 flex: 0 0 5.25rem;
 width: 5.25rem !important;
 min-width: 5.25rem;
 max-width: 5.25rem;
 height: 5.25rem;
 min-height: 5.25rem;
 padding: .55rem .65rem;
 border-radius: 999px;
 align-items: center;
 justify-content: center;
 text-align: center;
 white-space: normal;
 line-height: 1.28;
 font-size: .98rem;
 font-weight: 800;
 letter-spacing: 0;
 box-shadow: 0 14px 30px rgba(8, 24, 39, .08);
}

.offer-card .offer-actions .button-secondary,
body.hotel-detail-page .quick-find-detail-action-row .button-secondary {
 border: 1px solid rgba(16, 43, 70, .08);
 background: #f1f6f7;
 color: var(--navy);
 box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .55), 0 12px 26px rgba(8, 24, 39, .06);
}

.offer-card .offer-actions .button-primary,
body.hotel-detail-page .quick-find-detail-enquire {
 border: 1px solid rgba(35, 131, 94, .2);
 background: var(--green);
 color: var(--white);
 box-shadow: 0 16px 30px rgba(35, 131, 94, .24);
}

.offer-card .offer-actions .button-whatsapp,
.quick-find-whatsapp,
.unlisted-destination-actions .button-whatsapp,
body.hotel-detail-page .quick-find-detail-whatsapp {
 display: inline-flex !important;
}

.offer-card .offer-actions .button-whatsapp,
.unlisted-destination-actions .button-whatsapp,
body.hotel-detail-page .quick-find-detail-whatsapp {
 border: 1px solid rgba(35, 131, 94, .22);
 background: #dff7e8;
 color: var(--green-deep);
 box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42), 0 12px 26px rgba(35, 131, 94, .08);
}

.offer-card .offer-actions .button:hover,
body.hotel-detail-page .quick-find-detail-button:hover {
 transform: translateY(-2px);
}

@media (max-width: 760px) {
 .offer-card .offer-actions,
 body[data-destination-page="mauritius"] .mauritius-zanzibar-style-grid .offer-actions,
 body[data-destination-page="thailand"] .thailand-standard-grid .offer-actions,
 body.hotel-detail-page .quick-find-detail-action-row {
 flex-wrap: wrap;
 justify-content: flex-start;
 }
}

@media (max-width: 420px) {
 .offer-card .offer-actions,
 body[data-destination-page="mauritius"] .mauritius-zanzibar-style-grid .offer-actions,
 body[data-destination-page="thailand"] .thailand-standard-grid .offer-actions,
 body.hotel-detail-page .quick-find-detail-action-row {
 gap: .55rem;
 }

 .offer-card .offer-actions .button,
 body[data-destination-page="mauritius"] .mauritius-zanzibar-style-grid .offer-actions .button,
 body[data-destination-page="thailand"] .thailand-standard-grid .offer-actions .button,
 body.hotel-detail-page .quick-find-detail-button {
 flex-basis: 4.85rem;
 width: 4.85rem !important;
 min-width: 4.85rem;
 max-width: 4.85rem;
 height: 4.85rem;
 min-height: 4.85rem;
 font-size: .92rem;
 }
}

body[data-destination-page="mauritius"] .mauritius-package-star-line {
 display: none !important;
}

.package-detail-list {
 margin-top: .6rem;
 margin-bottom: 1.1rem;
}
.package-detail-line {
 margin: .75rem 0 0;
 color: var(--navy) !important;
 font-weight: 700;
}
.hotel-detail-inclusions h4 {
 margin: 1rem 0 .35rem;
 color: var(--navy);
}

/* africa-curated-packages-1 */
body[data-destination-page="africa"] .africa-package-stack {
 padding: 4rem 0;
}

body[data-destination-page="africa"] .africa-country-section {
 margin: 0 0 4rem;
}

body[data-destination-page="africa"] .africa-package-grid {
 align-items: stretch;
 display: grid;
 gap: 1.5rem;
 grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-destination-page="africa"] .africa-package-card {
 display: flex;
 flex-direction: column;
 min-height: 100%;
}

body[data-destination-page="africa"] .africa-package-card .offer-card-media {
 aspect-ratio: 16 / 10;
 overflow: hidden;
}

body[data-destination-page="africa"] .africa-package-card .offer-card-media img {
 height: 100%;
 object-fit: cover;
 object-position: center;
 width: 100%;
}

body[data-destination-page="africa"] .africa-package-card .offer-package-type {
 color: var(--green);
 font-weight: 800;
 margin: .25rem 0 .5rem;
}

body[data-destination-page="africa"] .africa-package-card .deal-price {
 margin-top: auto;
}

body[data-destination-page="africa"] .africa-package-card .offer-actions {
 margin-top: 1rem;
}

@media (max-width: 980px) {
 body[data-destination-page="africa"] .africa-package-grid {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
}

@media (max-width: 680px) {
 body[data-destination-page="africa"] .africa-package-stack {
 padding: 2.5rem 0;
 }

 body[data-destination-page="africa"] .africa-package-grid {
 grid-template-columns: 1fr;
 }
}
