/* =========================================================
   ISWHERE HOME
========================================================= */

.home-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 18% 22%, rgba(252, 91, 98, 0.28), transparent 30%),
        radial-gradient(circle at 82% 30%, rgba(20, 184, 166, 0.18), transparent 28%),
        linear-gradient(135deg, #081120 0%, #132d57 52%, #0a1526 100%);
}

.home-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 72px 72px;
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    max-width: 760px;
    padding: 70px 0 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
}

.hero-badge:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fc5b62;
    box-shadow: 0 0 16px rgba(252, 91, 98, 0.8);
}

.home-hero h1 {
    margin: 0 0 26px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6.3rem);
    line-height: 0.96;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.home-hero h1 span {
    display: block;
}

.home-hero p {
    max-width: 640px;
    font-size: 1.18rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* =========================================================
   LOCATION BAR
========================================================= */

.home-location-bar {
    margin-top: -42px;
    position: relative;
    z-index: 5;
}

.location-card {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 24px;
    border: 1px solid rgba(231, 237, 247, 0.95);
    background: radial-gradient(circle at 4% 10%, rgba(252, 91, 98, 0.08), transparent 28%),
        radial-gradient(circle at 96% 10%, rgba(37, 99, 235, 0.07), transparent 26%),
        linear-gradient(135deg, #ffffff 0%, #fbfdff 48%, #fff7f7 100%);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.11);
}

.location-card:before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.45),
        transparent 45%,
        rgba(252, 91, 98, 0.04)
    );
}

.location-info,
.location-actions {
    position: relative;
    z-index: 1;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.location-info > span:first-child {
    font-size: 0.82rem;
    color: var(--iw-muted);
}

.location-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--iw-dark);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.2;
}

.location-current {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    margin-left: 6px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #e7edf7;
    background: rgba(248, 251, 255, 0.9);
    color: var(--iw-dark);
    cursor: pointer;
    line-height: 1;
    box-shadow: none;
    transition: all 0.22s ease;
}

