.hxh { background: linear-gradient(180deg, #EFF6FF 0%, #fff 60%); direction: rtl; padding-bottom: 80px; position: relative; }
.hxh::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184,134,11,0.08) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
    opacity: 0.5;
}
.hxh > * { position: relative; }
.hxh-wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hxh-hero {
    padding: 120px 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hxh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,95,109,0.08) 0, transparent 40%),
        radial-gradient(circle at 80% 60%, rgba(75,158,255,0.10) 0, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(2,132,199,0.08) 0, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.hxh-hero > * { position: relative; z-index: 1; }
.hxh-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(75,158,255,0.12);
    color: #4B9EFF;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.hxh-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin: 0 0 16px;
    line-height: 1.15;
    background: linear-gradient(120deg, #0f172a 0%, #4B9EFF 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hxh-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: #475569;
    max-width: 720px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.hxh-stats {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.hxh-stat-num { font-size: 2rem; font-weight: 900; color: #4B9EFF; line-height: 1; display: block; }
.hxh-stat-label { font-size: 0.8rem; color: #64748b; margin-top: 4px; }

/* ===== COUNTRY CARDS — "Hotel Directory / Concierge Floor" =====
   Wide horizontal split cards: image panel + ivory info panel with gold accents.
   Alternating image side per row. Serif heading, hotel-bell icon. */
.hxh-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 70px;
}
.hxh-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    aspect-ratio: 5 / 3;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: #1f1a13;
    background: #fff;
    box-shadow: 0 14px 38px -16px rgba(15,23,42,0.18), 0 1px 0 rgba(212,175,55,0.18) inset;
    transition: transform 0.55s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.55s;
    border: 1px solid #ece4d5;
    animation: hxh-rise 0.75s cubic-bezier(0.2,0.8,0.2,1) backwards;
}
.hxh-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px -20px rgba(15,23,42,0.32), 0 0 0 2px rgba(212,175,55,0.45);
}
.hxh-card.is-empty {
    cursor: default; pointer-events: none;
    filter: grayscale(0.7); opacity: 0.65;
}
/* Alternating image side */
.hxh-card:nth-child(even) {
    grid-template-columns: 1fr 1.05fr;
    direction: ltr;
}
.hxh-card:nth-child(even) > * { direction: rtl; }
.hxh-card:nth-child(even) .hxh-card-img-panel { order: 2; }
.hxh-card:nth-child(even) .hxh-card-content { order: 1; }

/* IMAGE PANEL */
.hxh-card-img-panel {
    position: relative; overflow: hidden;
}
.hxh-card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 1.1s cubic-bezier(0.2,0.8,0.2,1);
}
.hxh-card:hover .hxh-card-img { transform: scale(1.08); }
.hxh-card-img-panel::after {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.18) 100%),
        radial-gradient(180px 180px at 80% 90%, var(--cFrom) 0%, transparent 70%);
    opacity: 0.4;
    mix-blend-mode: multiply;
}
.hxh-card-flag {
    position: absolute;
    top: 18px; inset-inline-start: 18px;
    z-index: 2;
    font-size: 2.6rem;
    width: 64px; height: 64px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 8px 22px -8px rgba(0,0,0,0.35), 0 0 0 3px rgba(212,175,55,0.45);
    transition: transform 0.4s;
}
.hxh-card:hover .hxh-card-flag { transform: scale(1.08) rotate(-6deg); }
.hxh-card-stars {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 14px;
    z-index: 2;
    background: rgba(15,15,15,0.55);
    backdrop-filter: blur(8px);
    color: #BAE6FD;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 1px solid rgba(212,175,55,0.5);
    font-family: serif;
}

/* INFO PANEL — ivory / parchment look */
.hxh-card-content {
    position: relative;
    padding: 26px 28px 24px;
    background:
        repeating-linear-gradient(45deg, rgba(212,175,55,0.04) 0 2px, transparent 2px 8px),
        linear-gradient(180deg, #fdfaf2 0%, #f8f1e0 100%);
    display: flex; flex-direction: column; justify-content: space-between;
}
.hxh-card-content::before {
    /* Gold double-line accent on the inside seam */
    content: '';
    position: absolute;
    inset-block: 18px;
    inset-inline-end: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent 0%, var(--cFrom) 25%, var(--cTo) 75%, transparent 100%);
    opacity: 0.85;
    border-radius: 4px;
}
.hxh-card-content::after {
    content: '';
    position: absolute;
    inset-block: 24px;
    inset-inline-end: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.45) 30%, rgba(212,175,55,0.45) 70%, transparent 100%);
}
.hxh-card-eyebrow {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b8860b;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
}
.hxh-card-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(184,134,11,0.5), transparent);
}
.hxh-card-title {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-size: clamp(1.5rem, 2.5vw, 1.95rem);
    font-weight: 800;
    color: #1a1410;
    margin: 0 0 4px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}
