.tour-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: .5s !important;
    border-radius: 14px;
    max-height: max-content !important;
}

/*===============================================================
                      Tour Details Panels
===============================================================*/
.td-panel {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.td-panel-head {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e5e5;
}

.td-panel-head h2 {
    font-size: 24px;
    color: #073763;
    margin-bottom: 10px;
    font-weight: 600;
}

.td-panel-lead {
    /* color: #666; */
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.td-panel--head {
    /* display: flex; */
    /* justify-content: space-between; */
    /* align-items: center; */
    /* flex-wrap: wrap; */
    /* gap: 15px; */
}

/*===============================================================
                      Tour Sidebar Card
===============================================================*/
.td-hero-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: calc(var(--header-h) + 20px);
}

.td-card-content {
    padding: 25px;
}

.td-price-section {
    text-align: center;
    padding: 25px;
    background: #073763;
    margin: -25px -25px 25px -25px;
    border-radius: 8px 8px 0 0;
}

.td-price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.td-price-value {
    color: #f5a623;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;}

.td-price-per {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.td-quick-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.td-fact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
}

.td-fact-item i {
    color: #f5a623;
    font-size: 16px;
}

.td-fact-item span {
    color: #073763;
    font-size: 13px;
    font-weight: 500;
}

.td-card-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.td-btn-primary {
    display: block;
    text-align: center;
    padding: 14px 20px;
    background: #f5a623;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.td-btn-primary:hover {
    background: #d4941a;
}

.td-btn-secondary {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: transparent;
    color: #073763;
    text-decoration: none;
    border: 1px solid #073763;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px
}

.td-btn-secondary:hover {
    background: #073763;
    color: #ffffff;
}

.td-contact-box {
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.td-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.td-contact-item:last-child {
    margin-bottom: 0;
}

.td-contact-item i {
    color: #f5a623;
    font-size: 16px;
}

.td-contact-item span {
    color: #073763;
    font-size: 13px;
    font-weight: 500;
}

.td-gallery-map {
    border-top: 1px solid #e5e5e5;
}

/* Responsive */
@media (max-width: 991px) {
    .td-hero-card {
        position: static;
        margin-top: 30px;
    }
}

/*===============================================================
                      Tour Timeline (Itinerary)
===============================================================*/
.td-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-left: 30px;
    margin-top: 20px;
}

/* vertical line connecting steps */
.td-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e5e5e5;
    z-index: 0;
}

details.td-step {
    margin-bottom: 0;
    display: block;
    padding: 0;
    overflow: hidden;
}

.td-step {
    position: relative;
    z-index: 1;
    display: block;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
}

details.td-step > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f9f9f9;
    user-select: none;
}

details.td-step > summary::-webkit-details-marker {
    display: none;
}

.td-step-summary-text h3 {
    font-size: 16px;
    color: #073763;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.td-step-time {
    background: #f5a623;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.td-step-chevron {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #073763;
    font-size: 14px;
}

details.td-step[open] .td-step-chevron {
    transform: rotate(180deg);
}

.td-step-body {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.td-step-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/*===============================================================
                      Itinerary Controls
===============================================================*/
.td-itinerary-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-self: flex-end;
}

.td-ctrl-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #073763;
    background: #ffffff;
    color: #073763;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.td-ctrl-btn:hover {
    background: #073763;
    color: #ffffff;
}

/*===============================================================
                      Tour Gallery Grid
===============================================================*/
.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .tour-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .gallery-item img {
        height: 130px;
    }
}

@media (max-width: 480px) {
    .tour-gallery-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .gallery-item img {
        height: 160px;
    }
}

/*===============================================================
                      Tour Split Grid (Included/Excluded)
===============================================================*/
.td-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.td-list-box {
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.td-list-box h3 {
    color: #073763;
    font-size: 18px;
    margin: 0 0 15px;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
}

.td-check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.td-check-list li {
    display: flex;
    gap: 10px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    align-items: flex-start;
}

.td-check-list li::before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ";
    color: #f5a623;
    font-weight: 600;
    flex: 0 0 auto;
}

.td-check-list.exclusions li::before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¢";
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .td-split-grid {
        grid-template-columns: 1fr;
    }
}

.td-layout {
    display: flex;
    gap: 28px;
    /* align-items: flex-start; */
    position: relative;
}

.td-layout > .col-lg-9 {
    flex: 1;
    min-width: 0;
}

.td-layout > .col-lg-3 {
    width: 350px;
    flex-shrink: 0;
    position: relative;
}
.tour-image {
    position: relative;
    height: 177px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.tour-details-wrappers {
    padding: 30px 0 24px;
    background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 100%);
}

.tour__details {
    padding-bottom: 10px;
}

.tour-heading {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 16px 0 8px;
}

.tour-heading h1 {
    font-weight: 700;
    font-size: clamp(24px, 3.5vw, 36px);
    color: var(--main-color);
    padding-top: 12px;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.tour_card {
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: 0.4s;
    box-shadow: none;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    border: 1px solid rgba(7, 55, 99, 0.08);
    backdrop-filter: blur(8px);
}

.trip-info-one__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    margin-top: 6px;
}

.trip-info-one__address i {
    color: var(--main-color);
    width: 28px;
    height: auto;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 10px;
}

.trip-info-one__address span {
    color: #63687a;
    font-size: 16px;
}

.sidebar-price-total {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 20px;
}


.td-main {
    display: grid;
    gap: 20px;
    grid-template-columns: 3fr 1fr;
    align-items: start;
    margin-top: 16px;
}

.td-panel {
    background: #fff;
    border: 1px solid rgba(16, 32, 51, .10);
    border-radius: 28px;
    box-shadow: 0 14px 40px rgba(6, 29, 53, .10);
    padding: 30px;
    border-top: 4px solid var(--second-color);
    margin-top: 20px;
}

.td-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 400px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
}

.td-gallery-map {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.td-gallery-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tg-slider {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    border-radius: 24px;
}

.tg-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    border-radius: 24px;
}

.tg-slide {
    flex: 0 0 100%;
    height: 100%;
    overflow: hidden;
}

.tg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    pointer-events: none;
}

.tg-slider:hover .tg-slide img {
    transform: scale(1.03);
}

/* Prev / Next buttons */
.tg-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 35, 66, 0.72);
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
    border: none;
}

