/* ============================================================
   TripCabinet — Dedicated Card & UI Styles
   Prefixes: tc-breadcrumb, tc-pkg-, tc-dest- (no conflicts)
   ============================================================ */

/* --- Inline Breadcrumb --- */
.tc-breadcrumb {
    background: #f8f8fc;
    border-bottom: 1px solid #eeecf5;
    padding: 14px 0;
}

.tc-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tc-breadcrumb__item a {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--theme-color, #4D40CA);
    text-decoration: none;
    transition: color 0.2s ease;
}

.tc-breadcrumb__item a:hover {
    color: var(--header, #1a1a2e);
}

.tc-breadcrumb__separator {
    font-size: 10px;
    color: #b0adc0;
}

.tc-breadcrumb__item--active {
    font-size: 13.5px;
    font-weight: 600;
    color: #6b7280;
}

/* --- Card Container --- */
.tc-pkg-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* --- Image Section --- */
.tc-pkg-card__img-wrap {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.tc-pkg-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.tc-pkg-card:hover .tc-pkg-card__img {
    transform: scale(1.05);
}

/* gradient overlay on bottom of image */
.tc-pkg-card__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- Badges (top of image) --- */
.tc-pkg-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
    pointer-events: none;
}

.tc-pkg-card__badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1.4;
    pointer-events: auto;
}

.tc-pkg-card__badge--featured {
    background: var(--theme-color, #4D40CA);
    color: #fff;
}

.tc-pkg-card__badge--discount {
    background: #e74c3c;
    color: #fff;
}

/* spacer if only one badge exists */
.tc-pkg-card__badges-left,
.tc-pkg-card__badges-right {
    display: flex;
    gap: 6px;
}

/* --- Image Actions (bottom-right of image) --- */
.tc-pkg-card__img-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.tc-pkg-card__img-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    font-size: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
    text-decoration: none;
}

.tc-pkg-card__img-action:hover {
    background: var(--theme-color, #4D40CA);
    color: #fff;
    transform: scale(1.1);
}

/* --- Card Body --- */
.tc-pkg-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px;
}

/* Location */
.tc-pkg-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--theme-color, #4D40CA);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tc-pkg-card__location i {
    font-size: 12px;
}

/* Title */
.tc-pkg-card__title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--header, #1a1a2e);
}