.hxh-card-tagline {
    font-size: 0.86rem;
    color: #6b5c45;
    line-height: 1.55;
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-style: italic;
    border-block: 1px dashed rgba(184,134,11,0.3);
    padding-block: 10px;
}
.hxh-card-cities {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-bottom: 16px;
}
.hxh-card-cities span {
    background: rgba(255,255,255,0.7);
    color: #5b4f3c;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    border: 1px solid rgba(184,134,11,0.35);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset;
}
.hxh-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px dotted rgba(184,134,11,0.4);
}
.hxh-card-badge {
    font-family: 'Playfair Display', 'Tajawal', serif;
    color: #1a1410;
    display: flex; align-items: baseline; gap: 6px;
}
.hxh-card-badge strong {
    font-size: 1.6rem;
    line-height: 1;
    color: #b8860b;
    font-weight: 800;
}
.hxh-card-badge small { font-size: 0.78rem; color: #6b5c45; font-weight: 600; }
.hxh-card-badge.is-soon {
    color: #94816a;
    font-style: italic;
    font-size: 0.85rem;
}
.hxh-card-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--cFrom, #b8860b) 0%, var(--cTo, #d4af37) 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px -6px var(--cFrom, rgba(184,134,11,0.4));
    transition: all 0.3s;
}
.hxh-card:hover .hxh-card-cta {
    transform: translateX(-4px);
    box-shadow: 0 10px 24px -8px var(--cFrom, rgba(184,134,11,0.5));
}
.hxh-card-cta::after {
    content: '🛎️';
    font-size: 1rem;
    transition: transform 0.3s;
}
.hxh-card:hover .hxh-card-cta::after {
    transform: rotate(-12deg);
}
.hxh-card.is-empty .hxh-card-cta {
    background: #b9b1a1;
    box-shadow: none;
}

@keyframes hxh-rise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hxh-card:nth-child(1) { animation-delay: 0.05s; }
.hxh-card:nth-child(2) { animation-delay: 0.13s; }
.hxh-card:nth-child(3) { animation-delay: 0.21s; }
.hxh-card:nth-child(4) { animation-delay: 0.29s; }
.hxh-card:nth-child(5) { animation-delay: 0.37s; }
.hxh-card:nth-child(6) { animation-delay: 0.45s; }

/* ===== FEATURED STRIP ===== */
.hxh-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 26px;
}
.hxh-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0;
    color: #0f172a;
    font-weight: 900;
}
.hxh-section-head h2 small {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 6px;
}

.hxh-feat-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hxh-feat {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(15,23,42,0.15);
    transition: transform 0.4s, box-shadow 0.4s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.hxh-feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -15px rgba(15,23,42,0.3);
}
.hxh-feat-img {
    height: 220px;
    background-size: cover; background-position: center;
    position: relative;
}
.hxh-feat-img::after {
    content: '⭐ مميز';
    position: absolute;
    top: 14px;
    inset-inline-end: 14px;
    background: linear-gradient(135deg, #38BDF8, #0ea5e9);
    color: #0c4a6e;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(14,165,233,0.4);
}
.hxh-feat-stars {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 14px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: #BAE6FD;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.hxh-feat-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.hxh-feat-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #4B9EFF;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.hxh-feat-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: #0f172a;
    line-height: 1.4;
}
.hxh-feat-sum {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hxh-feat-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.hxh-feat-price strong {
    font-size: 1.3rem;
    color: #0f172a;
    font-weight: 900;
}
.hxh-feat-price small { color: #94a3b8; font-size: 0.78rem; }
.hxh-feat-go {
    font-size: 0.85rem;
    font-weight: 800;
    color: #4B9EFF;
}

/* ===== COUNTRY VIEW (filter + grid) ===== */
.hxh-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #475569;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 24px;
    transition: color 0.2s;
}
.hxh-back:hover { color: #0f172a; }
.hxh-country-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: 80px 40px;
    margin: 100px 0 32px;
    color: #fff;
    box-shadow: 0 20px 50px -15px rgba(15,23,42,0.4);
}
.hxh-country-hero-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    z-index: 0;
}
.hxh-country-hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, var(--cFrom) 0%, var(--cTo) 100%),
        rgba(0,0,0,0.3);
    opacity: 0.85;
    z-index: 1;
    mix-blend-mode: multiply;
}
.hxh-country-hero > .hxh-ch-inner { position: relative; z-index: 2; }
.hxh-ch-flag {
    font-size: 4rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.4));
}
.hxh-ch-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin: 0 0 8px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hxh-ch-tagline {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    opacity: 0.92;
    margin: 0 0 18px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.hxh-ch-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.hxh-ch-stat {
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.25);
}
.hxh-ch-stat strong { display: block; font-size: 1.5rem; font-weight: 900; }
.hxh-ch-stat span { font-size: 0.78rem; opacity: 0.9; }