.tg-btn:hover {
    background: var(--deep-navy);
}

.tg-prev {
    left: 12px;
}

.tg-next {
    right: 12px;
}

/* Dots */
.tg-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.tg-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.tg-dot.active {
    background: var(--antique-gold);
    transform: scale(1.3);
}

.tg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-lightbox[hidden] {
    display: none;
}

.tg-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 10, 20, 0.94);
    backdrop-filter: blur(12px);
    cursor: pointer;
}

.tg-lightbox-img-wrap {
    position: relative;
    z-index: 2;
    max-width: min(1100px, 88vw);
    max-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 84vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
}

.tg-lightbox-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50%;
}

.tg-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tg-lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 50%;
}

.tg-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tg-lb-prev {
    left: 20px;
}

.tg-lb-next {
    right: 20px;
}

.tg-lightbox-counter {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.08em;
    z-index: 10;
}

@media (max-width: 860px) {
    .tg-map-slider {
        grid-template-columns: 1fr;
        height: auto;
    }

    .tg-map {
        height: 280px;
        min-height: 280px;
        border-right: none;
        border-bottom: 1px solid rgba(10, 35, 66, 0.1);
    }

    .tg-slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .tg-map {
        height: 220px;
        min-height: 220px;
    }

    .tg-slider {
        height: 260px;
    }

    .tg-lb-prev {
        left: 8px;
    }

    .tg-lb-next {
        right: 8px;
    }
}

html,
body {
    max-width: 100%;
}

@media (max-width: 760px) {
    .tour-price-strip {
        grid-template-columns: 1fr 1fr !important;
    }

    .tg-map-slider {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 3px !important;
    }

    .tg-map {
        height: 260px !important;
        min-height: 260px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(10, 35, 66, 0.1);
        order: 2;
    }

    .tg-slider {
        height: 483px !important;
        order: 1;
    }

    .eet-shell {
        width: calc(100% - 0) !important;
    }

    .itinerary-accordion summary {
        grid-template-columns: auto minmax(0, 1fr) 28px !important;
    }

    .tour-section-head.compact h1 {
        font-size: clamp(22px, 5vw, 32px) !important;
    }
}


.td-hero-card {
    background: rgb(255, 255, 255);
    color: var(--navy);
    border: 1px solid #fff3cd73;
    border-radius: 30px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(6, 29, 53, .10);
    backdrop-filter: blur(14px);
}

.td-price-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-end;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(16, 32, 51, .10);
}

.td-price-row small {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 2px;
}

.td-price {
    font-size: 42px;
    color: var(--navy);
    letter-spacing: -.04em;
    line-height: 1;
}

.td-mini-facts {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding-left: 0;
}

.td-mini-facts li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(16, 32, 51, .08);
    color: #4a586a;
    font-size: 14px;
}

.td-mini-facts strong {
    color: #061d35;
}

.td-card-note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    text-align: center;
}

.td-hero-card .btn {
    width: 100%;
    margin-top: 8px;
}

.td-panel h2 {
    font-size: clamp(22px, 3vw, 31px);
    letter-spacing: -.045em;
    color: var(--navy);
    margin-bottom: 18px;
}

.td-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.td-list-box {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, rgba(251, 246, 236, .60));
    border: 1px solid rgba(16, 32, 51, .10);
}

.td-list-box h3 {
    color: var(--navy);
    font-size: 20px;
    margin: 0 0 10px;
    font-weight: 400
}

.td-check-list {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none
}

.td-check-list li {
    display: flex;
    gap: 6px;
    color: #4b5870;
    font-size: 14px;
    line-height: 1.55;
    align-items: center;
}

.td-check-list li::before {
    content: "ÃƒÆ’Ã‚Â¢Ãƒâ€¦Ã¢â‚¬Å“ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â";
    color: #f5a623;
    font-weight: 900;
    flex: 0 0 auto;
    padding: 2px;
    border-radius: 50%;
    border: 2px solid;
    width: 17px;
    height: 17px;
    line-height: 1;
    text-align: center;
}

.td-check-list.exclusions li::before {
    content: "X";
    color: #f5a623;
    padding: 2px;
    border-radius: 50%;
    border: 2px solid;
    width: 17px;
    height: 17px;
    line-height: 1;
    text-align: center;
}

strong {

    color: var(--main-color);

    font-size: 15px;

    line-height: 1;
}

.td-check--list li {
    display: flex;
    gap: 3px;
    color: #4b5870;
    font-size: 14px;
    line-height: 1.55;
    align-items: center;
}

.td-check--list li::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã¢â‚¬Å“ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â";
    color: #198754;
    font-weight: 900;
    flex: 0 0 auto;

}
.td-check--list{
    padding-inline-start: 0 !important;
}
.td-check--list.ChildrenPolicy li::before {
    content: "ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â°ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¹ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¤";
    color: #dc3545;

}

.also-includes-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.td-panel__head ul li {
    list-style: disc;
    display: list-item;
    font-size: .875rem;
    color: #666;
    line-height: 1.65;
}

.td-panel__head ul {
    padding-left: 20px;
}

.td-panel h2 {
    font-size: clamp(22px, 3vw, 27px);
    letter-spacing: -.045em;
    color: var(--navy);
    margin-bottom: 18px;
    margin-top: 18px;
}

/* =========================================================
   Tour Details Conversion + Pricing + Availability
   ========================================================= */

.pricing-cards-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-cards-header h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 10px;
}

.pricing-cards-header p {
    color: var(--muted);
    font-size: 15px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 24px;
    padding: 32px 24px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(6, 29, 53, 0.1);
    border-color: rgba(201, 155, 61, 0.3);
}

