div.package-img-group .tg-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8px;
    height: 420px;
    margin-bottom: 40px;
    overflow: visible;
}

div.package-img-group .tg-main {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 420px;
}

div.package-img-group .tg-main > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

div.package-img-group .tg-main > a:first-child img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

div.package-img-group .tg-gallery-btn {
    position: absolute;
    bottom: 14px;
    left: 14px;
    top: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    z-index: 10;
    width: auto;
}

div.package-img-group .tg-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 420px;
}

div.package-img-group .tg-thumb {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
}

div.package-img-group .tg-thumb img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

.tg-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.tg-lightbox:target {
    display: flex;
}

.tg-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.88);
}

.tg-lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tg-lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
    width: auto;
    height: auto;
}

.tg-lightbox-close {
    position: absolute;
    top: -44px;
    right: 0;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    opacity: 0.85;
}

.tg-lightbox-close:hover {
    opacity: 1;
}

.tg-lightbox-prev,
.tg-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 40px;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    line-height: 1;
    transition: background 0.2s;
}

.tg-lightbox-prev:hover,
.tg-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tg-lightbox-prev { left: -64px; }
.tg-lightbox-next { right: -64px; }

.similar-tours-section {
    padding: 0;
    margin-top: 0;
    background: transparent;
}

.similar-tours-heading {
    color: #003a44;
    font-weight: 800;
    font-size: 28px;
}

.similar-tours-grid {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
}

.package-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: visible;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.package-card-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.package-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card-img-wrap:hover img {
    transform: scale(1.04);
}

.package-card-img-wrap .batch {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
}

.package-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content-top {
    flex-grow: 1;
}

.package-card-title {
    margin-bottom: 12px;
    min-height: 50px;
    line-height: 1.4;
    font-size: 20px;
}

.package-card-title a {
    color: #006b6b;
    text-decoration: none;
    font-weight: 700;
}

.package-card-title a:hover {
    color: #003a44;
}

.card-content-bottom {
    margin-top: auto;
    border-top: 1px dashed #ddd;
    padding-top: 15px;
}

.price-area {
    margin-bottom: 15px;
}

.price-from-label {
    font-size: 12px;
    color: #777;
    margin: 0 0 5px 0;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #003a44;
}

.price-note {
    font-size: 10px;
    color: #999;
    margin: 0;
    font-weight: bold;
}

.book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1b4e54;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    gap: 10px;
    transition: background 0.2s ease;
}

.book-btn:hover {
    background: #003a44;
    color: #fff;
}

@media (max-width: 768px) {
    div.package-img-group .tg-wrap {
        grid-template-columns: 1fr;
        height: auto;
    }

    div.package-img-group .tg-main {
        height: 260px;
    }

    div.package-img-group .tg-thumbs {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
        height: 80px;
    }

    .tg-lightbox-prev { left: -10px; }
    .tg-lightbox-next { right: -10px; }
}

.tour-header-area {
    display: flex;
    flex-direction: column;
}

.tour-header-area .tour-gallery-row {
    order: 1;
}

.tour-header-area .tour-title-row {
    order: 2;
    margin-top: 20px;
}