/* Header section - new class names */
.segment-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.heading-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 20px;
}

.segment-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #18593B 0%, #D3CF00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    margin-bottom: 5px !important;
}

.heading-wrapper::before,
.heading-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #18593B, #D3CF00, transparent);
    border-radius: 2px;
}

.heading-wrapper::before {
    right: 100%;
}

.heading-wrapper::after {
    left: 100%;
}

.segment-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Card container - new class name */
.trip-container {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Alternating top border colors - using nth-child */
.trip-container:nth-child(odd) {
    border-top: 3px solid #18593B;
}

.trip-container:nth-child(even) {
    border-top: 3px solid #D3CF00;
}

.trip-container:hover {
    transform: translateY(-20px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
}

/* Photo frame - new class name */
.photo-frame {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: brightness(0.9);
}

.trip-container:hover .photo-frame img {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Status stamp on image - new class name (replaces slot-badge) */
.status-stamp {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 8px 16px;
    min-width: 120px;
    gap: 6px;
}

.status-stamp--full {
    background: blue;
    color: white;
}


.gst-tag {
    position: absolute;
    bottom: 20px;
    right: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    padding: 8px 16px;
    min-width: 120px;
    gap: 6px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

/* .status-stamp--full {
    background: rgba(183, 224, 0, 0.9);
    color: rgb(0, 0, 0);
} */
.gst-bg {
    background: rgba(183, 224, 0, 0.9);
    color: rgb(0, 0, 0);
}

.status-stamp--limited {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.status-stamp--available {
    background: linear-gradient(135deg, #18593B, #0d3d26);
    color: white;
}

/* Info section - new class name */
.info-section {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    background: linear-gradient(145deg, #1e1e1e, #252525);
}

/* Trip type - new class name (replaces tour-category) */
.trip-type {
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 50px;
    margin-bottom: 20px;
    align-self: flex-start;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.trip-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.trip-type--odd {
    background-color: rgba(24, 89, 59, 0.2);
    color: #4ade80;
    border: 1px solid rgba(24, 89, 59, 0.4);
}

.trip-type--even {
    background-color: rgba(211, 207, 0, 0.2);
    color: #D3CF00;
    border: 1px solid rgba(211, 207, 0, 0.4);
}

/* Trip name - new class name (replaces tour-title) */
.trip-name {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 15px;
    color: #fff;
}

.trip-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.trip-name a:hover {
    color: #D3CF00;
}

/* Meta block - new class name */
.meta-block {
    margin-bottom: 15px;
}

/* Date block - new class name (replaces tour-date) */
.date-block {
    display: flex;
    align-items: center;
    color: #bbb;
    font-size: 14px;
}

.date-block i {
    margin-right: 8px;
    color: #D3CF00;
}

/* Capacity indicator - new class name (replaces available-slots) */
.capacity-indicator {
    display: flex;
    align-items: center;
    margin: 5px 0;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid;
}

.capacity-indicator--high {
    border-left-color: #18593B;
}

.capacity-indicator--high i {
    color: #4ade80;
}

.capacity-indicator--low {
    border-left-color: #ff9800;
}

.capacity-indicator--low i {
    color: #ff9800;
}

.capacity-indicator--none {
    border-left-color: #d32f2f;
}

.capacity-indicator--none i {
    color: #f44336;
}

.capacity-indicator i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.capacity-indicator span {
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.capacity-number {
    margin-left: auto;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(135deg, #18593B, #D3CF00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Pricing box - new class name (replaces tour-price) */
.pricing-box {
    background: transparent;
    padding: 0;
    border: none;
}

.pricing-amount {
    /* Fixed: Removed the conflicting 18px !important */
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #18593B 0%, #A49F00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Ensures cross-browser support for transparent text */
    background-clip: text;
    color: transparent;
    display: inline-block;
    letter-spacing: -0.5px;
}

.pricing-location {
    font-size: 14px;
    color: #6c757d;
    /* Fallback text-muted color */
    font-weight: 400;
}

.pricing-location {
    font-size: 1rem;
    color: #aaa;
}

/* Explore CTA - new class name (replaces tour-button) */
.explore-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 10px;
    gap: 8px;
}

.explore-cta--odd {
    background: linear-gradient(90deg, #18593B 0%, #0d3d26 100%);
}

.explore-cta--even {
    background: linear-gradient(90deg, #D3CF00 0%, #a39d00 100%);
    color: #161616;
}

.explore-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.explore-cta:hover::before {
    left: 100%;
}

.explore-cta:hover {
    transform: translateY(-5px);
}

.explore-cta--odd:hover {
    box-shadow: 0 10px 25px rgba(24, 89, 59, 0.4);
}

.explore-cta--even:hover {
    box-shadow: 0 10px 25px rgba(211, 207, 0, 0.4);
}

.explore-cta i {
    transition: transform 0.3s ease;
}

.explore-cta:hover i {
    transform: translateX(5px);
}

/* Section footer - new class name */
.section-footer {
    text-align: center;
    margin-top: 40px;
    color: #888;
    font-size: 0.9rem;
}

.section-footer a {
    color: #D3CF00;
    text-decoration: none;
    transition: color 0.3s;
}

.section-footer a:hover {
    color: #18593B;
}

/* Bootstrap utility overrides */
.object-fit-cover {
    object-fit: cover;
}

.text-theme {
    color: #D3CF00;
}
.text-justify{
    text-align: justify;
}
.h-100 {
    height: 100%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .segment-title {
        font-size: 2.8rem;
    }

    .status-stamp {
        min-width: 110px;
        padding: 7px 14px;
        font-size: 11px;
    }

    .photo-frame {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .segment-title {
        font-size: 2.2rem;
    }

    .heading-wrapper::before,
    .heading-wrapper::after {
        width: 50px;
    }

    .segment-subtitle {
        font-size: 1rem;
    }

    .photo-frame {
        height: 220px;
    }

    .status-stamp {
        min-width: 100px;
        padding: 6px 12px;
        font-size: 10px;
        top: 15px;
        right: 15px;
    }

    .trip-name {
        font-size: 16px;
    }

    .pricing-amount {
        font-size: 15px;
    }

    .explore-cta {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    .capacity-indicator {
        padding: 8px 12px;
    }

    .capacity-number {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .segment-title {
        font-size: 1.8rem;
    }

    .photo-frame {
        height: 200px;
    }

    .info-section {
        padding: 15px;
    }

    .trip-name {
        font-size: 1.3rem;
    }

    .pricing-amount {
        font-size: 1.8rem;
    }

    .explore-cta {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .status-stamp {
        min-width: 90px;
        padding: 5px 10px;
        font-size: 9px;
    }

    .capacity-indicator span {
        font-size: 12px;
    }

    .capacity-number {
        font-size: 14px;
    }
}