.location-current i {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: rgba(252, 91, 98, 0.1);
    color: var(--iw-coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    transition: all 0.22s ease;
}

.location-sub {
    font-size: 0.76rem;
    font-weight: 800;
    color: #64748b;
    white-space: nowrap;
}

.location-current:hover {
    background: #ffffff;
    border-color: rgba(252, 91, 98, 0.28);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.location-current:hover i {
    background: rgba(252, 91, 98, 0.16);
    transform: translateY(1px);
}

.location-current:hover .location-sub {
    color: var(--iw-coral);
}

.location-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.location-switch,
.location-map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 17px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: all 0.22s ease;
}

.location-switch {
    color: var(--iw-dark);
    background: rgba(248, 251, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.location-switch:hover {
    color: var(--iw-primary);
    background: #ffffff;
    border-color: rgba(252, 91, 98, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

/* Map View button - fresher coral/orange gradient */
.location-map-btn {
    color: #fff;
    border: 0;
    background: linear-gradient(135deg, #fc5b62 0%, #ff7a45 52%, #ffb347 100%);
    box-shadow: 0 14px 32px rgba(252, 91, 98, 0.24);
}

.location-map-btn:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(252, 91, 98, 0.3);
}

.location-action-icon {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: inherit;
    background: transparent;
    box-shadow: none;
    text-shadow: none;
}

.location-action-icon-2 {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    line-height: 1;
    font-family: Arial, sans-serif;
    font-weight: 700;
    color: inherit;
    background: transparent;
    box-shadow: none;
    text-shadow: none;
}

.location-map-btn .location-action-icon {
    color: #fff !important;
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

@media (max-width: 768px) {
    .location-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .location-main {
        flex-wrap: wrap;
        gap: 8px;
    }

    .location-current {
        margin-left: 0;
    }

    .location-actions {
        width: 100%;
        gap: 10px;
        justify-content: space-between;
    }

    .location-switch,
    .location-map-btn {
        flex: 1;
        min-height: 40px;
        padding: 0 13px;
        font-size: 0.78rem;
    }
}

@media (max-width: 420px) {
    .location-actions {
        flex-direction: column;
    }

    .location-switch,
    .location-map-btn {
        width: 100%;
    }
}

/* Search */
.home-search-section {
    padding: 32px 0 24px;
}

.home-search-card {
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.home-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.home-search-input-wrap i {
    position: absolute;
    left: 18px;
    color: var(--iw-primary);
    z-index: 2;
}

.home-search-input {
    width: 100%;
    height: 58px;
    border: 1px solid var(--iw-border);
    border-radius: 18px;
    padding: 0 130px 0 48px;
    font-size: 1rem;
    outline: none;
}

.home-search-input:focus {
    border-color: rgba(252, 91, 98, 0.45);
    box-shadow: 0 0 0 4px rgba(252, 91, 98, 0.1);
}

.home-search-loader {
    position: absolute;
    right: 18px;
    font-size: 0.85rem;
    color: var(--iw-muted);
}

.home-search-results {
    margin-top: 14px;
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.home-search-results::-webkit-scrollbar {
    width: 8px;
}

.home-search-results::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.45);
    border-radius: 999px;
}

.home-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.home-search-result-item {
    display: flex;
    gap: 14px;
    padding: 15px 18px;
    color: var(--iw-dark);
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: background 0.2s ease;
}

.home-search-result-item:last-child {
    border-bottom: 0;
}

.home-search-result-item:hover {
    background: #f8fbff;
}

.home-search-result-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(252, 91, 98, 0.1);
    color: var(--iw-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-search-result-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.home-search-result-item small {
    display: block;
    color: var(--iw-muted);
    font-size: 0.82rem;
}

.home-search-empty {
    padding: 18px;
    color: var(--iw-muted);
    font-weight: 600;
    text-align: center;
}

/* Common Sections */
.home-dmo-spotlight,
.home-featured-section,
.home-recommendations-section,
.home-categories-section {
    padding: 46px 0;
}

.section-heading span {
    display: block;
    color: var(--iw-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--iw-dark);
    margin: 0;
}

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 24px;
}

.section-view-all {
    color: var(--iw-primary);
    font-weight: 700;
    text-decoration: none;
}

/* Cards */
.home-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.home-listing-card,
.recommendation-card,
.category-card {
    display: block;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--iw-dark);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
    border: 1px solid var(--iw-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-listing-card:hover,
.recommendation-card:hover,
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.11);
}

.home-listing-image,
.category-card-image {
    height: 170px;
    background: radial-gradient(circle at 20% 20%, rgba(252, 91, 98, 0.22), transparent 34%),
        linear-gradient(135deg, #edf6ff, #f8fbff);
}

.home-listing-body,
.recommendation-card {
    padding: 22px;
}

.home-listing-body h3,
.recommendation-card h3,
.category-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 8px;
}

.home-listing-body p,
.recommendation-card p {
    color: var(--iw-muted);
    margin: 0;
}

.category-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-card h3 {
    padding: 18px 20px 22px;
}

/* Mobile */
@media (max-width: 1199px) {
    .home-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .dmo-spotlight-card {
        grid-template-columns: 1fr;
    }

    .home-card-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 560px;
    }

    .home-hero-content {
        padding: 60px 0 80px;
    }

    .home-hero h1 {
        font-size: clamp(2.8rem, 15vw, 4.3rem);
    }

    .home-hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-search-input {
        padding-right: 22px;
    }

    .home-search-loader {
        position: static;
        margin-left: 10px;
    }

    .dmo-spotlight-content {
        padding: 20px 10px 10px;
    }

    .home-card-grid,
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.home-hero-slider {
    display: block;
    min-height: auto;
}

.home-hero-slider .carousel,
.home-hero-slider .carousel-inner,
.home-hero-slider .carousel-item {
    min-height: 680px;
}

.home-hero-slider .carousel-item {
    position: relative;
}

.home-hero-grid {
    min-height: 680px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.home-hero-visual {
    position: relative;
}

.home-hero-visual img {
    width: 100%;
    max-height: 390px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-hero-slider .carousel-indicators {
    bottom: 28px;
}

.home-hero-slider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.45);
}

.home-hero-slider .carousel-indicators .active {
    background-color: var(--iw-primary);
}

.home-hero-slider .carousel-control-prev,
.home-hero-slider .carousel-control-next {
    width: 6%;
}

@media (max-width: 991px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 70px 0 90px;
        text-align: center;
    }

    .home-hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .home-hero-visual img {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .home-hero-slider .carousel,
    .home-hero-slider .carousel-inner,
    .home-hero-slider .carousel-item,
    .home-hero-grid {
        min-height: 620px;
    }

    .home-hero-grid {
        padding: 50px 0 80px;
    }

    .home-hero-visual img {
        max-height: 230px;
        border-radius: 22px;
    }

    .home-hero-slider .carousel-control-prev,
    .home-hero-slider .carousel-control-next {
        display: none;
    }
}

.hero-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
}

.hero-store-badges a {
    display: inline-flex;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.hero-store-badges a:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

.hero-store-badges img {
    height: 54px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-store-badges {
        justify-content: center;
    }

    .hero-store-badges img {
        height: 44px;
    }

    .location-actions {
        width: 100%;
        justify-content: space-between;
    }
}

.home-hero-slider .carousel-item {
    transition: transform 0.9s ease-in-out;
}

.category-card-image {
    height: 170px;
    background: radial-gradient(circle at 20% 20%, rgba(252, 91, 98, 0.16), transparent 34%),
        linear-gradient(135deg, #edf6ff, #f8fbff);
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.06);
}

.home-empty-card {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px solid var(--iw-border);
    border-radius: 22px;
    padding: 26px;
    color: var(--iw-muted);
    text-align: center;
}

.home-listing-image {
    height: 180px;
    overflow: hidden;
}

.home-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
    display: block;
}

.home-listing-card:hover .home-listing-image img {
    transform: scale(1.06);
}

.listing-chip {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(252, 91, 98, 0.1);
    color: var(--iw-primary);
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.listing-meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--iw-muted);
}

.recommendation-card .listing-chip {
    margin-bottom: 14px;
}

.listing-distance {
    display: inline-flex;
    margin-top: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(252, 91, 98, 0.1);
    color: var(--iw-primary);
    font-size: 0.78rem;
    font-weight: 800;
}

.recommendation-card {
    position: relative;
    min-height: 250px;
}

.recommendation-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 12px;
    border-radius: 10px;
    background: var(--iw-primary);
    color: #fff;
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.home-recommendations-section .recommendation-card,
.recommendations-full-section .recommendation-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    isolation: isolate;
}

.home-recommendations-section .recommendation-card:before,
.recommendations-full-section .recommendation-card:before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 18% 12%, rgba(252, 91, 98, 0.16), transparent 34%),
        radial-gradient(circle at 90% 8%, rgba(20, 184, 166, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.home-recommendations-section .recommendation-card:after,
.recommendations-full-section .recommendation-card:after {
    content: '';
    position: absolute;
    z-index: 0;
    right: -28px;
    top: -28px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 18px solid rgba(252, 91, 98, 0.07);
}

.home-recommendations-section .recommendation-card-top,
.recommendations-full-section .recommendation-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-recommendations-section .recommendation-card-body,
.recommendations-full-section .recommendation-card-body {
    position: relative;
    z-index: 1;
    flex: 1;
}

.home-recommendations-section .recommendation-card-body p,
.recommendations-full-section .recommendation-card-body p {
    line-height: 1.65;
}

.home-recommendations-section .recommendation-card-footer,
.recommendations-full-section .recommendation-card-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    color: var(--iw-primary);
    font-size: 0.84rem;
    font-weight: 800;
}

.home-recommendations-section .recommendation-card-footer i,
.recommendations-full-section .recommendation-card-footer i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(252, 91, 98, 0.1);
    transition: transform 0.25s ease, background 0.25s ease;
}

.home-recommendations-section .recommendation-card:hover .recommendation-card-footer i,
.recommendations-full-section .recommendation-card:hover .recommendation-card-footer i {
    transform: translateX(3px);
    background: rgba(252, 91, 98, 0.16);
}

.home-recommendations-section .recommendation-label,
.recommendations-full-section .recommendation-label {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    max-width: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--iw-primary);
    border: 1px solid rgba(252, 91, 98, 0.18);
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-distance {
    display: inline-flex;
    align-items: center;
    margin-top: 8px !important;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(252, 91, 98, 0.1);
    color: var(--iw-primary) !important;
    font-size: 0.82rem;
    font-weight: 800;
}

/* =========================================================
   DMO SPOTLIGHT
========================================================= */

.home-dmo-spotlight {
    padding: 28px 0 24px;
}

.dmo-spotlight-card {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 12% 18%, rgba(59, 130, 246, 0.1) 0%, transparent 28%),
        radial-gradient(circle at 85% 22%, rgba(14, 165, 233, 0.08) 0%, transparent 24%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 48%, #f6f9ff 100%);
    border: 1px solid #eaf0f8;
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.07);
    padding: 24px;
}

