/* ============================================================
   Destination Details — Enhanced Visual Styles
   Prefix: tc-dd (destination details)
   ============================================================ */

/* Prevent horizontal scroll on mobile from Bootstrap negative margins / map tiles.
   Use 'clip' instead of 'hidden' — clip does NOT create a scroll container,
   so it won't break position: sticky on descendant elements.
   Both html AND body need clip — main.css sets body { overflow-x: hidden }. */
html,
body {
    overflow-x: clip !important;
}

/* ---- Hero Banner ---- */
.tc-dd-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.tc-dd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(26, 26, 46, 0.4) 50%,
        rgba(26, 26, 46, 0.15) 100%
    );
    z-index: 1;
}

.tc-dd-hero__inner {
    position: relative;
    z-index: 2;
    padding: 0 0 48px;
    width: 100%;
}

.tc-dd-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    font-size: 13px;
}

.tc-dd-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.tc-dd-hero__breadcrumb a:hover {
    color: #fff;
}

.tc-dd-hero__breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 10px;
}

.tc-dd-hero__breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.tc-dd-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tc-dd-hero__title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}

.tc-dd-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tc-dd-hero__stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.tc-dd-hero__stat i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ---- Sticky Section Navigation ---- */
.tc-dd-secnav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.tc-dd-secnav__wrap {
    display: flex;
    align-items: center;
}

.tc-dd-secnav__burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    color: var(--header, #151415);
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background 0.2s ease;
    padding: 0;
    margin-right: 4px;
}

.tc-dd-secnav__burger:hover {
    background: #f3f4f6;
}

.tc-dd-secnav__track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tc-dd-secnav__track::-webkit-scrollbar {
    display: none;
}

.tc-dd-secnav__tab {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, border-color 0.2s ease;
    border-bottom: 2px solid transparent;
    font-family: "Nunito", sans-serif;
}

.tc-dd-secnav__tab:hover {
    color: var(--theme-color, #4D40CA);
    text-decoration: none;
}

.tc-dd-secnav__tab.is-active {
    color: var(--theme-color, #4D40CA);
    border-bottom-color: var(--theme-color, #4D40CA);
}

/* Disable main header sticky — section nav replaces it */
.no-sticky-header #header-sticky.sticky {
    position: relative !important;
    animation: none !important;
}

/* Scroll margin for anchored sections */
#ddOverview, #ddPackages, #ddActivities, #ddGallery, #ddFaq, #ddMap {
    scroll-margin-top: 60px;
}

@media (min-width: 992px) {
    .tc-dd-secnav__burger {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .tc-dd-secnav__burger {
        display: inline-flex;
    }
}

@media (max-width: 991px) {
    .tc-dd-secnav {
        top: 56px;
    }

    #ddOverview, #ddPackages, #ddActivities, #ddGallery, #ddFaq, #ddMap {
        scroll-margin-top: 116px;
    }
}

@media (max-width: 767.98px) {
    .tc-dd-secnav__tab {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* ---- Alternating Section Backgrounds ---- */
.tc-dd-shaded {
    background: linear-gradient(180deg, #f7f6fc 0%, #f1eff9 100%);
}

/* ---- Enhanced Section Titles ---- */
.tc-dd-stitle {
    text-align: center;
    margin-bottom: 36px;
}

.tc-dd-stitle__label {
    display: inline-block;
    padding: 5px 18px;
    border-radius: 20px;
    background: rgba(77, 64, 202, 0.08);
    color: var(--theme-color, #4D40CA);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.tc-dd-stitle__heading {
    font-size: 30px;
    font-weight: 800;
    color: var(--heading-color, #231C25);
    margin: 0;
    line-height: 1.3;
}

/* ---- Season Cards — Themed Gradients ---- */
.tc-dd-season {
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tc-dd-season:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.tc-dd-season__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tc-dd-season__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 8px;
}

.tc-dd-season__months {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
}

.tc-dd-season__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* Summer */
.tc-dd-season--summer {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fde68a;
}

.tc-dd-season--summer .tc-dd-season__icon {
    background: rgba(251, 146, 60, 0.15);
    color: #ea580c;
}

.tc-dd-season--summer .tc-dd-season__months {
    background: rgba(251, 146, 60, 0.12);
    color: #c2410c;
}

/* Winter */
.tc-dd-season--winter {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
}

.tc-dd-season--winter .tc-dd-season__icon {
    background: rgba(59, 130, 246, 0.15);
    color: #2563eb;
}

.tc-dd-season--winter .tc-dd-season__months {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

/* Autumn */
.tc-dd-season--autumn {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-color: #fde047;
}

.tc-dd-season--autumn .tc-dd-season__icon {
    background: rgba(217, 119, 6, 0.15);
    color: #b45309;
}

.tc-dd-season--autumn .tc-dd-season__months {
    background: rgba(217, 119, 6, 0.12);
    color: #92400e;
}

/* Spring */
.tc-dd-season--spring {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
}

.tc-dd-season--spring .tc-dd-season__icon {
    background: rgba(22, 163, 74, 0.15);
    color: #16a34a;
}

.tc-dd-season--spring .tc-dd-season__months {
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
}

/* Monsoon / Rainy */
.tc-dd-season--monsoon,
.tc-dd-season--rainy {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-color: #99f6e4;
}

.tc-dd-season--monsoon .tc-dd-season__icon,
.tc-dd-season--rainy .tc-dd-season__icon {
    background: rgba(20, 184, 166, 0.15);
    color: #0d9488;
}

.tc-dd-season--monsoon .tc-dd-season__months,
.tc-dd-season--rainy .tc-dd-season__months {
    background: rgba(20, 184, 166, 0.12);
    color: #0f766e;
}

/* ---- Transport Cards — Enhanced ---- */
.tc-dd-transport {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-dd-transport:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.tc-dd-transport__icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(77, 64, 202, 0.1) 0%, rgba(77, 64, 202, 0.05) 100%);
    color: var(--theme-color, #4D40CA);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-dd-transport__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 8px;
}

.tc-dd-transport__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* ---- Activity Cards (Things to Do) ---- */
.tc-dd-activity {
    position: relative;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 16px;
    padding: 24px 24px 24px 28px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--theme-color, #4D40CA);
}

.tc-dd-activity:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(77, 64, 202, 0.1);
}

.tc-dd-activity__num {
    position: absolute;
    top: -6px;
    right: 14px;
    font-size: 68px;
    font-weight: 900;
    color: rgba(77, 64, 202, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.tc-dd-activity__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(77, 64, 202, 0.08);
    color: var(--theme-color, #4D40CA);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tc-dd-activity__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 8px;
}

.tc-dd-activity__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* ---- Food Cards ---- */
.tc-dd-food {
    position: relative;
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #f59e0b;
}

.tc-dd-food:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(245, 158, 11, 0.12);
}

.tc-dd-food__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.06) 100%);
    color: #d97706;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tc-dd-food__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 8px;
}

.tc-dd-food__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* ---- Shopping Cards ---- */
.tc-dd-shop {
    position: relative;
    background: #fff;
    border: 1px solid #fbcfe8;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #ec4899;
}

.tc-dd-shop:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(236, 72, 153, 0.1);
}

.tc-dd-shop__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12) 0%, rgba(236, 72, 153, 0.05) 100%);
    color: #db2777;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.tc-dd-shop__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 8px;
}