.pricing-card.popular {
    border-color: rgba(201, 155, 61, 0.4);
    background: linear-gradient(180deg, #ffffff 0%, #fcf9f2 100%);
    box-shadow: 0 12px 35px rgba(201, 155, 61, 0.08);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(16, 32, 51, 0.06);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.pricing-card-header .price-value {
    font-size: 34px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.1;
}

.pricing-card-header p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(16, 32, 51, 0.08);
    font-size: 14.5px;
    color: var(--muted);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li strong {
    color: var(--navy);
    font-weight: 700;
}


.sidebar-content_Book {
    z-index: 44;
}

.sidebar-content {
    border-radius: 15px;
    background-color: var(--white-color);
    padding: 20px;
    margin-bottom: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 28px;
    padding: 0.5rem;
    border-top: 5px solid var(--second-color);
    /* margin-top: 23px; */
}

.sidebar-heading {
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    text-align: center;
    margin: 0 0 0 0;
}

.sidebar-heading p {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 7px;
    color: #000;
    margin-top: 0;
}

.tour-details-package-content .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

.tour-details-package-box {
    position: relative !important;
    width: 100%;
    margin-bottom: 16px;
}

.tour-details-package-box label {
    z-index: 20;
    position: absolute;
    top: -9px !important;
    left: 14px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: var(--main-color, #dc3545) !important;
    background: #fff !important;
    padding: 0 6px !important;
}

.tour-details-package-box input,
.tour-details-package-box select,
.tour-details-package-box textarea {
    width: 100% !important;
    height: 48px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    background: #fff !important;
    font-size: 15px !important;
    color: #1a2b49 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.25s ease !important;
}

.price-table {
    margin-top: 0;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 16px;
}

.guest-count {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fefcf7;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    margin-bottom: 16px;
}

.guest-adult-option,
.guest-children-option,
.guest-infant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guest-adult-option,
.guest-children-option,
.guest-infant-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.counter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.counter button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b49;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.counter button:disabled {
    color: #cbd5e0;
    cursor: not-allowed;
    opacity: 0.5;
}

.counter button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #1a2b49;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.counter input.count {
    width: 44px !important;
    height: 32px !important;
    text-align: center !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a2b49 !important;
    -moz-appearance: textfield !important;
}

.tour-details-package-content .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.td-sidebar {
    position: sticky;
    top: calc(var(--header-h) + 20px);
    z-index: 44;
    align-self: flex-start;
    max-height: 80vh;
    /* overflow-y: auto; */
}

.td-panel__head h2 i {
    font-size: 19px;
    color: #ffc107;
}

.td-itinerary-controls {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-self: flex-end;
}

.td-ctrl-btn {
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid rgba(16, 32, 51, .18);
    background: #fff;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}

.td-ctrl-btn:hover {
    background: #ffc107;
    color: #fff;
    border-color: var(--navy);
}

/* Make details/summary look like the original td-step cards */
details.td-step {
    margin-bottom: 17px;
    display: block;
    padding: 0;
    overflow: hidden;
}

.td-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 30px;
    margin-top: 24px;
}

/* vertical line connecting steps */
.td-timeline::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: rgba(201, 155, 61, 0.3);
    z-index: 0;
}

.td-step {
    position: relative;
    z-index: 1;
    display: block;
    border: 1px solid rgba(16, 32, 51, 0.08);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.td-step:hover {
    box-shadow: 0 10px 30px rgba(6, 29, 53, 0.08);
    transform: translateY(-2px);
}

details.td-step[open] {
    border-color: rgba(201, 155, 61, 0.4);
    box-shadow: 0 12px 35px rgba(201, 155, 61, 0.08);
}

details.td-step>summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: linear-gradient(to right, #fff, rgba(251, 246, 236, 0.4));
    user-select: none;
}

details.td-step>summary::-webkit-details-marker {
    display: none;
}

details.td-step>summary .td-step-summary-text {
    display: flex;
    align-items: center;
    /* flex: 1; */
}

details.td-step>summary .td-step-summary-text h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 19px;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.3;
}

.td-step-time {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    background: var(--main-color);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(201, 155, 61, 0.35);
    white-space: nowrap;
}

.td-step-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(16, 32, 51, 0.05);
    color: var(--navy);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.td-step-chevron::after {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .3s;
}

details.td-step[open]>summary .td-step-chevron {
    background: var(--navy);
    color: #fff;
}

details.td-step[open]>summary .td-step-chevron::after {
    transform: rotate(-135deg) translate(-2px, -2px);
}

.td-step-body {
    padding: 0 24px 24px 97px;
    border-top: 1px dashed rgba(16, 32, 51, 0.08);
    margin-top: 0;
    padding-top: 24px;
}

.td-step-body p {
    margin: 0 0 16px 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.td-step-body p:last-child {
    margin-bottom: 0;
}

.td-step-body img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.td-panel--head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-content: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
}

.blog-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    align-content: center;
}

.blog-card--row .blog-card__thumb {
    flex: 0 0 228px;
    overflow: hidden;
    padding: 7px;
}

.blog-card--row .blog-card__body p {
    font-size: 13px;
    line-height: 1.55;
    -webkit-line-clamp: 4;
}

