ul,
ol,
li {
    list-style: none;
    display: block;
    padding: 0;
}

.tour-details-wrapper {
    padding: 20px 0;
}

.breadcrumb a {
    color: var(--para-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--main-color);
}

.tour-gallery {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    position: relative;
    max-height: 420px;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
}

.tour-gallery .tour-img:nth-child(1) {
    grid-area: 1 / 1 / 5 / 4;
}

.tour-gallery .tour-img:nth-child(2) {
    grid-area: 1 / 4 / 5 / 6;
}

.tour-gallery .tour-img:nth-child(3) {
    grid-area: 1 / 6 / 3 / 8;
}

.tour-gallery .tour-img:nth-child(4) {
    grid-area: 3 / 6 / 5 / 8;
}

.tour-gallery .tour-img:nth-child(n + 5) {
    display: none;
}

.tour-gallery.one-item {
    display: block;
}

.tour-gallery.one-item img {
    height: 420px;
    border-radius: 12px;
    object-fit: fill;
}

.tour-gallery.two-item {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 0px;
}

.tour-gallery.two-item>.tour-img:nth-child(1) {
    grid-area: 1 / 1 / 5 / 3;
}

.tour-gallery.two-item>.tour-img:nth-child(2) {
    grid-area: 1 / 3 / 5 / 5;
}

.tour-gallery.two-item img,
.tour-gallery.three-item img {
    height: 300px;
}

.tour-gallery.three-item {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.tour-gallery.three-item>.tour-img:nth-child(1) {
    grid-area: 1 / 1 / 6 / 4;
}

.tour-gallery.three-item>.tour-img:nth-child(2) {
    grid-area: 1 / 4 / 6 / 6;
}

.tour-gallery.three-item>.tour-img:nth-child(3) {
    grid-area: 1 / 6 / 6 / 9;
}

.more-img-overlay {
    padding: 0.5rem 1rem;
    min-width: 50px;
    position: absolute;
    background-color: rgb(255 255 255 / 0.2);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: var(--white-color);
    right: 20px;
    bottom: 30px;
    border: none;
    backdrop-filter: blur(10px);
    border: 2px solid var(--white-color);
}

.more-img-overlay:hover {
    background-color: rgb(0 0 0 / 0.75);
    box-shadow: var(--box-shadow);
}

.product-header {
    margin: 2rem 0;
}

.itinerary-header h2 {
    font-size: 1.5rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--second-color);
    font-size: 16px;
}

.review-count {
    color: var(--para-color);
    font-size: 14px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    grid-column: 1 / -1;
    margin: 0.5rem;
}

.video-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: linear-gradient(white, white) padding-box, linear-gradient(to right, var(--third-color), #3a4ed5) border-box;
    border: 2px solid #fff0
}

.video-box:hover {
    transform: translateY(-8px);
    box-shadow: rgb(0 131 145 / .2) 0 8px 24px
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / .3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease
}

.video-box:hover .video-overlay {
    background: rgb(0 0 0 / .5)
}
video {
    width: 100% !important;
}
.play-button {
    width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgb(0 0 0 / .3)
}

.video-box:hover .play-button {
    transform: scale(1.1);
    background: var(--second-color)
}

.play-button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid var(--main-color);
    border-top: 15px solid #fff0;
    border-bottom: 15px solid #fff0;
    margin-left: 5px
}

.video-box:hover .play-button::before {
    border-left-color: var(--white-color)
}

.video-info {
    padding: 1.5rem;
    background: var(--white-color)
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: .5rem
}

.video-info p {
    font-size: .9rem;
    color: var(--para-color);
    line-height: 1.5
}

.product-title {
    font-size: clamp(1.5rem, 2rem, 1rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--black-color);
}

.product-subtitle {
    color: var(--para-color);
    font-size: 16px;
    margin-bottom: 2rem;
}

.features {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--main-grey);
    border-radius: 8px;
}

.feature-content {
    text-transform: capitalize;
}

.feature-content.cities span {
    margin-right: 10px;
    position: relative;
}

.feature-content.cities span::after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background-color: var(--main-color);
    top: 50%;
    right: -7px;
    border-radius: 50%;
}

.feature-icon {
    font-size: 24px;
    color: var(--main-color);
}

.expandable-section {
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.expandable-section.show .section-content {
    margin-top: 1rem;
    height: 100%;
    opacity: 1;
    visibility: visible;
    overflow: auto;
    transition: 0.5s all ease-in-out;
}

.expandable-section.show .section-header::before {
    transform: rotate(0);
}

.section-header {
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    text-transform: capitalize;
}

.section-header::before {
    width: 2rem;
    height: 2rem;
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 2rem;
    transition: transform 0.3s ease;
    position: absolute;
    right: 20px;
    color: var(--para-color);
    transform: rotate(180deg);
}

.section-content {
    color: var(--para-color);
    line-height: 1.8;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
}

.itinerary-section {
    margin: 3rem 0;
    padding: clamp(1rem, 2rem, 0.5rem);
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid #e8e8e8;
}

.expand-all-btn {
    background: none;
    border: none;
    color: var(--main-color);
    font-size: 14px;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.expand-all-btn:hover {
    background: var(--light-color);
}

.itinerary-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 1rem;
    position: relative;
    border: none;
}

.timeline-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 45px;
    bottom: -16px;
    width: 2px;
    background: #e8e8e8;
}

