﻿
.trip-card {
    display: flex;
    background: white;
    margin: 15px 0px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    align-items: center;
}

.trip-image {
    width: 35%;
    position: relative;
}

    .trip-image img {
        width: 100%;
        height: 284px;
        object-fit: cover;
    }

.excursion-btn {
    position: absolute;
    /* bottom: 102px; */
    left: 10px;
    top: 16px;
    background: linear-gradient(to right, #0066ff, #5c9eff);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trip-details {
    width: 65%;
    padding: 20px;
}

.trip-dates {
    color: #14add9;
    font-size: 16px;
    font-weight: bold;
}

.trip-title {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}

.trip-info {
    font-size: 14px;
    color: #555;
    margin: -2px 0;
}

.round-trip {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 35px;
}

    .round-trip i {
        color: #14add9;
    }

.offer {
    color: green;
    font-size: 14px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0px;
}

    .offer i {
        color: green;
    }

.button-container {
    margin-top: 15px;
    text-align: right;
}

.reveal-btn {
    background: #9b1d9b;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
}

    .reveal-btn:hover {
        background: #7b1587;
    }

@@media (max-width: 768px) {
    .trip-card {
        flex-direction: column;
    }

    .trip-image {
        width: 100%;
    }

    .trip-details {
        width: 100%;
    }

    .button-container {
        text-align: left;
        margin-top: 10px;
    }
}

.trip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Ensures responsiveness */
}

.trip-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0px;
}

.offer {
    font-size: 14px;
    color: #008000;
    display: flex;
    align-items: center;
    gap: 5px; /* Space between icon and text */
}

    .offer i {
        color: #008000;
    }

.reveal-btn {
    background-color: #9b1d9b;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

    .reveal-btn:hover {
        background-color: #7e157e;
    }

.availod {
    color: #0066ff;
}

.terp {
    padding-bottom: 20px;
    color: rgb(0 0 0);
}

.h3crurise {
    text-align: center;
    padding: 28px 0px 12px 0px;
}
.pricing-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    font-family: Arial, sans-serif;
}

.pricing-details {
    text-align: left;
}

.pricing-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: bold;
}

.pricing-value {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #04184b;
    margin: 0;
}

.currency-symbol {
    font-size: 18px;
    font-weight: bold;
    vertical-align: top;
}

.amount {
    font-size: 32px;
    font-weight: bold;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.date-button {
    background-color: #0057FF;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 180px;
}

.itinerary-button:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 94, 220);
    color: rgb(0, 94, 220);
}

.itinerary-button {
    background-color: transparent;
    color: #04184b;
    border: 2px solid #04184b;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 180px;
}