.dmo-spotlight-header {
    margin-bottom: 18px;
}

.dmo-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.dmo-banner-panel,
.dmo-video-panel {
    position: relative;
    height: 430px;
    background: #fff;
    border: 1px solid #e7edf7;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.dmo-banner-media,
.dmo-video-thumb {
    position: relative;
    display: block;
    width: 100%;
    height: 430px;
    background: #eef5ff;
    overflow: hidden;
}

.dmo-banner-media img,
.dmo-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Bootstrap carousel inside DMO */
.dmo-banner-panel .carousel,
.dmo-banner-panel .carousel-inner,
.dmo-banner-panel .carousel-item,
.dmo-video-panel .carousel,
.dmo-video-panel .carousel-inner,
.dmo-video-panel .carousel-item {
    height: 100%;
}

.dmo-spotlight-card .carousel-indicators {
    bottom: 12px;
    margin-bottom: 0;
}

.dmo-spotlight-card .carousel-indicators [data-bs-target] {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.55);
}

.dmo-spotlight-card .carousel-indicators .active {
    background-color: var(--iw-primary);
}

.dmo-spotlight-card .carousel-control-prev,
.dmo-spotlight-card .carousel-control-next {
    width: 10%;
}

.dmo-play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 82px;
    height: 82px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s;
    z-index: 3;
}

