.event-outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
/* CARD */
.event-box {
    width: 100%;
    max-width: 1250px;
    height: 255px;
    padding: 20px;
    border-radius: 30px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transition: background 0.5s ease;
}
/* SEASON COLORS */
.event-box[data-season="summer"] {
    background: #fff4e6;
}
.event-box[data-season="monsoon"] {
    background: #e0f2fe;
}
.event-box[data-season="winter"] {
    background: #f9fafb;
}
.event-box[data-season="spring"] {
    background: #ecfeff;
}
.event-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.45s ease;
}
.event-row {
    display: flex;
    gap: 16px;
    height: 210px;
    text-decoration: none;
    color: #111827;
}
.event-col {
    background: #f1e4d7;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}
/* DATE */
.event-col.date {
    width: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.event-day {
    font-size: 64px;
    font-weight: 900;
    color: #ff7a00;
}
.event-month {
    font-size: 16px;
    font-weight: 800;
    color: #6b7280;
}
/* CENTER */
.event-col.center {
    flex: 1;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.event-top-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}
.event-tag {
    background: #fff4e6;
    color: #c05621;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 700;
}
.event-tag::before {
    content: "●";
    margin-right: 4px;
    color: #ff7a00;
}
.event-active {
    color: #22c55e;
    font-weight: 700;
}
.event-active .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    margin-right: 4px;
}
.event-title {
    font-size: 22px;
    font-weight: 900;
    margin: 5px 0;
}
.event-meta-line {
    font-size: 15px;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.event-meta-line i {
    margin-right: 4px;
}
.event-desc {
    font-size: 13px;
    color: #4b5563;
}
/* POSTER */
.event-col.poster {
    width: 240px;
    overflow: hidden;
}
.event-col.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ARROWS */
.event-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.event-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
/* MOBILE */
@media (max-width: 768px) {
    .event-box {
        height: 280px;
        padding: 12px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .event-row {
        height: auto;
        gap: 8px;
    }
    .event-col.date {
        width: 55px;
    }
    .event-day {
        font-size: 20px;
    }
    .event-month {
        font-size: 9px;
    }
    .event-col.center {
        padding: 10px;
    }
    .event-title {
        font-size: 13px;
    }
    .event-desc {
        display: none;
    }
    .event-col.poster {
        width: 70px;
    }
    .event-controls {
        display: none !important;
    }
}
/* ================== FIXED: Scroller styles with proper hover pause ================== */
:root {
    --accent: #ff7a00;
    --card-width: 320px;
    --gap: 20px;
    --speed: 30s;
    --radius: 14px;
}
/* container */
.double-scroll {
    background: linear-gradient(180deg, #fff7f0 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(13, 18, 25, 0.03);
}
/* row wrapper */
.scroller-area {
    width: 100%;
    overflow: hidden;
    margin-bottom: 18px;
}
.scroller-track {
    display: flex;
    gap: var(--gap);
    white-space: nowrap;
    align-items: flex-start;
    padding: 6px 4px;
}
/* Row 1 animation (listings - scrolls LEFT) */
.row-1 .scroller-track {
    animation: scrollLeft var(--speed) linear infinite;
}
/* Row 2 animation (properties - scrolls RIGHT) */
.row-2 .scroller-track {
    animation: scrollRight var(--speed) linear infinite;
}
/* CRITICAL FIX: Pause animation ONLY when hovering the scroller-area itself */
.scroller-area:hover .scroller-track {
    animation-play-state: paused !important;
}
/* item */
.scroller-item {
    flex: 0 0 var(--card-width);
}
/* clickable */
.card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
/* Mobile Fix */
.scroller-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.scroller-area {
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}
.scroller-area.dragging {
    cursor: grabbing;
}
.scroller-area::-webkit-scrollbar {
    display: none;
}
.scroller-area {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroller-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    user-select: none;
    -webkit-user-select: none;
    gap: 16px;
    padding: 10px 16px;
}

.scroller-item {
    flex-shrink: 0;
    width: 260px; /* card width — adjust as needed */
}

/* Mobile card size fix */
@media (max-width: 768px) {
    .scroller-item {
        width: 220px;
    }
    .card-box {
        width: 100%;
    }
}
/* card */
.card-box {
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
/* image */
.card-img {
    position: relative;
    overflow: hidden;
    height: 180px;
    width: 100%;
    border-radius: 10px;
    background: #f3f4f6;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.card-box:hover .card-img img {
    transform: scale(1.06);
}
.cta {
    position: absolute;
    bottom: 8px;
    right: 10px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    opacity: 0;
    transition: 0.2s;
}
.card-box:hover .cta {
    opacity: 1;
}
/* head row */
.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 6px;
}
.card-head .badge {
    margin: 10px 12px 0;
    background: #e8f2ff;
    color: #0071ff;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    display: inline-block;
}
.logo-small {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    animation: floatMicro 3s ease-in-out infinite alternate;
}
@keyframes floatMicro {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-5px);
    }
}
/* title, subtitle */
.card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 10px 12px 4px;
    text-align: left;
    min-height: 38px;
    color: #0f1720;
    line-height: 1.15;
}
.card-sub {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
    padding: 0 12px;
}
/* rating & details row */
.meta-row {
    margin: 0 12px;
    margin-top: auto;
    padding-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.rating-pill {
    background: #f6f6f6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #111;
}
.rating-pill .fa-star {
    color: #ffb400;
}
/* Property-specific styles */
.rent-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6f3c;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    z-index: 10;
}
.details-row {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    margin: 6px 12px 10px;
}
.detail-item {
    font-size: 13px;
    color: #444;
    display: flex;
    gap: 6px;
    align-items: center;
}
.rent-inline {
    font-size: 13px;
    color: #22c55e;
    font-weight: 600;
}
/* WhatsApp button */
.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    border: none;
    cursor: pointer;
}
.wa-btn .wa-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}
/* scrolling keyframes */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
/* responsive tweaks */
@media (max-width: 980px) {
    :root {
        --card-width: 300px;
        --speed: 11s;
    }
    .card-img {
        height: 150px;
    }
}
@media (max-width: 560px) {
    :root {
        --card-width: 210px;
        --speed: 9s;
        --gap: 14px;
    }
    .card-img {
        height: 120px;
    }
    .logo-small {
        width: 44px;
        height: 44px;
    }
    .card-title {
        font-size: 14px;
    }
}

