body {
    background-color: var(--lux-light);
    color: var(--lux-text);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 30px;
}

/* HEADER */
.itinerary-header {
    text-align: center;
    padding: 80px 20px 60px;
    background: #fff;
    border-bottom: 1px solid var(--lux-border);
}

.itinerary-header h1 {
    font-family: var(--font-serif);
    font-size: 48px;
    color: var(--lux-dark);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.itinerary-header p {
    font-family: var(--font-sans);
    color: #888;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 16px;
}

/* PACKAGES GRID */
.packages-section {
    padding: 80px 0;
    background: var(--lux-light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
}

/* TOUR CARD */
.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
    text-decoration: none;
    /* In case it gets wrapped in an <a> tag later */
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
}

/* CARD IMAGE */
.tour-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.tour-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.tour-card:hover .tour-img img {
    transform: scale(1.06);
}

.tour-tag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(18, 20, 24, 0.85);
    /* Semi-transparent dark */
    color: #fff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    backdrop-filter: blur(4px);
    /* Glassmorphism touch */
}

/* CARD BODY */
.tour-body {
    padding: 35px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-title {
    font-family: var(--font-serif);
    font-size: 26px;
    color: var(--lux-dark);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.tour-route {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
    /* Pushes footer to the bottom */
}

/* PRICE BOX */
.price-box {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--lux-border);
}

.price-box strong {
    display: block;
    font-size: 28px;
    color: var(--lux-gold);
    margin-top: 5px;
    font-family: var(--font-serif);
    letter-spacing: 0;
    font-weight: 600;
    text-transform: none;
}

.price-box span {
    font-size: 14px;
    color: #A0A0A0;
    font-family: var(--font-sans);
    font-weight: 400;
    text-transform: lowercase;
}

/* CARD FOOTER (BUTTONS) */
.tour-footer {
    display: flex;
    gap: 15px;
    align-items: center;
}

.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid var(--lux-border);
    color: var(--lux-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.call-btn:hover {
    border-color: var(--lux-gold);
    color: var(--lux-gold);
    background: rgba(197, 160, 89, 0.05);
}

.quote-btn {
    flex: 1;
    text-align: center;
    background: var(--lux-dark);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: var(--lux-gold);
    color: #fff;
}

/* EMPTY STATE */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-family: var(--font-serif);
    font-size: 22px;
    color: #999;
    font-style: italic;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .itinerary-header {
        padding: 60px 20px 40px;
    }

    .itinerary-header h1 {
        font-size: 36px;
    }

    .tour-footer {
        flex-wrap: wrap;
    }

    .quote-btn {
        order: -1;
        /* Puts the main CTA on top on mobile */
        width: 100%;
        flex: none;
    }

    .call-btn {
        flex: 1;
        /* Makes the icons share the row below the main CTA */
    }
}