.site-header > .mobile-menu {
    display: none !important;
}

@media (max-width: 900px) {
    .site-header > .mobile-menu {
        display: flex !important;
    }
}

@media (min-width: 901px) {
    .site-header .mobile-toggle {
        display: none !important;
    }
}

html[dir="rtl"] .section-head {
    display: block;
    text-align: right;
}

html[dir="rtl"] .section-head > div,
html[dir="rtl"] .section-head h2 {
    max-width: 760px;
}

html[dir="rtl"] .section-head .section-intro {
    max-width: 620px;
    margin: 16px 0 0 auto;
    color: #607887;
    font-size: 17px;
    line-height: 1.9;
}

@media (max-width: 700px) {
    html[dir="rtl"] .section-head .section-intro {
        margin-top: 12px;
        font-size: 15px;
    }
}

.destinations-feed {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.destinations-feed .travel-card,
.destinations-feed .travel-card:nth-child(even) {
    position: relative;
    min-height: 390px;
    transform: none;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(4, 46, 71, .14);
}

.destinations-feed .travel-card:hover,
.destinations-feed .travel-card:nth-child(even):hover {
    transform: translateY(-10px);
}

.destination-cover,
.destination-cover::after {
    position: absolute;
    inset: 0;
}

.destination-cover {
    z-index: -2;
    overflow: hidden;
    background: linear-gradient(145deg, #063b5a, #087f82);
}

.destination-cover::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at 25% 20%, rgba(8, 183, 177, .75), transparent 42%);
    transition: transform .7s ease;
}

.destination-cover::after {
    content: "";
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(4, 46, 71, .02) 22%, rgba(4, 46, 71, .22) 48%, rgba(3, 35, 54, .96) 100%),
        linear-gradient(90deg, rgba(4, 46, 71, .12), transparent 60%);
}

.destination-photo {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .9s ease, transform 4.8s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.destination-photo.is-active {
    opacity: 1;
    transform: scale(1.01);
}

.travel-card:hover .destination-photo.is-active {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.destination-gallery-dots {
    position: absolute;
    z-index: 3;
    top: 20px;
    left: 50%;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.destination-gallery-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, .48);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
    transition: width .35s ease, background-color .35s ease;
}

.destination-gallery-dots span.is-active {
    width: 20px;
    background: #fff;
}

.travel-card:hover .destination-cover::before {
    transform: translate3d(8%, 5%, 0) scale(1.08);
}

.destination-copy {
    position: absolute;
    inset: auto 26px 26px;
    z-index: 2;
    color: #fff;
}

.destination-country {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    margin-bottom: 13px;
    padding: 5px 11px;
    color: #d9fffb;
    background: rgba(8, 183, 177, .22);
    border: 1px solid rgba(147, 226, 220, .38);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
}

.destination-copy h3 {
    margin: 0 0 11px;
    color: #fff;
    font-size: clamp(28px, 2.5vw, 36px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.025em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}

.destination-copy p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(235, 247, 249, .92);
    font-size: 14px;
    line-height: 1.75;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

html[dir="rtl"] .destination-copy h3 {
    letter-spacing: 0;
}

html[dir="rtl"] .destination-copy p {
    line-height: 1.9;
}

.destinations-status {
    grid-column: 1 / -1;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #607887;
    text-align: center;
}

.destination-spinner {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(8, 183, 177, .25);
    border-top-color: #08b7b1;
    border-radius: 50%;
    animation: destination-spin .8s linear infinite;
}

@keyframes destination-spin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
    .destinations-feed { grid-template-columns: repeat(2, minmax(240px, 1fr)); }
}

@media (max-width: 600px) {
    .destinations-feed {
        grid-template-columns: 82vw;
        overflow-x: auto;
    }
    .destinations-feed .travel-card { min-height: 365px; }
    .destination-copy { inset: auto 21px 22px; }
    .destination-copy h3 { font-size: 30px; }
    .destinations-status { width: calc(100vw - 38px); }
}

@media (prefers-reduced-motion: reduce) {
    .destination-spinner { animation: none; }
    .destination-photo { opacity: 0; transform: none; }
    .destination-photo.is-active { opacity: 1; }
}