.tour-heading {
    width: 100%;
    text-align: center;
    padding: clamp(100px, 12vw, 180px) 0;
    background-image: url('../imgs/upcoming-bg.png');
    background-size: cover;
    background-position: center bottom;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(2px);
}

.tour-heading-title {
    position: relative;
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 300;
    letter-spacing: clamp(9px, 1.5vw, 18px);
    margin: 0;
    color: #00ff8c;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.tour-section {
    background: linear-gradient(135deg, rgba(27, 27, 27, 0.95) 0%, rgba(27, 27, 27, 0.9) 100%);
    padding: 60px 0;
    min-height: auto;
}

.past-tours-container {
    margin: clamp(30px, 5vw, 60px) auto;
    padding: 0 20px;
}

/* Table Styling */
.tour-section .table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 254, 120, 0.1);
}

.tour-section table {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 254, 120, 0.2);
    border-collapse: collapse;
    margin-bottom: 0;
}

.tour-section table thead {
    background-color: rgba(0, 254, 120, 0.15);
    border-bottom: 2px solid var(--primary-color);
}

.tour-section table thead th {
    padding: 18px 15px;
    color: var(--primary-color);
    font-weight: 600;
    text-align: left;
    font-size: 15px;
    letter-spacing: 0.5px;
    border: none;
}

.tour-section table tbody tr {
    border-bottom: 1px solid rgba(0, 254, 120, 0.1);
    transition: 0.3s ease;
}

.tour-section table tbody tr:hover {
    background-color: rgba(0, 254, 120, 0.05);
}

.tour-section table th,
.tour-section table td {
    border: none;
    text-align: left;
    font-size: clamp(12px, 1.2vw, 16px);
    padding: 15px;
    color: #fff;
    vertical-align: middle;
}

.tour-section table td {
    border-bottom: 1px solid rgba(0, 254, 120, 0.1);
}

.tour-section table td a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.tour-section table td a:hover {
    text-decoration: underline;
    color: #00ff88;
}

#table-header {
    scroll-margin-top: 150px;
}

/* Responsive Design */
@media (max-width: 767px) {
    .past-tours-container {
        padding: 0 15px;
    }

    .tour-section table thead th {
        padding: 12px 10px;
        font-size: 12px;
    }

    .tour-section table th,
    .tour-section table td {
        padding: 10px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tour-section {
        padding: 40px 0;
    }

    .past-tours-container {
        padding: 0 10px;
        margin: 20px auto;
    }

    .tour-section table thead th {
        padding: 10px 8px;
        font-size: 11px;
    }

    .tour-section table th,
    .tour-section table td {
        padding: 8px 6px;
        font-size: 11px;
    }

    .tour-heading-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
}

/* 
============================================
    PAGINATION CONTAINER START
============================================
*/
.pagination-container {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-container .btn {
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
    cursor: pointer;
    border: 2px solid;
}

.pagination-container .btn-outline-dark {
    color: var(--white);
    border-color: rgba(0, 254, 120, 0.5);
    background-color: transparent;
}

.pagination-container .btn-outline-dark:hover:not(:disabled) {
    border-color: var(--primary-color);
    background-color: rgba(0, 254, 120, 0.1);
    color: var(--primary-color);
}

.pagination-container .btn-dark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    font-weight: 700;
}

.pagination-container .btn-dark:hover {
    background-color: #00ff88;
    border-color: #00ff88;
}

.pagination-container .btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-container .btn i {
    font-size: 16px;
}

@media (max-width: 767px) {
    .pagination-container {
        padding: 30px 15px;
        gap: 8px;
    }

    .pagination-container .btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 40px;
    }

    .pagination-container .btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .pagination-container {
        padding: 20px 10px;
        gap: 6px;
    }

    .pagination-container .btn {
        padding: 7px 10px;
        font-size: 12px;
        min-width: 36px;
    }

    .pagination-container .btn i {
        font-size: 12px;
    }
}
/* PAGINATION CONTAINER END */