.dmo-play-btn:hover {
    transform: scale(1.06);
}

.dmo-play-btn span {
    display: block;
    margin-left: 4px;
    width: 0;
    height: 0;
    border-left: 20px solid #ff5b00;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

/* Video Modal */
.dmo-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(8, 18, 40, 0.88);
    backdrop-filter: blur(8px);
    padding: 24px;
}

.dmo-video-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dmo-video-modal-dialog {
    width: min(1100px, 100%);
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.dmo-video-modal-frame-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.dmo-video-modal-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.dmo-video-modal-close {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: #fff;
    font-size: 28px;
    line-height: 1;
    color: #0d3f97;
}

body.dmo-video-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .dmo-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .dmo-banner-panel,
    .dmo-video-panel,
    .dmo-banner-media,
    .dmo-video-thumb {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .home-dmo-spotlight {
        padding: 18px 0;
    }

    .dmo-spotlight-card {
        padding: 14px;
        border-radius: 18px;
    }

    .dmo-banner-panel,
    .dmo-video-panel,
    .dmo-banner-media,
    .dmo-video-thumb {
        height: 190px;
        border-radius: 16px;
    }

    .dmo-play-btn {
        width: 58px;
        height: 58px;
    }

    .dmo-play-btn span {
        border-left: 14px solid #ff5b00;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }

    .dmo-video-modal {
        padding: 12px;
    }
}

@media (max-width: 420px) {
    .dmo-banner-panel,
    .dmo-video-panel,
    .dmo-banner-media,
    .dmo-video-thumb {
        height: 165px;
    }
}

/* =========================================================
   FEATURED DESTINATIONS PAGE
========================================================= */

.featured-page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(8, 17, 32, 0.86), rgba(19, 45, 87, 0.9)),
        url('../img/banner1.png') center / cover no-repeat;
}

.small-hero-content {
    max-width: 760px;
    padding: 70px 0;
    color: #fff;
}