.hxh-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    margin: 18px 0 30px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 24px -10px rgba(15,23,42,0.1);
    border: 1px solid #f1f5f9;
}
.hxh-filter-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #475569;
    margin-inline-end: 8px;
}
.hxh-pill {
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s;
}
.hxh-pill:hover { border-color: var(--cFrom); color: var(--cFrom); }
.hxh-pill.is-active {
    background: linear-gradient(135deg, var(--cFrom) 0%, var(--cTo) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px -4px var(--cFrom);
}
.hxh-pill .cnt {
    background: rgba(255,255,255,0.25);
    padding: 1px 8px;
    border-radius: 999px;
    margin-inline-start: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}
.hxh-pill:not(.is-active) .cnt {
    background: #f1f5f9;
    color: #64748b;
}

.hxh-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 0.92rem;
}
.hxh-results-bar strong { color: #0f172a; }

.hxh-hotels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.hxh-hotel {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px -10px rgba(15,23,42,0.12);
    transition: transform 0.4s, box-shadow 0.4s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #f1f5f9;
}
.hxh-hotel.is-hidden { display: none; }
.hxh-hotel:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px -15px rgba(15,23,42,0.25);
}
.hxh-hotel-img {
    height: 200px;
    background-size: cover; background-position: center;
    position: relative;
}
.hxh-hotel-img::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.4) 100%);
}
.hxh-hotel-tag {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    color: #0f172a;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}
.hxh-hotel-stars {
    position: absolute;
    bottom: 12px;
    inset-inline-start: 12px;
    color: #BAE6FD;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.hxh-hotel-feat {
    position: absolute;
    top: 12px;
    inset-inline-end: 12px;
    background: linear-gradient(135deg, #38BDF8, #0ea5e9);
    color: #0c4a6e;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(14,165,233,0.4);
}
.hxh-hotel-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.hxh-hotel-title {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 6px;
    color: #0f172a;
    line-height: 1.45;
}
.hxh-hotel-sum {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hxh-hotel-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}
.hxh-hotel-price strong {
    font-size: 1.2rem;
    color: #0f172a;
    font-weight: 900;
}
.hxh-hotel-price small { color: #94a3b8; font-size: 0.74rem; }
.hxh-hotel-cta {
    background: linear-gradient(135deg, var(--cFrom) 0%, var(--cTo) 100%);
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.hxh-empty {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 22px;
    color: #475569;
    border: 2px dashed #e2e8f0;
}
.hxh-empty .em {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hxh-grid { grid-template-columns: 1fr; gap: 20px; }
    .hxh-feat-strip, .hxh-hotels { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 700px) {
    .hxh-hero { padding: 100px 0 40px; }
    .hxh-feat-strip, .hxh-hotels { grid-template-columns: 1fr; gap: 18px; }
    .hxh-card {
        grid-template-columns: 1fr !important;
        aspect-ratio: auto;
    }
    .hxh-card:nth-child(even) .hxh-card-img-panel,
    .hxh-card .hxh-card-img-panel { order: 1; min-height: 200px; }
    .hxh-card:nth-child(even) .hxh-card-content,
    .hxh-card .hxh-card-content { order: 2; }
    .hxh-card-content::before, .hxh-card-content::after { display: none; }
    .hxh-stats { gap: 24px; }
    .hxh-country-hero { padding: 50px 24px; margin: 80px 0 24px; }
    .hxh-section-head { flex-direction: column; align-items: stretch; gap: 6px; }
}
