/* =================================
   Tour Buttons Wrapper
   ================================= */

.tour-buttons {
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Date + Button Block */

.tour-button-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Date Text */

.tour-date {
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
}

/* =================================
   Base Button Styling
   ================================= */

.tour-buttons .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 18px 42px;
    min-width: 220px;

    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0.5px;

    border-radius: 50px;
    border: 2px solid #000;

    box-shadow:
        inset 0 0 0 2px #fff,
        0 6px 12px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
    overflow: hidden;
}

/* Animated Arrow */

.tour-buttons .btn::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.3s ease;
}

.tour-buttons .btn:hover::after {
    transform: translateX(5px);
}

/* =================================
   Book Now Button
   ================================= */

.btn-book {
    background: linear-gradient(135deg, #b4b3b3, #a00000);
    animation: pulse 3s infinite;
}

.btn-book:hover {
    background: linear-gradient(135deg, #535353, #d00000);
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 2px #fff,
        0 8px 16px rgba(0,0,0,0.35);
}

/* Pulse Animation */

@keyframes pulse {
    0%   { box-shadow: inset 0 0 0 2px #fff, 0 6px 12px rgba(0,0,0,0.25); }
    50%  { box-shadow: inset 0 0 0 2px #fff, 0 8px 16px rgba(122,0,0,0.35); }
    100% { box-shadow: inset 0 0 0 2px #fff, 0 6px 12px rgba(0,0,0,0.25); }
}

/* =================================
   Enquire Button
   ================================= */

.btn-enquire {
    background: linear-gradient(135deg, #000000, #222222);
}

.btn-enquire:hover {
    background: linear-gradient(135deg, #111111, #333333);
    transform: translateY(-3px);
    box-shadow:
        inset 0 0 0 2px #fff,
        0 8px 16px rgba(0,0,0,0.35);
}

/* =================================
   Responsive
   ================================= */

@media (max-width: 768px) {

    .tour-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .tour-button-block {
        width: 100%;
        max-width: 340px;
    }

    .tour-buttons .btn {
        width: 100%;
    }

    .tour-date {
        font-size: 16px;
        margin-bottom: 8px;
    }
}