.timeline-marker {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    content: "";
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' class='chevron' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' class='chevron' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z'/%3E%3C/svg%3E");
}

.accordion-button:not(.collapsed) {
    background-color: var(--main-grey);
}

.accordion-button:focus {
    box-shadow: none;
}

.start-marker,
.end-marker {
    background: var(--main-color);
    border-radius: 50%;
}

.marker-icon {
    color: var(--white-color);
    font-size: 18px;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--main-color);
    border-radius: 50%;
    border: 3px solid var(--white-color);
    box-shadow: 0 0 0 2px var(--main-color);
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.day-item {
    background: var(--white-color);
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-item:hover {
    border-color: var(--main-color);
    box-shadow: 0 2px 8px rgb(0 131 145 / 0.1);
}

.day-header-inline {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
}

.day-label {
    font-weight: 600;
    color: var(--para-color);
    font-size: 14px;
}

.day-title {
    flex: 1;
    font-weight: 600;
    color: var(--black-color);
    font-size: 16px;
}

.day-details {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.activity-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f8f8f8;
}

.activity-item>img {
    width: 35%;
    height: 150px;
    float: right;
    border-radius: 12px;
    margin: 0 0 1rem 1rem;
    object-fit: cover;
}

.activity-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.itinerary-feature img {
    width: 24px;
    height: 24px;
    margin-right: 3px;
}

.itinerary-feature {
    margin-top: 10px;
}

.itinerary-feature span {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
}

.activity-content p {
    color: var(--para-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
}

.activity-content ul {
    padding-left: 1rem;
}

.activity-content ul li {
    color: var(--para-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 5px;
    display: list-item;
    list-style: disc;
}

.include-content,
.exclude-content,
.note-content,
.higlights-content {
    flex: 1;
}

.include-content ul li::before {
    content: "\f00c";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--main-color);
}

.exclude-content ul li::before {
    content: "\58";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: #e74c3c;
}

.note-content ul li::before {
    content: "\f06a";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--para-color);
}

.higlights-content ul li::before {
    content: "\f591";
    font: var(--fa-font-solid);
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--main-color);
}

.include-content ul li,
.exclude-content ul li,
.note-content ul li,
.higlights-content ul li {
    position: relative;
    margin: 0 0 5px 0;
    padding-left: 20px;
}

.accommodation-content {
    flex: 1;
}

.accommodation-content table {
    border: 1px solid rgb(0 0 0 / 0.1);
    border-radius: 12px;
    border-collapse: unset !important;
    margin: 1rem auto;
}

.accommodation-content table tr {
    border-bottom: 1px solid rgb(0 0 0 / 0.5);
    border-collapse: collapse !important;
}

.accommodation-content table tbody tr:nth-child(1) {
    background-color: var(--beige-color);
    color: var(--main-color);
}

.accommodation-content table tbody tr:nth-child(1) td {
    font-size: 16px;
    font-weight: 500;
}

.accommodation-content table td {
    padding: 1rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.1);
}

.booking-sidebar {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.date-selector,
.ticket-selector {
    margin-bottom: 1.5rem;
}

.selector-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.selector {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.selector:focus {
    border-color: var(--main-color);
}

.book-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.book-button:hover {
    transform: translateY(-2px);
}

.cancellation-policy {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    font-size: 14px;
}

.reviews-section {
    margin: 3rem 0;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.overall-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--main-color);
}

.rating-details {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.rating-number {
    min-width: 20px;
    font-size: 14px;
}

.bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--second-color);
    transition: width 0.5s ease;
}

.review-card {
    background: var(--white-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: rgb(0 0 0 / 0.24) 0 3px 8px;
}
.review-describation{
height: 90px;
overflow: hidden;
line-height: 1.5;
height: calc(1.5 * 4em);
}
.review-describation.show{
    height: auto;
    overflow: auto;
}
.review-describation p {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-describation.show p{ 
    text-overflow: initial;
    display: block;
}

.review-more {
    display: none;
    color: var(--main-color);
    cursor: pointer;
    text-decoration: underline;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.reviewer-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.reviewer-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.review-meta {
    font-size: 14px;
    color: var(--para-color);
}
.review-rating {
    display: flex;
    gap: 0.25rem;
    margin: 0.5rem 0;
    align-items: center;
    font-size: 14px;
    color: var(--second-color);
}

.similar-products {
    margin: 3rem 0;
}

.tour-section-title {
    font-size: clamp(1.5rem, 2rem, 1rem);
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--black-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
}

.product-card {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    height: 200px;
    min-width: 100%;
    position: relative;
}

.product-content {
    padding: 1rem;
}

.product-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
}

.sticky-booking {
    position: relative;
    height: 90%;
}

.booking-section {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    max-width: 400px;
    margin-top: 30px;
    margin-left: auto;
    position: sticky;
    top: 130px;
    border: 1px solid #fff0;
    border-top: 5px solid #fff0;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(to right, #3acfd5, #3a4ed5) border-box;
}

.booking-section h2 {
    color: var(--black-color);
    font-size: 24px;
    margin-bottom: 15px;
}

.booking-section img {
    margin-right: 5px;
}

.booking-section label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: var(--para-color);
    font-weight: 500;
}

.booking-section select,
.booking-section input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--main-grey);
    font-size: 16px;
    background-color: var(--main-grey);
    color: var(--black-color);
    cursor: pointer;
}