/* ── News Section Reset ─────────────────────────────── */
.news-section {
    background: #0a0a0f;
    padding: 72px 0 64px;
    font-family: "Georgia", serif;
}

.news-section .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e63946;
    color: #fff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 6px;
}

.news-section .section-label::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: blink 1.2s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.news-section h1 {
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    margin: 0 0 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.news-section .sub {
    color: #888;
    font-size: 15px;
    font-family: Arial, sans-serif;
    margin-bottom: 32px;
}

/* ── Ticker Bar ─────────────────────────────────────── */
.news-ticker-bar {
    background: #e63946;
    display: flex;
    align-items: center;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    margin-bottom: 0;
}

.news-ticker-label {
    background: #b5202c;
    color: #fff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.news-ticker-scroll {
    overflow: hidden;
    flex: 1;
}

.news-ticker-inner {
    display: flex;
    gap: 48px;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

.news-ticker-inner span {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 0;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Main Grid ──────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 0;
    background: #111118;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    min-height: 480px;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-feed {
        display: none;
    }
}

/* ── Hero Card ──────────────────────────────────────── */
.news-hero {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 480px;
}

.news-hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.news-hero:hover .news-hero-img {
    transform: scale(1.03);
}

.news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.3) 55%,
        transparent 100%
    );
}

.news-hero-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 24px;
}

