.tour-page-wrapper {
    background-color: #fcfcfd;
    padding-bottom: 80px;
}

.tour-premium-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.tour-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(39,92,146,0.12);
    border-color: var(--color-primary);
}

.tpc-header {
    background: linear-gradient(145deg, var(--color-primary) 0%, #132545 100%);
    padding: 27px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.tpc-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.tpc-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    display: none;
}

.tpc-tags {
    /* position: absolute; */
    top: 25px;
    right: 25px;
    display: flex;
    gap: 8px;
    z-index: 2;
    margin-bottom: 20px;
}

.tpc-tag {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
    line-height: normal;
}

.tpc-tag.accent {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
}

.tpc-title {
    color: #fff;
    font-size: 1.45rem;
    font-weight: 440;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    line-height: 1.35;
    font-family: var(--font-special);
    letter-spacing: 0.125px;
}

.tpc-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    font-weight: 500;
    font-size: 1rem;
}

.tpc-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tpc-meta i {
    color: var(--color-secondary);
}

.tpc-body {
    padding: 25px 30px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tpc-desc {
    color: #555;
    font-size: 0.99rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.tpc-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tpc-subtitle::before {
    content: '';
    display: block;
    width: 20px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.tpc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 5px 0;
}

.tpc-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tpc-list li i {
    color: var(--color-secondary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.tpc-footer {
    padding: 25px 30px;
    background: #f8fafd;
    background: #f8fbfd;
    border-top: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.tpc-price-box {
    display: flex;
    flex-direction: column;
}

.tpc-price-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tpc-price-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-special);
}

.tpc-price-val span {
    font-size: 1rem;
    font-weight: 600;
    color: #777;
    margin-left: 4px;
}

.tour-page-header {
    margin: 40px auto 60px;
    text-align: center
}

.tour-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
    font-family: var(--font-special);
}

.tour-page-title span {
    color: var(--color-secondary);
}

.tour-page-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.included-box {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.included-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 100%;
    background: var(--color-secondary);
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.06);
    font-size: 1.05rem;
    color: #333;
    font-weight: 500;
}

.included-list li:last-child {
    border-bottom: none;
}

.included-list li i {
    width: 50px;
    height: 50px;
    background: rgba(39,92,146,0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
}