@media (max-width: 768px) {
    .td-timeline {
        padding-left: 0;
    }
    .td-timeline::before {
        display: none;
    }
    details.td-step>summary .td-step-summary-text h3 {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .td-step-body {
        padding: 20px;
    }
    .td-itinerary-controls {
        align-self: flex-start;
    }
}

.td-price-table p{
    margin-bottom: 0;
    font-size: 19px;
    color: #2d3681;
}
.btn {
    padding: 2px 7px;
}

@media (max-width: 768px) {

    .td-main {
        grid-template-columns: 1fr;
    }

    .td-gallery {
        grid-template-columns: 1fr;
    }

    .td-panel {
        padding: 11px;

    }

    .td-gallery-column-1 {
        order: 2;
    }

    .tour_card {

        flex-wrap: wrap;
    }

    .td-split-grid {
        grid-template-columns: 1fr;
    }

    .td-list-box {
        padding: 14px;
    }

    .td-pricing-type-head {
        flex-wrap: wrap;
    }

    details.td-step>summary .td-step-summary-text h3 {
        margin: 0 0 6px;
        display: flex;
        align-items: flex-start;
        gap: 7px;
    }
.td-layout {
    display: flex;
    gap: 28px;
    /* align-items: flex-start; */
    position: relative;
    flex-direction: column;
}

.blog-card__link {
    display: flex;
    flex-direction: column !important;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

}


.Breadcrumb-cover {
    background: rgba(7, 55, 99, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    position: relative;
    text-align: center;
    display: flex;
    z-index: 2;
    padding: 5px 0px;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    font-size: 18px;
    color: var(--second-color);
    line-height: 28px;
    float: left;
    margin: 0px -2px;
    padding: 0px;
}

.breadcrumb-item + .breadcrumb-item {
    padding: 0px;
}

li.breadcrumb-item:last-child {
    padding-right: 0px;
}

.breadcrumb-item a {
    color: var(--black-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
}

.breadcrumb-item a, .breadcrumb-item span {
    padding: 0px 5px;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    font-size: 16px;
    font-weight: 500;
    color: var(--main-color) !important;
}

.breadcrumb {
    display: flex;
    margin: 0px;
}
@media (max-width: 768px) {
    .breadcrumb {
        scrollbar-width: auto;
    }
}

@media (max-width: 768px) {
    .breadcrumb {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/*===============================================================
   Tour Details ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Updated Design (matching Tour.css system)
===============================================================*/

/* Hero section background */
.tour__details {
    background: linear-gradient(180deg, #f8f6ff 0%, #ffffff 60%);
}

/* Gallery panel - no extra top border in hero area */
.tour__details .td-panel {
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    border-top: none;
    box-shadow: 0 8px 30px rgba(7, 55, 99, 0.10);
    border: 1px solid rgba(7, 55, 99, 0.08);
}

/* Hero sidebar card - styled like tour-card */
.tour__details .td-hero-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(7, 55, 99, 0.10);
    border: 1px solid rgba(7, 55, 99, 0.08);
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour__details .td-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(7, 55, 99, 0.15);
}

/* Breadcrumb ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ lighter and modern */
.breadcrumb-nav {
    padding: 8px 12px;
}

.breadcrumb-item a {
    color: var(--main-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--second-color);
}

.breadcrumb-item.active span {
    font-size: 13px;
    font-weight: 600;
    color: var(--second-color);
}

/* Tour title strip */
.tour_card .trip-info-one__address i {
    background: rgba(245, 166, 35, 0.12);
    color: var(--second-color);
    border-radius: 8px;
    padding: 8px;
    width: 34px;
    height: 34px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.tour_card .trip-info-one__address span {
    font-size: 15px;
    color: #4a586a;
    font-weight: 500;
}

/* Download PDF btn */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    /* background: var(--main-color); */
    color: #fff;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    /* border: 2px solid var(--main-color); */
}

.btn-gold:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

/* Content panels - updated rounded design */
.tour-details-wrappers:not(.tour__details) .td-panel {
    border-radius: 20px;
    border-top: 3px solid var(--second-color);
    box-shadow: 0 4px 20px rgba(7, 55, 99, 0.06);
    transition: box-shadow 0.3s ease;
}

.tour-details-wrappers:not(.tour__details) .td-panel:hover {
    box-shadow: 0 8px 30px rgba(7, 55, 99, 0.10);
}

/* Sidebar booking card */
.sidebar-content {
    border-radius: 20px;
    border-top: 3px solid var(--second-color);
    box-shadow: 0 4px 20px rgba(7, 55, 99, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive td-main in hero */
@media (max-width: 991px) {
    .td-main {
        grid-template-columns: 1fr;
    }

    .tour__details .td-hero-card {
        position: static;
    }

    .td-gallery {
        height: 360px;
    }
}

@media (max-width: 576px) {
    .tour-heading h1 {
        font-size: 22px;
    }

    .td-gallery {
        height: 280px;
    }

    .tour_card {
        flex-direction: column;
        gap: 10px;
    }
}

/*===============================================================
   NEW Hero Section ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ td-hero-wrapper
===============================================================*/
.td-hero-wrapper {
    background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
    padding: 30px 0 0px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Breadcrumb ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.td-breadcrumb-nav { margin-bottom: 20px; }

.td-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 10px 16px;
    margin: 0;
    background: rgba(255,255,255,0.8);
    border-radius: 50px;
    border: 1px solid rgba(7,55,99,0.08);
    /* width: fit-content; */
    backdrop-filter: blur(8px);
    align-content: center;
}

.td-breadcrumb li a {
    color: #4a586a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    /* display: flex; */
    align-items: center;
    gap: 5px;
    transition: color .2s;
}

.td-breadcrumb li a i { color: var(--second-color); font-size: 12px; }
.td-breadcrumb li a:hover { color: var(--main-color); }

.td-breadcrumb li + li::before {
    content: "/";
    color: var(--second-color);
    font-size: 13px;
    margin-right: 4px;
}

.td-breadcrumb li.active span {
    font-size: 13px;
    font-weight: 600;
    color: var(--main-color);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Title Row ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.td-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.td-title-left { flex: 1; min-width: 0; }

.td-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245,166,35,0.12);
    color: #b07d10;
    border: 1px solid rgba(245,166,35,0.3);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

.td-title-left h1 {
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 700;
    color: var(--main-color);
    line-height: 1.25;
    letter-spacing: -.03em;
    margin: 0 0 16px;
}

.td-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.td-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid rgba(7,55,99,0.12);
    border-radius: 50px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #4a586a;
    box-shadow: 0 2px 8px rgba(7,55,99,0.06);
}

.td-pill i { color: var(--second-color); font-size: 12px; }

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Price + CTA (right column) ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.td-title-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid rgba(7,55,99,0.1);
    border-radius: 20px;
    padding: 3px 0px;
    box-shadow: 0 8px 30px rgba(7,55,99,0.10);
    min-width: 173px;
    text-align: center;
}

.td-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid #07376300;
    border-radius: 20px;
    padding: 3px 0px;
    box-shadow: 0 8px 30px #07376300;
    min-width: 173px;
    text-align: center;
}

.td-price-badge small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #8a9ab0;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.td-price-amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--second-color);
    line-height: 1;
}

.td-price-amount span {font-size: 42px;font-family: "Roboto", "sans-serif";}

.td-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid var(--main-color);
}

.td-book-btn:hover {
    background: var(--second-color);
    border-color: var(--second-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,.3);
}

.td-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
    background: transparent;
    color: var(--main-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(7,55,99,0.2);
    transition: all .3s ease;
}

.td-pdf-btn:hover {
    border-color: var(--main-color);
    background: rgba(7,55,99,0.05);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Hero Grid ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.td-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    align-items: start;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Gallery ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.td-gallery-wrap {
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 12px 40px rgba(7,55,99,0.14);
}

.td-gallery-wrap .tg-slider {
    border-radius: 0;
    height: 100%;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Quick Sidebar ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.td-quick-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: calc(var(--header-h, 80px) + 16px);
}

.td-qf-header {
    background: var(--main-color);
    color: #fff;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.td-qf-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.td-qf-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(7,55,99,0.06);
    font-size: 13px;
}

.td-qf-list li:last-child { border-bottom: none; }

.td-qf-icon {
    width: 30px;
    height: 30px;
    /* background: rgba(245,166,35,0.1); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.td-qf-icon i { color: var(--second-color); font-size: 13px; }

.td-qf-label {
    flex: 1;
    color: #8a9ab0;
    font-weight: 500;
}

.td-qf-list strong {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 700;
}

.td-qf-map {
    border-radius: 20px;
    overflow: hidden;
    height: 389px;
    border: 1px solid rgba(7,55,99,0.08);
    box-shadow: 0 4px 16px rgba(7,55,99,0.08);
}

.td-qf-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.td-qf-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--second-color);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 6px 20px rgba(245,166,35,.3);
}

.td-qf-cta:hover {
    background: #d4941a;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,166,35,.4);
    color: #fff;
}

.td-qf-note {
    text-align: center;
    font-size: 11px;
    color: #8a9ab0;
    margin: 0;
    line-height: 1.5;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ Responsive ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
@media (max-width: 1024px) {
    .td-hero-grid {
        grid-template-columns: 1fr 280px;
    }
}

@media (max-width: 900px) {
    .td-hero-grid {
        grid-template-columns: 1fr;
    }
    .td-gallery-wrap { height: 360px; }
    .td-quick-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .td-quick-facts { flex: 1 1 260px; }
    .td-qf-map { flex: 1 1 240px; height: 200px; }
    .td-qf-cta, .td-qf-note { flex: 1 1 100%; }
    .td-title-row {flex-direction: column;gap: 0px;}
    .td-title-right {/* width: 100%; */flex-direction: row;flex-wrap: wrap;justify-content: center;display: flex;align-items: center;}
}

@media (max-width: 576px) {
    .td-gallery-wrap { height: 260px; }
    .td-meta-pills { gap: 6px; }
    .td-pill { font-size: 12px; padding: 6px 11px; }
    .td-price-amount { font-size: 32px; }
    .td-quick-sidebar { flex-direction: column; }
}

/*===============================================================
   Content Section ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ td-content-section
===============================================================*/
.td-content-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
    padding: 4px 0 60px;
}

/* Panel title row with icon */
.td-panel-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.td-panel-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--main-color), #0a4a7c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(7,55,99,0.25);
}