.news-hero-cat {
    display: inline-block;
    background: #e63946;
    color: #fff;
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.news-hero-title {
    color: #fff;
    font-size: clamp(17px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.news-hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #aaa;
    font-family: Arial, sans-serif;
    font-size: 12px;
}

.news-hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-hero-play {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(230, 57, 70, 0.9);
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 6px 14px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.news-hero-play:hover {
    background: #c62835;
}

/* ── Side Feed ──────────────────────────────────────── */
.news-feed {
    border-left: 1px solid #1e1e28;
    display: flex;
    flex-direction: column;
}

.news-feed-header {
    padding: 14px 18px;
    border-bottom: 1px solid #1e1e28;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-feed-header span {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #e63946;
    text-transform: uppercase;
}

.news-feed-list {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.news-feed-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.news-feed-item {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #1a1a24;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}

.news-feed-item:hover,
.news-feed-item.active {
    background: #16161f;
}

.news-feed-item.active {
    border-left: 3px solid #e63946;
}

.news-feed-thumb {
    width: 90px;
    height: 75px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.news-feed-content {
    flex: 1;
    min-width: 0;
}

.news-feed-cat {
    font-family: "Arial Narrow", Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #e63946;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.news-feed-title {
    color: #ddd;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    font-family: Arial, sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-feed-time {
    color: #555;
    font-family: Arial, sans-serif;
    font-size: 12px;
    margin-top: 4px;
}

.news-feed-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-top: 1px solid #1e1e28;
}

.news-feed-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
    border: none;
    cursor: pointer;
    transition:
        background 0.2s,
        transform 0.2s;
    padding: 0;
}

.news-feed-dot.active {
    background: #e63946;
    transform: scale(1.3);
}

/* ======================================================================
   TOURISM PICKS — FINAL CLEAN VERSION (JS Infinite Scroll Compatible)
   ====================================================================== */

:root {
    --primary-orange: #f87a3b;
    --gradient-orange: linear-gradient(
        135deg,
        #f8773a 0%,
        #f88a3c 25%,
        #f89e40 55%,
        #f8b844 100%
    );
    --card-bg: #ffffff;
    --text-dark: #2d2d2d;
    --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 50px rgba(248, 122, 59, 0.28);
    --card-gap: 24px;
}

/* =========================
   SCROLLER AREA (IMPORTANT)
   ========================= */

.tourism-scroller-area {
    width: 100%;
    margin: 30px auto;
    overflow-x: scroll;      /* MUST be scroll for JS */
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.tourism-scroller-area.dragging {
    cursor: grabbing;
}

.tourism-scroller-area::-webkit-scrollbar {
    display: none;
}

.tourism-scroller-area {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* =========================
   TRACK
   ========================= */

.tourism-scroller-track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--card-gap);
    width: max-content;
    padding: 10px 16px;
    user-select: none;
}

/* =========================
   CARD
   ========================= */

.event-box.ig-style {
    flex: 0 0 374px;
    width: 374px;
    height: 537px;
    border-radius: 30px;
    padding: 14px;
    background: var(--gradient-orange);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: all 0.35s ease;
}

.event-box.ig-style:hover {
    box-shadow: var(--shadow-hover);
}

/* =========================
   HEADER
   ========================= */

.ig-window-header {
    background: var(--card-bg);
    height: 44px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.ig-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-orange);
    margin-right: 10px;
}

/* =========================
   BODY
   ========================= */

.ig-window-body {
    flex: 1;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ig-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--text-dark);
    gap: 12px;
}

/* =========================
   IMAGE
   ========================= */

.ig-card-img {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
}

.ig-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-card:hover .ig-card-img img {
    transform: scale(1.08);
}

/* =========================
   CONTENT
   ========================= */

.ig-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wt-rating-section {
    margin: 6px 0;
}

.wt-rating i {
    font-size: 14px;
}

.event-meta-line {
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.event-meta-line i {
    color: var(--primary-orange);
}

/* =========================
   BUTTON
   ========================= */

.view-btn {
    margin-top: auto;
    align-self: center;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: #fff;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* =========================
   STATIC GRID (≤ 3 ITEMS)
   ========================= */

.tourism-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--card-gap);
}

/* =========================
   TABLET
   ========================= */

@media (max-width: 992px) {
    .event-box.ig-style {
        flex: 0 0 320px;
        width: 320px;
        height: 500px;
    }

    .ig-card-img {
        height: 190px;
    }
}

/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    .tourism-scroller-area {
        width: 100vw;
        margin-left: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .tourism-scroller-track {
        gap: 12px;
        padding: 0 16px 20px;
    }

    .tourism-scroller-track .event-box.ig-style {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
        height: 500px;
        scroll-snap-align: start;
    }

    .ig-card-img {
        height: 180px;
    }
}
:root{
 --primary-orange:#f87a3b;
 --gradient-orange:linear-gradient(
 135deg,#f8773a 0%,#f88a3c 25%,#f89e40 55%,#f8b844 100%);
 --card-bg:#fff;
 --text-dark:#2d2d2d;
 --shadow-soft:0 8px 25px rgba(0,0,0,.12);
 --shadow-hover:0 20px 50px rgba(248,122,59,.28);
 --card-gap:24px;
}


/* ====================
SCROLLER AREA
==================== */

.tourism-scroller-area{

width:100%;
margin:30px auto;

overflow-x:auto;
overflow-y:hidden;

cursor:grab;

-webkit-overflow-scrolling:touch;

-ms-overflow-style:none;
scrollbar-width:none;

}

.tourism-scroller-area::-webkit-scrollbar{
display:none;
}

.tourism-scroller-area.dragging{
cursor:grabbing;
}


/* ====================
TRACK
==================== */

.tourism-scroller-track{

display:flex;
flex-wrap:nowrap;

gap:var(--card-gap);

width:max-content;

padding:10px 16px;

user-select:none;

will-change:transform;

}


/* ====================
CARD
==================== */

.event-box.ig-style{

flex:0 0 374px;
width:374px;
height:537px;

border-radius:30px;

padding:14px;

background:var(--gradient-orange);

display:flex;
flex-direction:column;

box-shadow:var(--shadow-soft);

transition:.35s ease;

}

.event-box.ig-style:hover{
box-shadow:var(--shadow-hover);
}


/* HEADER */

.ig-window-header{

background:#fff;

height:44px;

border-radius:22px;

display:flex;

align-items:center;

padding:0 18px;

margin-bottom:12px;

font-weight:600;

color:var(--text-dark);

}

.ig-dot{

width:14px;
height:14px;

border-radius:50%;

background:var(--primary-orange);

margin-right:10px;

}


/* BODY */

.ig-window-body{

flex:1;

background:#fff;

border-radius:20px;

padding:14px;

display:flex;

flex-direction:column;

overflow:hidden;

}

.ig-card{

display:flex;

flex-direction:column;

height:100%;

text-decoration:none;

color:#2d2d2d;

gap:12px;

}


/* IMAGE */

.ig-card-img{

width:100%;

height:220px;

overflow:hidden;

border-radius:14px;

}

.ig-card-img img{

width:100%;
height:100%;

object-fit:cover;

transition:.5s;

}

.ig-card:hover img{

transform:scale(1.08);

}


/* CONTENT */

.event-title{

font-size:20px;

font-weight:700;

margin-bottom:6px;

line-height:1.3;

display:-webkit-box;

-webkit-line-clamp:2;

-webkit-box-orient:vertical;

overflow:hidden;

}

.event-meta-line{

font-size:13px;

display:flex;

flex-wrap:wrap;

gap:10px;

margin-top:8px;

}

.event-meta-line i{
color:var(--primary-orange);
}


/* BUTTON */

.view-btn{

margin-top:auto;

align-self:center;

border:2px solid var(--primary-orange);

color:var(--primary-orange);

background:#fff;

border-radius:50px;

padding:8px 22px;

font-size:14px;

font-weight:600;

transition:.3s;

}

.view-btn:hover{

background:var(--primary-orange);

color:#fff;

}


/* TABLET */

@media(max-width:992px){

.event-box.ig-style{

flex:0 0 320px;
width:320px;
height:500px;

}

.ig-card-img{
height:190px;
}

}


/* MOBILE */

@media(max-width:768px){

.tourism-scroller-track{

gap:12px;

padding:0 16px 20px;

}

.event-box.ig-style{

flex:0 0 280px;

width:280px;

height:500px;

}

.ig-card-img{
height:180px;
}

}

/* Desktop view */
.listing-image {
    border-radius: 12px;
    height: auto;
    max-height: 500px;
    display: block;
    margin: 0 auto;
}
/* Play button overlay */
.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 25px;
}
/* Mobile view */
@media (max-width: 768px) {
    .listing-image {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    .play-button-overlay svg {
        width: 40px;
        height: 40px;
    }
}
:root {
    --grad: linear-gradient(135deg, #ff6b35, #f7931e);
}
.pricing-card {
    border-radius: 20px;
    transition: 0.4s ease;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.ribbon {
    position: absolute;
    top: 18px;
    right: -40px;
    background: var(--grad);
    color: #fff;
    padding: 8px 50px;
    font-weight: bold;
    transform: rotate(45deg);
}
.toggle-btn {
    border: 2px solid #f7931e;
    color: #f7931e;
    background: transparent;
}
.toggle-btn.active {
    background: var(--grad);
    color: #fff;
    border-color: transparent;
}
.btn-gradient {
    background: var(--grad);
    color: #fff;
    border-radius: 50px;
}
.btn-outline-gradient {
    border: 2px solid #f7931e;
    color: #f7931e;
    background: transparent;
    border-radius: 50px;
}
.btn-gradient:hover,
.btn-outline-gradient:hover {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 10px 25px rgba(247, 147, 30, 0.4);
}
.pricing-list li {
    margin-bottom: 10px;
}
.pricing-list i {
    color: #f7931e;
    margin-right: 8px;
}
/* Soft badge */
.badge-soft {
    background: rgba(247, 147, 30, 0.15);
    color: #f7931e;
    border: 1px solid rgba(247, 147, 30, 0.4);
    font-weight: 600;
}
/* ═══════════════════════════════════════════════════════
   EVENTS SECTION – COMPLETE STYLES
   ═══════════════════════════════════════════════════════ */

/* ─── Scroller Wrapper ─────────────────────────────────── */
.events-scroller-area {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

/* ─── Scrolling Track ──────────────────────────────────── */
.events-scroller-track {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 6px 4px;
    animation: scrollEventsLeft 10s linear infinite;
    will-change: transform;
}

/* Pause on hover */
.events-scroller-area:hover .events-scroller-track {
    animation-play-state: paused;
}

/* ─── Scroller Item Slot ───────────────────────────────── */
.events-scroller-item {
    flex: 0 0 300px;
    width: 300px;
}

/* ─── Event Card ───────────────────────────────────────── */
.eventCard {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #eee;
    background: #000;
    position: relative;
    display: block;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.eventCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ─── Poster Image ─────────────────────────────────────── */
.evImg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.evImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.eventCard:hover .evImg img {
    transform: scale(1.05);
}

/* ─── Date & Tag Badges ────────────────────────────────── */
.evDate,
.evTag {
    position: absolute;
    top: 12px;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
}

.evDate {
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    backdrop-filter: blur(4px);
}

.evTag {
    right: 12px;
    background: #ff5837;
    color: #fff;
}

/* ─── Title Bar (visible by default) ──────────────────── */
.evTitle {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 28px 14px 14px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 20;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.eventCard:hover .evTitle {
    opacity: 0;
}

/* ─── Hover Popup Panel ────────────────────────────────── */
.evPopup {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px;
    background: #ff5837;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition:
        transform 0.35s ease-in-out,
        opacity 0.35s ease-in-out;
    opacity: 0;
    z-index: 30;
    pointer-events: none;
    white-space: normal;
}

.eventCard:hover .evPopup {
    transform: translateY(0);
    opacity: 1;
}

.evPopup-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.35;
    margin-bottom: 8px;
}

.evMeta {
    margin-top: 8px;
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
}

.evMeta span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.evMeta i {
    font-size: 13px;
    flex-shrink: 0;
}

/* ─── Keyframe Animation ───────────────────────────────── */
@keyframes scrollEventsLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════════════════
   MOBILE – Native Horizontal Scroll (≤ 768px)
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .events-scroller-area {
        overflow-x: auto !important;
        overflow-y: visible !important;
        padding: 16px 0 24px !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .events-scroller-area::-webkit-scrollbar {
        display: none;
    }

    /* Kill animation, enable native scroll */
    .events-scroller-track {
        animation: none !important;
        transform: none !important;
        width: max-content;
        flex-wrap: nowrap;
        gap: 14px;
        padding: 6px 16px 6px;
        align-items: flex-start;
    }

    /* Stop animation pause-on-hover interfering */
    .events-scroller-area:hover .events-scroller-track {
        animation-play-state: running;
    }

    .events-scroller-item {
        flex: 0 0 78vw !important;
        width: 78vw !important;
        scroll-snap-align: start;
    }

    /* Card fills its slot */
    .events-scroller-item .eventCard {
        width: 100% !important;
        height: 420px !important;
    }

    /* Show popup info statically on mobile (no hover) */
    .eventCard .evPopup {
        transform: translateY(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: rgba(255, 88, 55, 0.92);
        padding: 12px 14px;
        border-radius: 16px 16px 0 0;
    }

    .eventCard .evTitle {
        display: none;
    }

    .evPopup-title {
        font-size: 15px;
    }

    .evMeta span {
        font-size: 12px;
    }
}

/* ── To-Let Property Card ─────────────────────────── */
.prop-card {
    width: 240px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    text-decoration: none;
    display: block;
    color: inherit;
}

.prop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
    color: inherit;
    text-decoration: none;
}

.prop-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.prop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.prop-card:hover .prop-card-img img {
    transform: scale(1.06);
}

.prop-card-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 4px;
}

.prop-card-price {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #e63946;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    line-height: 1.2;
}

.prop-card-price small {
    font-size: 9px;
    font-weight: 500;
    display: block;
    opacity: 0.85;
}

.prop-card-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.prop-card-status.available {
    background: #22c55e;
}

.prop-card-status.unavailable {
    background: #ef4444;
}

.prop-card-body {
    padding: 14px 14px 14px;
}

.prop-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prop-card-specs {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.prop-card-spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #062eff;
    background: #e9e9ff;
    padding: 3px 8px;
    border-radius: 4px;
}

.prop-card-spec i {
    color: #5779ff;
    font-size: 10px;
}

.prop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.prop-card-stars {
    color: #f59e0b;
    font-size: 10px;
    display: flex;
    gap: 2px;
}

.prop-card-reviews {
    font-size: 10px;
    color: #999;
    margin-left: 4px;
}

.prop-card-avail {
    font-size: 10px;
    font-weight: 600;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prop-card-avail.na {
    color: #ef4444;
}
@media (max-width: 768px) {
    .to-let-static-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 12px !important;
        padding: 0 12px 16px !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
    }

    .to-let-static-grid .col-12 {
        flex: 0 0 180px !important;
        width: 180px !important;
        max-width: 180px !important;
        padding: 0 !important;
        margin: 0 !important;
        scroll-snap-align: start !important;
    }

    .to-let-static-grid .prop-card {
        width: 100% !important;
    }

    .to-let-static-grid::-webkit-scrollbar {
        display: none;
    }
    .to-let-static-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* =====================================================================
   HK SHARED SECTION UTILITIES
   ===================================================================== */

.hk-section-icon-white {
    color: #ffffff;
}

.hk-section-title-white {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #ffffff;
}

.hk-section-title-dark {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: #1a1a1a;
}

.hk-section-subtitle-light {
    font-size: 1.1rem;
    color: #ccc;
}

.hk-section-subtitle-dark {
    font-size: 1.1rem;
    color: #666;
}

.hk-sep-gradient {
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.hk-news-label {
    color: #667eea;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hk-max-w-600 {
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================================
   HK PROPERTY CARDS — Modern Real-Estate Style
   ===================================================================== */

/* Force equal card heights inside owl-carousel */
.owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.owl-carousel .owl-item,
.owl-carousel .owl-item > .item {
    height: auto;
    display: flex;
    flex-direction: column;
}

.owl-carousel .owl-item > .item > .hk-property-card {
    flex: 1;
}

.hk-property-card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.hk-property-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 60px rgba(16, 185, 129, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(16, 185, 129, 0.15);
}

.hk-property-img {
    height: 230px;
    position: relative;
    overflow: hidden;
}

.hk-property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hk-property-card:hover .hk-property-img img {
    transform: scale(1.1);
}

.hk-property-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
    pointer-events: none;
}

.hk-property-price {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
    letter-spacing: 0.2px;
    line-height: 1.2;
}

.hk-property-type {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
}

.hk-property-body {
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hk-property-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1a1a2e;
    line-height: 1.4;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hk-property-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #6b7280;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.4;
}

.hk-property-location span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hk-property-location i {
    color: #10b981;
    margin-top: 2px;
    flex-shrink: 0;
}

.hk-property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
    margin-top: auto;
}

.hk-property-feature {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f0fdf4;
    padding: 5px 12px;
    border-radius: 8px;
}

.hk-property-feature i {
    color: #10b981;
    font-size: 13px;
}

.hk-call-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.3px;
}

.hk-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(16, 185, 129, 0.45);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* =====================================================================
   HK EVENT CARDS
   ===================================================================== */

.hk-event-card-item {
    padding: 0 8px;
}

.hk-event-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    height: 100%;
}

.hk-event-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.hk-event-card {
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hk-event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.hk-event-img {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.hk-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hk-event-card:hover .hk-event-img img {
    transform: scale(1.08);
}

.hk-event-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    pointer-events: none;
}

.hk-event-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a24 100%);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    min-width: 58px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.hk-event-date-day {
    font-size: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.hk-event-date-month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hk-event-type-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hk-badge-paid {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

.hk-badge-free {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.hk-event-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hk-event-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1a1a1a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hk-event-meta {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 14px;
}

.hk-event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
}

.hk-event-meta-item:last-child {
    margin-bottom: 0;
}

.hk-event-meta-item i {
    color: #667eea;
    font-size: 15px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* =====================================================================
   HK TOURISM CARDS
   ===================================================================== */

.hk-tourism-card {
    border-radius: 18px;
    overflow: hidden;
    background: #1e1e2e;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.hk-tourism-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.25);
}

.hk-tourism-img {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.hk-tourism-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hk-tourism-card:hover .hk-tourism-img img {
    transform: scale(1.08);
}

.hk-tourism-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 46, 0.15);
    pointer-events: none;
}

.hk-tourism-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3) 50%, transparent);
    padding: 50px 24px 24px;
    color: white;
}

.hk-tourism-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.4);
    letter-spacing: 0.5px;
}

.hk-tourism-title {
    font-size: 22px;
    font-weight: 700;
    margin: 8px 0;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hk-tourism-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: white;
}

.hk-tourism-location i {
    font-size: 16px;
}

.hk-tourism-cta-wrap {
    padding: 18px 24px;
    text-align: center;
    background: #1e1e2e;
}

.hk-tourism-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.hk-tourism-cta:hover {
    color: #a78bfa;
    text-decoration: none;
}

.hk-tourism-cta i {
    transition: transform 0.3s ease;
    font-size: 13px;
}

.hk-tourism-card:hover .hk-tourism-cta i {
    transform: translateX(5px);
}

/* =====================================================================
   RESPONSIVE — TABLET (768px - 1199px)
   ===================================================================== */

@media (max-width: 1199px) and (min-width: 768px) {
    .hk-property-img {
        height: 200px;
    }

    .hk-event-img {
        height: 190px;
    }

    .hk-tourism-img {
        height: 240px;
    }

    .hk-section-title-white,
    .hk-section-title-dark {
        font-size: 2rem;
    }
}

/* =====================================================================
   RESPONSIVE — MOBILE (< 768px)
   ===================================================================== */

@media (max-width: 767px) {
    .hk-property-img {
        height: 180px;
    }


    .hk-property-body {
        padding: 14px 14px;
    }

    .hk-property-title {
        font-size: 14px;
        min-height: unset;
    }

    .hk-property-price {
        padding: 6px 12px;
        font-size: 13px;
    }

    .hk-property-type {
        padding: 5px 10px;
        font-size: 10px;
    }

    .hk-property-feature {
        padding: 4px 8px;
        font-size: 11px;
    }

    .hk-event-img {
        height: 170px;
    }

    .hk-event-body {
        padding: 16px 14px;
    }

    .hk-event-title {
        font-size: 15px;
    }

    .hk-event-date-badge {
        padding: 8px 10px;
        min-width: 50px;
    }

    .hk-event-date-day {
        font-size: 17px;
    }

    .hk-tourism-img {
        height: 220px;
    }

    .hk-tourism-title {
        font-size: 18px;
    }

    .hk-tourism-cta-wrap {
        padding: 14px 18px;
    }

    .hk-section-title-white,
    .hk-section-title-dark {
        font-size: 1.6rem;
    }

    .hk-section-subtitle-light,
    .hk-section-subtitle-dark {
        font-size: 0.95rem;
    }
}