.tc-pkg-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tc-pkg-card__title a:hover {
    color: var(--theme-color, #4D40CA);
}

/* Meta row (duration, places, rating) */
.tc-pkg-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.tc-pkg-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.tc-pkg-card__meta-item i {
    font-size: 12px;
    color: #9ca3af;
}

.tc-pkg-card__meta-item--rating i {
    color: #f59e0b;
    font-size: 12px;
}

.tc-pkg-card__meta-item--rating {
    color: #374151;
    font-weight: 600;
}

.tc-pkg-card__meta-item--rating small {
    color: #9ca3af;
    font-weight: 400;
    font-size: 12px;
}

/* Divider */
.tc-pkg-card__divider {
    height: 1px;
    background: #f0f0f5;
    margin: 14px 0;
    flex-shrink: 0;
}

/* --- Footer (price + CTA) --- */
.tc-pkg-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

/* Pricing block */
.tc-pkg-card__pricing {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-pkg-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.tc-pkg-card__price {
    font-size: 20px;
    font-weight: 800;
    color: var(--header, #1a1a2e);
    line-height: 1.2;
}

.tc-pkg-card__price-old {
    font-size: 13px;
    font-weight: 500;
    color: #b0b0b0;
    text-decoration: line-through;
}

.tc-pkg-card__per {
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
}

/* Book Now button */
.tc-pkg-card__book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 8px;
    background: var(--theme-color, #4D40CA);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.tc-pkg-card__book-btn:hover {
    background: var(--header, #1a1a2e);
    color: #fff;
    transform: translateY(-1px);
}

.tc-pkg-card__book-btn i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.tc-pkg-card__book-btn:hover i {
    transform: translateX(3px);
}

/* --- Grid column equal-height helper --- */
.tc-pkg-grid .col-xl-4,
.tc-pkg-grid .col-lg-6,
.tc-pkg-grid .col-md-6 {
    display: flex;
}

/* ============================================================
   Responsive
   ============================================================ */

/* Large screens (1200-1399) */
@media (max-width: 1399px) {
    .tc-pkg-card__title {
        font-size: 15px;
    }

    .tc-pkg-card__price {
        font-size: 18px;
    }

    .tc-pkg-card__book-btn {
        padding: 7px 14px;
        font-size: 12.5px;
    }
}

/* Medium screens (992-1199) */
@media (max-width: 1199px) {
    .tc-pkg-card__body {
        padding: 16px 16px 14px;
    }

    .tc-pkg-card__title {
        font-size: 15px;
    }

    .tc-pkg-card__meta {
        gap: 10px;
    }

    .tc-pkg-card__meta-item {
        font-size: 12px;
    }

    .tc-pkg-card__price {
        font-size: 17px;
    }
}

/* Tablets (768-991) */
@media (max-width: 991px) {
    .tc-pkg-card__body {
        padding: 16px;
    }

    .tc-pkg-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tc-pkg-card__book-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
    }
}

/* Small tablets / large phones (576-767) */
@media (max-width: 767px) {
    .tc-pkg-card__img-wrap {
        aspect-ratio: 16 / 10;
    }

    .tc-pkg-card__title {
        font-size: 16px;
    }

    .tc-pkg-card__price {
        font-size: 20px;
    }
}

/* Phones (<576) */
@media (max-width: 575px) {
    .tc-pkg-card {
        border-radius: 12px;
    }

    .tc-pkg-card__body {
        padding: 14px;
    }

    .tc-pkg-card__footer {
        flex-direction: row;
        align-items: flex-end;
    }

    .tc-pkg-card__book-btn {
        width: auto;
        padding: 8px 16px;
    }
}


/* ============================================================
   Destination Card — tc-dest- prefix
   ============================================================ */

/* Grid equal-height */
.tc-dest-grid .col-xl-4,
.tc-dest-grid .col-lg-4,
.tc-dest-grid .col-lg-6,
.tc-dest-grid .col-md-6 {
    display: flex;
}

/* Card */
.tc-dest-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tc-dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.14);
}

/* Image */
.tc-dest-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tc-dest-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tc-dest-card:hover .tc-dest-card__img {
    transform: scale(1.08);
}

/* Full gradient overlay */
.tc-dest-card__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Package count badge — top-left */
.tc-dest-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.tc-dest-card__badge i {
    font-size: 11px;
}

/* Content overlay — bottom of image */
.tc-dest-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Country label */
.tc-dest-card__country {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.tc-dest-card__country i {
    font-size: 10px;
}

/* Title */
.tc-dest-card__title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.tc-dest-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.tc-dest-card__title a:hover {
    color: var(--theme-color-2, #b8b0ff);
}

/* Meta row */
.tc-dest-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}

.tc-dest-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.tc-dest-card__meta-item i {
    font-size: 11px;
}

/* Explore arrow — bottom-right */
.tc-dest-card__arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--theme-color, #4D40CA);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.tc-dest-card__arrow i {
    transform: rotate(-40deg);
    transition: transform 0.25s ease;
}

.tc-dest-card:hover .tc-dest-card__arrow {
    background: #fff;
    color: var(--theme-color, #4D40CA);
    transform: scale(1.1);
}

.tc-dest-card:hover .tc-dest-card__arrow i {
    transform: rotate(0deg);
}

/* --- Destination Details Stats Bar --- */
.tc-dest-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 36px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tc-dest-stats__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.tc-dest-stats__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eeecf5;
}

.tc-dest-stats__icon {
    font-size: 22px;
    color: var(--theme-color, #4D40CA);
    margin-bottom: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(77, 64, 202, 0.08);
}

.tc-dest-stats__value {
    font-size: 22px;
    font-weight: 800;
    color: var(--heading-color, #231C25);
    line-height: 1.2;
}

.tc-dest-stats__value--sm {
    font-size: 15px;
    font-weight: 700;
}

.tc-dest-stats__label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text, #6e6a71);
    margin-top: 3px;
}

/* Stats responsive */
@media (max-width: 991px) {
    .tc-dest-stats {
        flex-wrap: wrap;
        border-radius: 12px;
    }

    .tc-dest-stats__item {
        flex: 0 0 50%;
        padding: 18px 12px;
    }

    .tc-dest-stats__item:nth-child(1)::after,
    .tc-dest-stats__item:nth-child(3)::after {
        height: 60%;
    }

    .tc-dest-stats__item:nth-child(2)::after {
        display: none;
    }

    .tc-dest-stats__item:nth-child(1),
    .tc-dest-stats__item:nth-child(2) {
        border-bottom: 1px solid #eeecf5;
    }
}

@media (max-width: 575px) {
    .tc-dest-stats__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .tc-dest-stats__value {
        font-size: 18px;
    }

    .tc-dest-stats__value--sm {
        font-size: 13px;
    }

    .tc-dest-stats__label {
        font-size: 12px;
    }

    .tc-dest-stats__item {
        padding: 14px 10px;
    }
}

/* ---- Destination Responsive ---- */
@media (max-width: 1399px) {
    .tc-dest-card__title {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .tc-dest-card__img-wrap {
        aspect-ratio: 16 / 10;
    }

    .tc-dest-card__title {
        font-size: 20px;
    }

    .tc-dest-card__content {
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .tc-dest-card {
        border-radius: 12px;
    }

    .tc-dest-card__img-wrap {
        aspect-ratio: 16 / 9;
    }

    .tc-dest-card__title {
        font-size: 18px;
    }

    .tc-dest-card__arrow {
        width: 38px;
        height: 38px;
        bottom: 16px;
        right: 16px;
    }

    .tc-dest-card__content {
        padding: 14px;
    }
}

/* ============================================================
   Destination Content Sections — tc-dest-section prefix
   ============================================================ */

/* Season / Best Time Cards */
.tc-dest-season-card {
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tc-dest-season-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.tc-dest-season-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(77, 64, 202, 0.08);
    color: var(--theme-color, #4D40CA);
    font-size: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tc-dest-season-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 6px;
}

.tc-dest-season-card__months {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(77, 64, 202, 0.08);
    color: var(--theme-color, #4D40CA);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tc-dest-season-card__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.6;
}

/* Transport Mode Cards */
.tc-dest-transport-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tc-dest-transport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.tc-dest-transport-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(77, 64, 202, 0.08);
    color: var(--theme-color, #4D40CA);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-dest-transport-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 6px;
}

.tc-dest-transport-card__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.6;
    margin: 0;
}

/* Content Grid Cards (Things to Do, Food, Shopping) */
.tc-dest-content-card {
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 14px;
    padding: 22px 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tc-dest-content-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.tc-dest-content-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 8px;
}

.tc-dest-content-card__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* Numbered Tips */
.tc-dest-tip-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 14px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-dest-tip-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tc-dest-tip-card__number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: var(--theme-color, #4D40CA);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-dest-tip-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 4px;
}

.tc-dest-tip-card__content {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.6;
    margin: 0;
}

/* Facts List */
.tc-dest-facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.tc-dest-facts-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 10px;
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.6;
}

.tc-dest-facts-list li i {
    color: var(--theme-color, #4D40CA);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Budget Table */
.tc-dest-budget-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #eeecf5;
    border-radius: 14px;
    overflow: hidden;
}

.tc-dest-budget-table thead th {
    background: var(--theme-color, #4D40CA);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 18px;
    text-align: left;
}

.tc-dest-budget-table tbody td {
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text, #6e6a71);
    border-bottom: 1px solid #f0f0f5;
    line-height: 1.5;
}

.tc-dest-budget-table tbody tr:last-child td {
    border-bottom: none;
}

.tc-dest-budget-table tbody td:first-child {
    font-weight: 600;
    color: var(--heading-color, #231C25);
}

.tc-dest-budget-table tbody td:nth-child(2) {
    font-weight: 700;
    color: var(--theme-color, #4D40CA);
    white-space: nowrap;
}

/* Visa info prose block */
.tc-dest-visa-content {
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 14px;
    padding: 28px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text, #6e6a71);
}

.tc-dest-visa-content h1,
.tc-dest-visa-content h2,
.tc-dest-visa-content h3,
.tc-dest-visa-content h4 {
    color: var(--heading-color, #231C25);
    margin-top: 20px;
    margin-bottom: 10px;
}

.tc-dest-visa-content ul,
.tc-dest-visa-content ol {
    padding-left: 20px;
}

/* Responsive adjustments for content sections */
@media (max-width: 767px) {
    .tc-dest-facts-list {
        grid-template-columns: 1fr;
    }

    .tc-dest-budget-table thead th,
    .tc-dest-budget-table tbody td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .tc-dest-visa-content {
        padding: 20px 16px;
    }
}

@media (max-width: 575px) {
    .tc-dest-transport-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* --- Destination Details H1 (matches original H2 styling) --- */
.details-content__title {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.75rem;
    line-height: 1.3;
}

/* --- Destination About — Read More Collapse --- */
.tc-dest-about {
    position: relative;
    max-height: 180px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.tc-dest-about.is-expanded {
    max-height: 8000px;
}
.tc-dest-about__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,1) 100%);
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
}
.tc-dest-about.is-expanded .tc-dest-about__fade {
    opacity: 0;
    pointer-events: none;
}
.tc-dest-about__inner h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 22px 0 8px;
    color: var(--header);
}
.tc-dest-about__inner p {
    margin-bottom: 14px;
    line-height: 1.8;
    color: var(--text);
    font-size: 15px;
}
.tc-dest-about__inner ul {
    margin: 10px 0 18px 20px;
    padding: 0;
}
.tc-dest-about__inner ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 15px;
}
.tc-dest-about__inner a {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}
.tc-dest-about__inner a:hover {
    text-decoration: underline;
}
.tc-dest-about__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 8px 22px;
    background: transparent;
    border: 1.5px solid var(--theme-color);
    border-radius: 50px;
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}
.tc-dest-about__toggle:hover {
    background: var(--theme-color);
    color: #fff;
}
.tc-dest-about__toggle-icon {
    transition: transform 0.3s ease;
    font-size: 11px;
}
.tc-dest-about__toggle.is-expanded .tc-dest-about__toggle-icon {
    transform: rotate(180deg);
}