.tc-dd-shop__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* ---- Budget Tier Cards ---- */
.tc-dd-budget {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.tc-dd-budget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.tc-dd-budget__header {
    padding: 18px 22px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tc-dd-budget__header i {
    font-size: 18px;
}

.tc-dd-budget--0 .tc-dd-budget__header {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.tc-dd-budget--1 .tc-dd-budget__header {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.tc-dd-budget--2 .tc-dd-budget__header {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

/* Fallback for 3+ tiers */
.tc-dd-budget--3 .tc-dd-budget__header {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tc-dd-budget__body {
    padding: 22px;
}

.tc-dd-budget__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.8;
    margin: 0;
}

/* ---- Facts Cards ---- */
.tc-dd-fact {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eeecf5;
    border-radius: 16px;
    padding: 22px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-dd-fact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.tc-dd-fact__icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #f59e0b;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-dd-fact__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--heading-color, #231C25);
    margin-bottom: 6px;
}

.tc-dd-fact__desc {
    font-size: 14px;
    color: var(--text, #6e6a71);
    line-height: 1.7;
    margin: 0;
}

/* ---- Gallery Enhanced ---- */
.tc-dd-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
}

.tc-dd-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tc-dd-gallery-item:hover img {
    transform: scale(1.08);
}

.tc-dd-gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-dd-gallery-item:hover .tc-dd-gallery-item__overlay {
    opacity: 1;
}

.tc-dd-gallery-item__overlay i {
    color: #fff;
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

/* ---- Explore CTA Banner ---- */
.tc-dd-cta {
    background: linear-gradient(135deg, var(--theme-color, #4D40CA) 0%, #6c5ce7 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
}

.tc-dd-cta__text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.tc-dd-cta__text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.tc-dd-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    background: #fff;
    color: var(--theme-color, #4D40CA);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-dd-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--theme-color, #4D40CA);
}

/* ============================================================
   Mobile App Header — Only on destination details (mobile)
   ============================================================ */

/* App header bar */
.tc-dd-appbar {
    display: none;
}

/* Bottom CTA bar */
.tc-dd-bottom-cta {
    display: none;
}

@media (max-width: 991px) {
    /* Hide standard website header & top bar when app header is present */
    body:has(.tc-dd-appbar) .header-section.header-inner {
        display: none !important;
    }

    /* Show app header */
    .tc-dd-appbar {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        height: 56px;
        transition: background 0.3s ease, box-shadow 0.3s ease;
        background: transparent;
    }

    .tc-dd-appbar--solid {
        background: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    /* Left side: back button */
    .tc-dd-appbar__left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .tc-dd-appbar__btn {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        text-decoration: none;
        font-size: 16px;
        transition: background 0.2s ease, color 0.2s ease;
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        color: #fff;
    }

    .tc-dd-appbar--solid .tc-dd-appbar__btn {
        background: #f3f4f6;
        color: #1a1a2e;
    }

    /* Center: title (hidden until scrolled) */
    .tc-dd-appbar__title {
        position: absolute;
        left: 60px;
        right: 60px;
        text-align: center;
        font-size: 16px;
        font-weight: 700;
        color: #1a1a2e;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .tc-dd-appbar--solid .tc-dd-appbar__title {
        opacity: 1;
        transform: translateY(0);
    }

    /* Right side: share + search */
    .tc-dd-appbar__right {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* Hero adjustments for app header */
    .tc-dd-hero {
        margin-top: -56px;
        padding-top: 56px;
    }

    /* Hide desktop breadcrumb inside hero on mobile */
    .tc-dd-hero__breadcrumb {
        display: none;
    }

    /* Show bottom CTA */
    .tc-dd-bottom-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        padding: 12px 16px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
        background: #fff;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .tc-dd-bottom-cta__info {
        flex: 1;
        min-width: 0;
    }

    .tc-dd-bottom-cta__label {
        font-size: 11px;
        font-weight: 600;
        color: #9ca3af;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .tc-dd-bottom-cta__price {
        font-size: 18px;
        font-weight: 800;
        color: var(--heading-color, #231C25);
        line-height: 1.2;
    }

    .tc-dd-bottom-cta__btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 24px;
        border-radius: 12px;
        background: var(--theme-color, #4D40CA);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        transition: background 0.2s ease;
        flex-shrink: 0;
    }

    .tc-dd-bottom-cta__btn:hover {
        background: var(--header, #1a1a2e);
        color: #fff;
    }

    /* Add bottom padding to page so content isn't hidden behind bottom bar */
    .map-section,
    .trending-destinations:last-child {
        padding-bottom: 100px !important;
    }

    /* If there's no nearby destinations, add padding to whichever is last */
    .faq-section:last-of-type {
        padding-bottom: 80px;
    }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1199px) {
    .tc-dd-hero__title {
        font-size: 36px;
    }

    .tc-dd-stitle__heading {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .tc-dd-hero {
        min-height: 360px;
    }

    .tc-dd-hero__title {
        font-size: 30px;
    }

    .tc-dd-stitle__heading {
        font-size: 24px;
    }

    .tc-dd-transport {
        padding: 20px;
    }

    .tc-dd-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

@media (max-width: 767px) {
    .tc-dd-hero {
        min-height: 320px;
    }

    .tc-dd-hero__inner {
        padding-bottom: 36px;
    }

    .tc-dd-hero__title {
        font-size: 26px;
    }

    .tc-dd-hero__stats {
        gap: 8px;
    }

    .tc-dd-hero__stat {
        padding: 6px 14px;
        font-size: 12px;
    }

    .tc-dd-stitle {
        margin-bottom: 28px;
    }

    .tc-dd-stitle__heading {
        font-size: 22px;
    }

    .tc-dd-activity {
        padding: 20px 20px 20px 22px;
    }

    .tc-dd-activity__num {
        font-size: 52px;
    }

    .tc-dd-cta__text h3 {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .tc-dd-hero {
        min-height: 280px;
    }

    .tc-dd-hero__title {
        font-size: 24px;
    }

    .tc-dd-hero__location {
        font-size: 11px;
    }

    .tc-dd-hero__breadcrumb {
        font-size: 11px;
        gap: 6px;
    }

    .tc-dd-stitle__label {
        font-size: 11px;
        padding: 4px 14px;
    }

    .tc-dd-stitle__heading {
        font-size: 20px;
    }

    .tc-dd-transport {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 20px;
    }

    .tc-dd-transport__icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
    }

    .tc-dd-season {
        padding: 22px 18px;
    }

    .tc-dd-season__icon {
        width: 48px;
        height: 48px;
    }

    .tc-dd-budget__header {
        padding: 16px 18px;
        font-size: 15px;
    }

    .tc-dd-budget__body {
        padding: 18px;
    }

    .tc-dd-fact {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .tc-dd-cta {
        border-radius: 16px;
        padding: 28px 20px;
    }

    .tc-dd-gallery-item {
        aspect-ratio: 4 / 3;
    }
}