.small-hero-content span {
    display: block;
    margin-bottom: 12px;
    color: #fc5b62;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.small-hero-content h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    font-weight: 800;
    line-height: 1;
}

.small-hero-content p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.7;
}

.featured-full-section {
    padding: 56px 0 72px;
}

@media (max-width: 768px) {
    .featured-page-hero {
        min-height: 260px;
    }

    .small-hero-content {
        padding: 54px 0;
    }

    .featured-full-section {
        padding: 42px 0 56px;
    }
}

/* =========================================================
   RECOMMENDATIONS PAGE
========================================================= */

.recommendations-page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(8, 17, 32, 0.86), rgba(19, 45, 87, 0.9)),
        url('../img/banner2.png') center / cover no-repeat;
}

.recommendations-full-section {
    padding: 56px 0 72px;
}

@media (max-width: 768px) {
    .recommendations-page-hero {
        min-height: 260px;
    }

    .recommendations-full-section {
        padding: 42px 0 56px;
    }
}

/* =========================================================
   ISWHERE FOOTER
========================================================= */

.iswhere-footer {
    margin-top: 70px;
    color: #fff;
    background: radial-gradient(circle at 18% 18%, rgba(252, 91, 98, 0.16), transparent 28%),
        radial-gradient(circle at 82% 26%, rgba(20, 184, 166, 0.14), transparent 24%),
        linear-gradient(135deg, #081120 0%, #132d57 50%, #0a1526 100%);
    position: relative;
    overflow: hidden;
}

.iswhere-footer:before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 72px 72px;
}

.iswhere-footer .container {
    position: relative;
    z-index: 2;
}

.iswhere-footer-top {
    padding: 70px 0 42px;
}

.footer-logo {
    width: 150px;
    margin-bottom: 22px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 20px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #fc5b62;
}

.footer-cta-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: 30px;
    backdrop-filter: blur(12px);
}

.footer-cta-card h5 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 14px 0 14px;
}

.footer-cta-card p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
    line-height: 1.75;
}

.iswhere-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

.footer-mini-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-mini-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-mini-links a:hover {
    color: #fc5b62;
}

@media (max-width: 768px) {
    .iswhere-footer-top {
        padding: 52px 0 30px;
    }

    .footer-logo {
        width: 132px;
    }

    .footer-cta-card {
        padding: 24px;
        border-radius: 20px;
    }

    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.footer-chip-link {
    text-decoration: none;
    transition: all 0.22s ease;
}

.footer-chip-link:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
}

.footer-chip-link.iw-chip-coral:hover {
    background: rgba(252, 91, 98, 0.18);
    color: #ff8086;
}

.footer-chip-link.iw-chip-blue:hover {
    background: rgba(37, 99, 235, 0.18);
    color: #7fb0ff;
}

/* =========================================================
   STATIC PAGES
========================================================= */

.static-page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 18% 22%, rgba(252, 91, 98, 0.22), transparent 30%),
        radial-gradient(circle at 82% 30%, rgba(20, 184, 166, 0.16), transparent 28%),
        linear-gradient(135deg, #081120 0%, #132d57 52%, #0a1526 100%);
}

.static-page-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 72px 72px;
}

.static-page-hero .container {
    position: relative;
    z-index: 2;
}

.static-page-section {
    padding: 56px 0 72px;
}