.booking-section a {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.booking-section button:hover {
    background-color: var(--third-color);
}

.policy {
    display: flex;
    align-items: center;
    background-color: var(--main-grey);
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--black-color);
}

.policy svg {
    margin-right: 10px;
    fill: var(--main-color);
}

.info {
    margin-top: 15px;
    font-size: 14px;
    color: var(--para-color);
}

.info li {
    margin-bottom: 6px;
}

.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white-color);
    box-shadow: 0 -4px 20px rgb(0 0 0 / 0.15);
    padding: 1rem 2rem;
    z-index: 1000;
    border-top: 1px solid #e8e8e8;
}

.mobile-booking-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 1rem;
}

.mobile-price-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-price-label {
    font-size: 12px;
    color: #e74c3c;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.mobile-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black-color);
}

.mobile-book-button {
    background: var(--main-color);
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.mobile-book-button:hover {
    background: var(--third-color);
}

.trip-brochure-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.trip-brochure-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.tour-get-started {
    padding: 1rem 2rem;
    box-shadow: rgb(14 63 126 / 0.04) 0 0 0 1px,
        rgb(42 51 69 / 0.04) 0 11px 1px -0.5px,
        rgb(42 51 70 / 0.04) 1px 8px 3px -1.5px,
        rgb(42 51 70 / 0.04) 0 6px 6px -3px,
        rgb(14 63 126 / 0.04) 0 12px 12px -6px,
        rgb(14 63 126 / 0.04) 0 24px 24px -12px;
    border-radius: 10px;
    margin-top: 1rem;
    background: var(--beige-color);
}

.trip-brochure-banner .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--main-color);
}

.trip-brochure-banner .text h3 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
}

.trip-brochure-banner .text p {
    margin: 0;
    font-size: 14px;
    color: var(--main-color);
    font-weight: 600;
}

.trip-brochure-banner .btn-effect-2 {
    background: var(--main-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.trip-brochure-banner .btn-effect-2:hover {
    background: var(--white-color);
    color: var(--main-color);
}

.table-title {
    margin: 0;
}

.remove-table-btn {
    background: var(--second-color);
    border: none;
    color: var(--white-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.remove-table-btn:hover {
    background: #e59400;
    transform: scale(1.05);
}

.table-responsive {
    border-radius: 10px;
    box-shadow: var(--sharp-box-shadow);
    border: 1px solid rgb(0 0 0 / 0.1);
}

.tour-pricing-table {
    background: var(--white-color);
    border-radius: 0 0 20px 20px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border: none;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.tour-pricing-table thead {
    background: var(--light-color);
    color: var(--black-color);
}

.tour-pricing-table th {
    padding: 1rem;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.tour-pricing-table th::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgb(255 255 255 / 0.2);
}

.tour-pricing-table td {
    padding: 1.1rem;
    vertical-align: middle;
    color: var(--para-color);
    position: relative;
    transition: all 0.3s ease;
}

.tour-pricing-table tr {
    border-bottom: 1px solid var(--main-grey);
    transition: all 0.3s ease;
}

.tour-pricing-table tr:hover {
    background: linear-gradient(90deg, var(--light-color), var(--white-color));
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgb(0 131 145 / 0.05);
}

.row-number {
    font-weight: 600;
    color: var(--black-color);
    font-size: 1.1rem;
    text-align: center;
    width: 60px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--main-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--white-color);
    color: var(--para-color);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 3px rgb(0 131 145 / 0.1);
    transform: scale(1.02);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.remove-row-btn {
    background: var(--second-color);
    border: none;
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.remove-row-btn:hover {
    background: #e59400;
    transform: scale(1.1) rotate(90deg);
}

.add-row-btn {
    background: linear-gradient(135deg, var(--main-color), var(--third-color));
    border: none;
    color: var(--white-color);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem auto;
    display: block;
    width: auto;
}

.add-row-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(0 131 145 / 0.3);
}

.tour-pricing-table tr {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.tour-pricing-table tr:nth-child(1) {
    animation-delay: 0.1s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tour-pricing-table tr:hover .form-input,
.tour-pricing-table tr:hover .form-select {
    border-color: var(--main-color);
}