.td-panel-title-row h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
    letter-spacing: -0.03em;
}

/* Panels inside content section */
.td-content-section .td-panel {
    background: #fff;
    border: 1px solid rgba(7,55,99,0.08);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(7,55,99,0.06);
    padding: 28px;
    border-top: 3px solid var(--second-color);
    transition: box-shadow .3s;
}

.td-content-section .td-panel:hover {
    box-shadow: 0 10px 35px rgba(7,55,99,0.10);
}

/*===============================================================
   New Pricing Cards ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ td-price-card
===============================================================*/
.td-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.td-price-card {
    background: #fff;
    border: 1.5px solid rgba(7,55,99,0.10);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
}

.td-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(7,55,99,0.13);
    border-color: rgba(245,166,35,0.35);
}

.td-price-card--popular {
    border-color: var(--second-color);
    box-shadow: 0 8px 30px rgba(245,166,35,0.15);
}

.td-price-card--popular:hover {
    box-shadow: 0 20px 50px rgba(245,166,35,0.25);
}

.td-price-card__badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--second-color);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 18px;
    border-radius: 0 0 12px 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    z-index: 1;
}

.td-price-card__top {
    padding: 28px 24px 20px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9ff 0%, #fff 100%);
    border-bottom: 1px solid rgba(7,55,99,0.07);
}

.td-price-card--popular .td-price-card__top {
    background: linear-gradient(180deg, #fffbf0 0%, #fff 100%);
    padding-top: 36px;
}

.td-price-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--main-color), #0a4a7c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
    box-shadow: 0 6px 16px rgba(7,55,99,0.25);
}

.td-price-card--popular .td-price-card__icon {
    background: linear-gradient(135deg, var(--second-color), #d4941a);
    box-shadow: 0 6px 16px rgba(245,166,35,0.35);
}

.td-price-card__top h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 10px;
}

.td-price-card__amount {
    font-size: 14px;
    color: #8a9ab0;
    font-weight: 500;
    margin-bottom: 4px;
}

.td-price-card__amount span {
    font-size: 32px;
    font-weight: 800;
    color: var(--second-color);
    display: inline;
}

.td-price-card--popular .td-price-card__amount span {
    color: var(--main-color);
}

.td-price-card__top > p {
    font-size: 12px;
    color: #8a9ab0;
    margin: 0;
}

.td-price-card__rows {
    list-style: none;
    padding: 16px 24px;
    margin: 0;
    flex: 1;
}

.td-price-card__rows li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(7,55,99,0.08);
    font-size: 13.5px;
    color: #4a586a;
}

.td-price-card__rows li:last-child { border-bottom: none; }

.td-price-card__rows li strong {
    color: var(--main-color);
    font-weight: 700;
    font-size: 13.5px;
}

.td-price-card__btn {
    display: block;
    margin: 0 20px 20px;
    padding: 12px;
    text-align: center;
    border-radius: 50px;
    background: var(--main-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    border: 2px solid var(--main-color);
}

.td-price-card__btn:hover {
    background: transparent;
    color: var(--main-color);
}

.td-price-card--popular .td-price-card__btn {
    background: var(--second-color);
    border-color: var(--second-color);
}

.td-price-card--popular .td-price-card__btn:hover {
    background: transparent;
    color: var(--second-color);
}

/* Responsive pricing grid */
@media (max-width: 900px) {
    .td-pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .td-content-section .td-panel { padding: 18px; }
}

/*===============================================================
   Hero ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ New Elements
===============================================================*/

/* Rating Row */
.td-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 14px;
    flex-wrap: wrap;
}