.static-page-card {
    background: #fff;
    border: 1px solid var(--iw-border);
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.static-page-kicker {
    color: var(--iw-coral);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.static-page-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.static-page-card p {
    color: var(--iw-muted);
    line-height: 1.8;
    margin-bottom: 0;
}

.static-contact-placeholder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.static-contact-placeholder div,
.static-faq-item {
    background: #f8fbff;
    border: 1px solid var(--iw-border);
    border-radius: 18px;
    padding: 20px;
}

.static-contact-placeholder strong,
.static-contact-placeholder span {
    display: block;
}

.static-contact-placeholder strong {
    margin-bottom: 6px;
    color: var(--iw-text);
}

.static-contact-placeholder span {
    color: var(--iw-muted);
}

.static-faq-list {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.static-faq-item h5 {
    font-weight: 800;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .static-page-hero {
        min-height: 260px;
    }

    .static-page-section {
        padding: 42px 0 56px;
    }

    .static-page-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .static-contact-placeholder {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   STATIC POLICY / TERMS CONTENT
========================================================= */

.static-policy-content {
    /*max-width: 900px;*/
}

.static-policy-content h3 {
    margin-top: 42px;
    margin-bottom: 16px;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--iw-text);
    line-height: 1.25;
}

.static-policy-content h3:first-child {
    margin-top: 0;
}

.static-policy-content p {
    margin-bottom: 18px;
    line-height: 1.9;
    color: var(--iw-muted-dark);
    text-align: justify;
}

.static-policy-content ul,
.static-policy-content ol {
    margin: 16px 0 24px 0;
    padding-left: 30px;
}

.static-policy-content ol {
    counter-reset: item;
}

.static-policy-content li {
    margin-bottom: 14px;
    padding-left: 6px;
    line-height: 1.85;
    color: var(--iw-muted-dark);
}

.static-policy-content li::marker {
    font-weight: 700;
    color: var(--iw-primary);
}

.static-policy-content ul ul,
.static-policy-content ol ol,
.static-policy-content ul ol,
.static-policy-content ol ul {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 26px;
}

.static-policy-content a {
    font-weight: 700;
    color: var(--iw-blue);
    word-break: break-word;
}

.static-policy-content a:hover {
    color: var(--iw-coral);
}

.static-policy-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--iw-coral);
    background: #f8fbff;
    border-radius: 14px;
    color: var(--iw-muted-dark);
}

.static-policy-content .policy-note {
    margin-top: 26px;
    padding: 18px 22px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 16px;
}

.static-policy-content hr {
    margin: 38px 0;
    border: 0;
    border-top: 1px solid var(--iw-border);
}

/* Legal style numbering blocks */
.policy-sub-list {
    list-style: lower-alpha;
}

.policy-sub-list-roman {
    list-style: lower-roman;
}

/* Mobile */
@media (max-width: 768px) {
    .static-policy-content h3 {
        margin-top: 30px;
        margin-bottom: 14px;
    }

    .static-policy-content ul,
    .static-policy-content ol {
        padding-left: 22px;
    }

    .static-policy-content li {
        margin-bottom: 12px;
    }
}

/* =========================================================
   STATIC FAQ CONTENT
========================================================= */

.static-faq-list {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.static-faq-item {
    position: relative;
    background: radial-gradient(circle at 96% 8%, rgba(252, 91, 98, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    border: 1px solid var(--iw-border);
    border-radius: 22px;
    padding: 26px 28px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.static-faq-item h5 {
    position: relative;
    margin: 0 0 14px;
    padding-left: 36px;
    color: var(--iw-text);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1.35;
}

.static-faq-item h5:before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--iw-coral);
    font-weight: 900;
}

.static-faq-item p {
    position: relative;
    margin: 0;
    padding-left: 36px;
    color: var(--iw-muted-dark);
    font-size: 0.98rem;
    line-height: 1.85;
}

.static-faq-item p:before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--iw-blue);
    font-weight: 900;
}

.static-faq-item ul,
.static-faq-item ol {
    margin: 14px 0 0 36px;
    padding-left: 22px;
    color: var(--iw-muted-dark);
}

.static-faq-item li {
    margin-bottom: 8px;
    line-height: 1.75;
}

.static-faq-item a {
    font-weight: 800;
    color: var(--iw-coral);
}

.static-faq-item a:hover {
    color: var(--iw-blue);
}

.static-faq-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.06);
    color: var(--iw-muted-dark);
    font-size: 0.92rem;
    line-height: 1.7;
}

.static-faq-note i {
    color: var(--iw-blue);
    margin-right: 6px;
}

@media (max-width: 768px) {
    .static-faq-item {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .static-faq-item h5,
    .static-faq-item p {
        padding-left: 30px;
    }

    .static-faq-item ul,
    .static-faq-item ol {
        margin-left: 30px;
    }
}
