/* Destination-specific styles can be added here */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.dest-grid .destination-card.featured {
    grid-column: span 2;
}

.popular-layout {
    /* max-width: 1512px; */
    padding: 34px clamp(18px, 4vw, 64px);
}

.destination-feature {
    min-height: 200px;
    position: relative;
    border-radius: #cccc;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 59, 76, .16);
    height: 552px;
}

.destination-feature img,
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.destination-feature:after,
.destination-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 59, 76, .88))
}

.dest-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff
}

.dest-content h3 {
    font-size: 46px;
    margin: 0 0 6px;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
}

.destination-card {
    position: relative;
    min-height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(13, 59, 76, .16);
    height: 266px;
}

.destination-card:hover img,
.destination-feature:hover img {
    transform: scale(1.06)
}

.destination-card img,
.destination-feature img {
    transition: .45s ease
}

.experience-strip {
    background: var(--navy);
    color: #fff
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .16);
    border-radius: 24px;
    overflow: hidden
}

.experience-item {
    padding: 28px;
    background: rgba(255, 255, 255, .04)
}

.experience-item i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 14px
}

.experience-item h3 {
    font-family: var(--heading);
    margin: 0 0 6px;
    color: #fff
}

.experience-item p {
    color: rgba(255, 255, 255, .72);
    margin: 0;
    font-size: 14px
}

.cta-band {
    border-radius: 32px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    padding: 44px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 24px 60px rgba(13, 59, 76, .16);
}

.cta-band h2 {
    font-size: 40px;
    margin: 0
}

.cta-band p {
    color: rgba(255, 255, 255, .78)
}

/*========================================
         Start Blogs Section
==========================================*/
.c4t-section-head {
    text-align: center;
    max-width: 720px;
    margin: auto;
    margin-top: 31px;
}


/* ═══════════════════════════════════════
   SHOW MORE FUNCTIONALITY
═══════════════════════════════════════ */
.dest-description-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.dest-description {
    font-family: var(--serif-body);
    color: rgba(31, 31, 31, 0.78);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    overflow: hidden;
}

.dest-description.collapsed {
    max-height: 3.5em;
    /* Show approximately 2 lines */
    position: relative;
}

.dest-description.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2em;
    background: linear-gradient(to bottom, transparent, var(--limestone-ivory));
    pointer-events: none;
}

.dest-description.expanded {
    max-height: 1000px;
}

.dest-description.expanded::after {
    display: none;
}

.dest-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 24px;
    background: transparent;
    color: var(--deep-navy);
    border: 1px solid var(--antique-gold);
    font-family: var(--ui);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 4px;
}

.dest-toggle-btn:hover {
    background: var(--deep-navy);
    color: var(--limestone-ivory);
    border-color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 35, 66, 0.15);
}

.dest-toggle-btn:active {
    transform: translateY(0);
}

.toggle-icon {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex-shrink: 0;
}

.toggle-text {
    pointer-events: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════ */
@media (max-width: 760px) {
    .dest-description {
        font-size: 16px;
    }

    .dest-description.collapsed {
        max-height: 4.5em;
        /* Show more lines on mobile */
    }

    .dest-toggle-btn {
        width: 100%;
        padding: 12px 24px;
    }
}

@media (max-width: 420px) {
    .dest-description {
        font-size: 15px;
    }

    .dest-toggle-btn {
        font-size: 10px;
        padding: 10px 20px;
    }
}


/* ═══════════════════════════════════════
   RESPONSIVE LAYOUT FIXES
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .popular-layout {
        padding: 24px 18px;
    }

    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .popular-layout {
        padding: 24px 18px;
    }

    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .destination-card {
        height: 240px;
    }

    .dest-content h3 {
        font-size: 24px;
    }
}




.eet-shell {
    width: min(1180px, calc(100% - 93px));
    margin-inline: auto;
}

.c4t-journeys-showcase {
    padding: 0;
}

.c4t-journeys-grid {

    margin-top: 53px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 26px;
}

.category-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    min-height: 280px;
    box-shadow: 0 24px 60px rgba(13, 59, 76, .16);
    height: 400px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s
}

.category-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgb(13 59 76 / 17%));
}

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

.category-card div {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 20px;
    color: #fff
}

.category-card h3 {
    font-family: var(--heading);
    font-size: 39px;
    margin: 0;
    font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    font-size: clamp(30px, 3vw, 42px);
    line-height: .95;
    font-weight: 500;
    margin-top: 13px;
}

.category-card span {
    color: rgba(255, 255, 255, .78);
    font-weight: 800
}

.listing-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px
}

.sidebar-filter {
    position: sticky;
    top: 102px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(13, 59, 76, .16);
    padding: 20px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.sidebar-filter h3 {
    font-family: var(--heading);
    color: var(--navy);
    margin: 0 0 14px
}

.check-list {
    display: grid;
    gap: 10px
}

.check-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px
}

@media(max-width: 1020px) {
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .listing-layout {
        grid-template-columns: 1fr
    }

    .sidebar-filter {
        position: relative;
        top: auto
    }

    .list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .filter-box {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width: 640px) {

    .category-grid,
    .list-grid,
    .filter-box {
        grid-template-columns: 1fr
    }

    .filter-box {
        margin-top: 20px
    }

    .category-card {
        min-height: 235px
    }

    .c4t-section-head {

        padding-left: 17px;
        padding-right: 23px;
    }
}


.c4t--sction {
    padding: 34px clamp(18px, 4vw, 64px);
}

.c4t-faq-section {
    padding-top: 50px;
}


.eet-subcategory-count {
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    gap: 8px;
    background: rgba(255, 255, 255, 0.14);
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.24);
    border-image: initial;
    border-radius: 999px;
    padding: 8px 13px;
}

@media (max-width: 680px) {
    .c4t-journeys-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 11px;
    }
}




.popular-layout {
    width: min(1428px, 100%);
    margin: 0 auto;
}

.c4t--sction {
    padding: 34px clamp(18px, 4vw, 64px);
    width: min(1418px, 100%);
    margin: 0 auto;
}


.about-hero {
    height: 71vh;
}


.category-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}