.td-stars { display: flex; gap: 2px; }
.td-stars i { color: #f5a623; font-size: 14px; }

.td-rating-score {
    font-size: 15px;
    font-weight: 800;
    color: var(--main-color);
}

.td-rating-count {
    font-size: 13px;
    color: #8a9ab0;
}

.td-rating-sep { color: #ccd4de; font-size: 16px; }

.td-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(39,199,130,0.1);
    color: #1a9e6b;
    border: 1px solid rgba(39,199,130,0.25);
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
}

.td-rating-badge i { font-size: 11px; }

/* Trust line under CTA buttons */
.td-trust-line {
    font-size: 12px;
    color: #8a9ab0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
}

.td-trust-line i { color: #1a9e6b; font-size: 11px; }

/* Gallery photo count label */
.tg-overlay-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 9;
    pointer-events: none;
}

/* Highlights box */
.td-qf-highlights {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(7,55,99,0.08);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(7,55,99,0.06);
}

.td-qf-hl-title {
    background: linear-gradient(135deg, #fff8e6, #fff);
    color: var(--main-color);
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid rgba(245,166,35,0.15);
}

.td-qf-hl-title i { color: var(--second-color); }

.td-qf-highlights ul {
    list-style: none;
    padding: 10px 14px 12px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.td-qf-highlights ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #3a4a5e;
    font-weight: 500;
}

.td-qf-highlights ul li i {
    color: var(--second-color);
    font-size: 11px;
    width: 18px;
    height: 18px;
    background: rgba(245,166,35,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Updated note */
.td-qf-note {
    text-align: center;
    font-size: 11.5px;
    color: #8a9ab0;
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.td-qf-note i { color: #1a9e6b; font-size: 10px; }

/*===============================================================
   Trust Bar
===============================================================*/
.td-trust-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
    padding: 18px 28px;
    background: var(--main-color);
    border-radius: 20px;
    flex-wrap: wrap;
}

.td-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.td-trust-item i {
    color: var(--second-color);
    font-size: 18px;
}

@media (max-width: 768px) {
    .td-trust-bar {
        gap: 16px;
        padding: 16px;
        grid-template-columns: 1fr 1fr;
        display: grid;
    }
    .td-trust-item { justify-content: flex-start; }
    .td-rating-row { gap: 6px; }
}

@media (max-width: 480px) {
    .td-trust-bar { grid-template-columns: 1fr 1fr; }
}

/*===============================================================
   New Gallery ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Main + Thumbnails Layout
===============================================================*/
.td-gallery-wrap {
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    box-shadow: none;
}

.td-gallery-layout {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 10px;
    height: 480px;
}

/* Main large image */
.td-gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0a1628;
    cursor: pointer;
}

.td-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.td-gallery-main:hover img {
    transform: scale(1.03);
}

/* Counter badge */
.td-gallery-counter {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    pointer-events: none;
}

.td-gallery-counter i { color: var(--second-color); font-size: 13px; }

/* Arrows on main */
.td-gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.2s, background 0.2s;
}

.td-gallery-main:hover .td-gal-arrow {
    opacity: 1;
}

.td-gal-arrow:hover { background: rgba(0,0,0,0.8); }
.td-gal-prev { left: 12px; }
.td-gal-next { right: 12px; }

/* Thumbnails column */
.td-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    scrollbar-width: none;
}

.td-gallery-thumbs::-webkit-scrollbar { display: none; }

.td-thumb {
    flex-shrink: 0;
    width: 100%;
    height: 84px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2.5px solid transparent;
    padding: 0;
    background: none;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.72;
    display: block;
}

.td-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    max-height: max-content;
}

.td-thumb:hover {
    opacity: 1;
}

.td-thumb:hover img { transform: scale(1.06); }

.td-thumb.active {
    border-color: var(--second-color);
    opacity: 1;
    box-shadow: 0 0 0 1px var(--second-color);
}

/* Fade animation for main image swap */
.td-gallery-main img.td-img-fade {
    opacity: 0;
    transform: scale(1.04);
}

/* Responsive */
@media (max-width: 900px) {
    .td-gallery-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 300px auto;
        height: auto;
    }

    .td-gallery-thumbs {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        height: 80px;
    }

    .td-thumb {
        flex: 0 0 100px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .td-gallery-layout { grid-template-rows: 230px auto; }
    .td-thumb { flex: 0 0 80px; }
}

/*===============================================================
   Thumbnails ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Vertical Swiper
===============================================================*/
.td-gallery-thumbs {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.td-thumbs-swiper {
    height: 100%;
    padding: 28px 0 !important;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
}

.td-thumbs-swiper .swiper-wrapper {
    flex-direction: column;
}

.td-thumbs-swiper .swiper-slide {
    height: auto !important;
    flex-shrink: 0;
}

.td-thumbs-swiper .td-thumb {
    width: 100%;
    height: 100px;
    display: block;
    margin: 0;
    flex-shrink: 0;
}

/* Up/Down nav arrows for thumbs */
.td-thumbs-prev,
.td-thumbs-next {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 26px;
    background: rgba(7,55,99,0.85);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.td-thumbs-prev:hover,
.td-thumbs-next:hover {
    background: var(--second-color);
}

.td-thumbs-prev { top: 0; border-radius: 12px 12px 0 0; }
.td-thumbs-next {bottom: -4px;border-radius: 0 0 12px 12px;}

/* Mobile: horizontal swiper */
@media (max-width: 900px) {
    .td-gallery-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 90px;
        height: auto;
    }

    .td-gallery-thumbs {
        height: 90px;
        overflow: hidden;
    }

    .td-thumbs-swiper {
        height: 100%;
        padding: 0 28px !important;
    }

    .td-thumbs-swiper .swiper-wrapper {
        flex-direction: row;
    }

    .td-thumbs-swiper .swiper-slide {
        width: 110px !important;
        height: 90px !important;
        padding: 0 4px;
    }

    .td-thumbs-swiper .td-thumb {
        width: 100%;
        height: 90px;
    }

    .td-thumbs-prev,
    .td-thumbs-next {
        top: 0;
        bottom: 0;
        left: auto;
        transform: none;
        width: 26px;
        height: 100%;
    }

    .td-thumbs-prev { left: 0; right: auto; border-radius: 12px 0 0 12px; }
    .td-thumbs-next { right: 0; left: auto; border-radius: 0 12px 12px 0; }
}

/*===============================================================
   Itinerary v2 ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ New Timeline Design
===============================================================*/
.td-timeline-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    position: relative;
}

.td-timeline-v2::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--second-color), rgba(245,166,35,0.15));
}

details.td-step-v2 {
    background: #fff;
    border: 1px solid rgba(7,55,99,0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

details.td-step-v2:hover {
    box-shadow: 0 6px 24px rgba(7,55,99,0.09);
    border-color: rgba(245,166,35,0.3);
}

details.td-step-v2[open] {
    border-color: rgba(245,166,35,0.4);
    box-shadow: 0 8px 28px rgba(245,166,35,0.10);
}

details.td-step-v2 > summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    gap: 16px;
    user-select: none;
    background: #fff;
    transition: background 0.2s;
}

details.td-step-v2 > summary::-webkit-details-marker { display: none; }

details.td-step-v2[open] > summary {
    background: linear-gradient(90deg, #fffbf0, #fff);
    border-bottom: 1px dashed rgba(245,166,35,0.25);
}

.td-step-v2__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

/* Day badge */
.td-step-v2__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--main-color);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(7,55,99,0.2);
    transition: background 0.2s;
}

details.td-step-v2[open] .td-step-v2__day {
    background: var(--second-color);
    box-shadow: 0 4px 12px rgba(245,166,35,0.35);
}

.td-step-v2__day span {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    opacity: .8;
    line-height: 1;
}

.td-step-v2__day strong {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
}

/* Step info */
.td-step-v2__info { flex: 1; min-width: 0; }

.td-step-v2__info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--main-color);
    margin: 0 0 6px;
    line-height: 1.3;
}

.td-step-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.td-step-v2__tags span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #6a7b8e;
    background: rgba(7,55,99,0.05);
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 500;
}

.td-step-v2__tags span i { color: var(--second-color); font-size: 10px; }

/* Chevron */
.td-step-v2__chevron {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(7,55,99,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: var(--main-color);
    font-size: 12px;
}

details.td-step-v2[open] .td-step-v2__chevron {
    background: var(--main-color);
    color: #fff;
    transform: rotate(180deg);
}

/* Body */
.td-step-v2__body {
    padding: 20px 20px 20px 21px;
}

.td-step-v2__body p {
    font-size: 14px;
    color: #4a586a;
    line-height: 1.8;
    margin: 0 0 10px;
}

.td-step-v2__body p:last-child { margin: 0; }

@media (max-width: 600px) {
    .td-step-v2__body { padding: 16px; }
    .td-timeline-v2::before { display: none; }
    .td-step-v2__day { width: 44px; height: 44px; border-radius: 10px; }
    .td-step-v2__day strong { font-size: 17px; }
    .td-step-v2__info h3 { font-size: 14px; }
}

/*===============================================================
   Included / Excluded ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ New Design
===============================================================*/
.td-inc-exc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 6px;
}

.td-inc-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(7,55,99,0.08);
    box-shadow: 0 4px 16px rgba(7,55,99,0.05);
}

.td-inc-box__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.td-inc-box__header--green {
    background: linear-gradient(90deg, #e8faf2, #f4fdf8);
    color: #1a7a52;
    border-bottom: 1px solid rgba(26,122,82,0.12);
}

.td-inc-box__header--green i { color: #22c55e; font-size: 15px; }

.td-inc-box__header--red {
    background: linear-gradient(90deg, #fff1f1, #fff8f8);
    color: #a33030;
    border-bottom: 1px solid rgba(163,48,48,0.12);
}

.td-inc-box__header--red i { color: #ef4444; font-size: 15px; }

.td-panel-lead  ul {
    list-style: none;
    padding: 14px 18px;
    margin: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.td-panel-lead ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #3a4a5e;
    line-height: 1.5;
}

.td-panel-lead ul li::before {
    position: relative;
    content: "\21";
    font: var(--fa-font-solid);
   width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    background: var( --main-color);
    color: #fff;
}


.td-inc-list ul {
    list-style: none;
    padding: 14px 18px;
    margin: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.td-inc-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #3a4a5e;
    line-height: 1.5;
}

.td-inc-list ul li::before {
    position: relative;
    content: "\f00c";
    font: var(--fa-font-solid);
   width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(34,197,94,0.12);
    color: #22c55e;
}

.td-inc-list--excl ul li::before{
       position: relative;
    content: "\f00c";
    font: var(--fa-font-solid);
   width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
  
     background: rgba(239,68,68,0.10);
    color: #ef4444;
}


.td-inc-list ul li i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
    background: rgba(34,197,94,0.12);
    color: #22c55e;
}

.td-inc-list--excl ul li i {
    background: rgba(58, 53, 53, 0.1);
    color: #ef4444;
}

@media (max-width: 640px) {
    .td-inc-exc-grid { grid-template-columns: 1fr; }
}

/*===============================================================
   Pricing Table ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ New Design (like reference image)
===============================================================*/
.td-pricing-panel {
    border-left: 4px solid var(--second-color) !important;
}

/* Header */
.td-pt-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.td-pt-subtitle {
    font-size: 13px;
    color: #8a9ab0;
    margin: 4px 0 0;
}

.td-pt-header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.td-pt-from {
    font-size: 13px;
    color: #8a9ab0;
    font-weight: 500;
}

.td-pt-price {
    font-size: 39px;
    color: var(--main-color);
}

.td-pt-price strong {
    font-size: 38px;
    font-weight: 800;
    color: var(--main-color);
    letter-spacing: -0.04em;
    line-height: 1;
    font-family: "Roboto", "sans-serif";
}

/* Table wrapper */
.td-pt-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(7,55,99,0.08);
    box-shadow: 0 4px 16px rgba(7,55,99,0.05);
}

.td-pt-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

/* Head */
.td-pt-table thead tr {
    background: #f5f5f0;
}

.td-pt-table thead th {
    padding: 14px 18px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--main-color);
    text-align: left;
    border-bottom: 1px solid rgba(7,55,99,0.08);
    white-space: nowrap;
}

.td-pt-table thead th i {
    color: var(--second-color);
    margin-right: 5px;
    font-size: 11px;
}

/* Popular column highlight */
.td-pt-popular-col {
    background: rgba(245,166,35,0.05);
    position: relative;
}

.td-pt-badge {
    display: inline-block;
    background: var(--second-color);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: .4px;
    vertical-align: middle;
    margin-left: 5px;
}

/* Body rows */
.td-pt-table tbody tr {
    border-bottom: 1px solid rgba(7,55,99,0.06);
    transition: background 0.15s;
}

.td-pt-table tbody tr:last-child { border-bottom: none; }

.td-pt-table tbody tr:hover { background: #fafafa; }

.td-pt-table tbody td {
    padding: 16px 18px;
    font-size: 14px;
    color: #4a586a;
    font-family: "Roboto", "sans-serif";
}

/* Group size col */
.td-pt-group {
    font-weight: 700;
    color: var(--main-color) !important;
    font-size: 13.5px !important;
}

/* Price cells */
.td-pt-price-cell {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--main-color) !important;
}

/* Muted cells */
.td-pt-muted {
    color: #8a9ab0 !important;
    font-size: 13.5px !important;
    font-style: italic;
}

/* Footer note */
.td-pt-footer {
    margin-top: 14px;
    font-size: 12.5px;
    color: #8a9ab0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.6;
}

.td-pt-footer i {
    color: var(--second-color);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 700px) {
    .td-pt-table { display: block; overflow-x: auto; white-space: nowrap; }
    .td-pt-table thead th,
    .td-pt-table tbody td { padding: 12px 14px; }
    .td-pt-price-cell { font-size: 17px !important; }
    .td-pt-header { flex-direction: column; gap: 10px; }
    .td-pt-header__right { align-items: flex-start; }
}

/*===============================================================
   Quick Facts ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Horizontal Bar (inside col-lg-9)
===============================================================*/
.td-layout .col-lg-9 .td-quick-facts {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(7,55,99,0.08);
    box-shadow: 0 4px 16px rgba(7,55,99,0.06);
    overflow: hidden;
    margin-bottom: 4px;
}

.td-layout .col-lg-9 .td-qf-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
        justify-content: flex-start;
}

.td-layout .col-lg-9 .td-qf-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 100px;
    padding: 16px 12px;
    text-align: center;
    border-right: 1px solid rgba(7,55,99,0.07);
    transition: background 0.2s;
}

.td-layout .col-lg-9 .td-qf-list li:last-child {
    border-right: none;
}

.td-layout .col-lg-9 .td-qf-list li:hover {
    background: rgba(245,166,35,0.04);
}

.td-layout .col-lg-9 .td-qf-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    /* background: linear-gradient(135deg, rgba(7,55,99,0.08), rgba(7,55,99,0.04)); */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.td-layout .col-lg-9 .td-qf-icon i {
    color: var(--second-color);
    font-size: 24px;
}

.td-layout .col-lg-9 .td-qf-label {
    font-size: 11px;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    flex: unset;
}

.td-layout .col-lg-9 .td-qf-list strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--main-color);
}

@media (max-width: 768px) {
    .td-layout .col-lg-9 .td-qf-list { flex-wrap: wrap; }
    .td-layout .col-lg-9 .td-qf-list li {
        flex: 0 0 33.33%;
        border-bottom: 1px solid rgba(7,55,99,0.07);
    }
}

@media (max-width: 480px) {
    .td-layout .col-lg-9 .td-qf-list li { flex: 0 0 50%; }
}

/*===============================================================
   Sidebar Heading ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Updated
===============================================================*/
.sidebar-heading {
    background: linear-gradient(135deg, var(--main-color), #0a4a7c);
    border-radius: 16px 16px 0 0;
    padding: 16px 20px !important;
    text-align: center;
    margin: 0 !important;
    border-bottom: none !important;
}

.sidebar-heading p {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/*===============================================================
   Sidebar Content ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œ Updated Form Wrapper
===============================================================*/
.sidebar-content {
    border-radius: 20px !important;
    border-top: none !important;
    overflow: hidden;
}

.tour-details-package-content {
    padding: 16px 14px 14px !important;
}

/* Submit button */
.tour-details-package-total {
    margin-top: 14px;
    padding: 0 4px;
}

.tour-details-package-total .btn-gold {
    width: 100%;
    display: block;
}

.tour-details-package-total .theme-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 14px 20px !important;
    background: var(--second-color) !important;
    color: #fff !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all .3s ease !important;
    border: 2px solid var(--second-color) !important;
    box-shadow: 0 6px 20px rgba(245,166,35,.3) !important;
    gap: 8px;
}

.tour-details-package-total .theme-btn:hover {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(7,55,99,.25) !important;
}

.tour-details-package-total .theme-btn span {
    font-size: 14px;
    font-weight: 700;
}

/* WhatsApp quick contact below form */
.td-sidebar::after {
    content: '';
    display: block;
}

/* Counter +/- buttons styling */
.counter button {
    background: rgba(7,55,99,0.06) !important;
    border-radius: 8px !important;
    color: var(--main-color) !important;
    font-weight: 800 !important;
    transition: background .2s !important;
}

.counter button:hover:not(:disabled) {
    background: var(--second-color) !important;
    color: #fff !important;
}

/* Guest count labels */
.guest-adult-option span,
.guest-children-option span,
.guest-infant-option span {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--main-color) !important;
}
/* Responsive Styles */
@media (max-width: 768px) {
   .td-sidebar {
    position: relative;
    top: 0;
    z-index: 44;
    align-self: flex-start;
    max-height: max-content;
    /* overflow-y: auto; */
}

.td-breadcrumb{
        display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: 0;
}
}
/* Fixed sticky menu */
.td-tabs {
    position: sticky;
    top: 80px;
    z-index: 80;
    background: #fff;
    backdrop-filter: blur(14px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: 0 0 18px;
    box-shadow: 0 12px 28px rgba(13, 59, 76, .08);
}

.td-tabs::-webkit-scrollbar {
    height: 0
}

.td-tabs a {
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    color: var(--navy)
}

.td-tabs a:hover {
    background: #fff
}

.td-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 26px;
    margin-bottom: 18px;
    scroll-margin-top: 180px
}

.td-card ul {
    list-style: disc;
    margin-left: 20px;
}

.td-card h2 {
    font-family: var(--heading);
    color: var(--navy);
    font-size: 24px;
    margin: 0 0 12px;
    font-weight: 600;
}

.td-card p {
    color: var(--muted)
}

.td-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px
}

.td-check-grid span {
    background: var(--sand);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px;
    font-weight: 800
}

.td-check-grid span:before {
    content: '✓';
    color: var(--teal);
    font-weight: 900;
    margin-right: 8px
}
html {
    scroll-padding-top: 120px;
}

.td-pt-price-cell strong {
    color: var(--main-color);
    font-size: 28px;
    line-height: 1;
}.td-pt-group {
    font-weight: 700;
    color: var(--main-color) !important;
    font-size: 22px !important;
}