/* Styling exclusively for B2B Tours Section */
#b2b {
    background-color: var(--light-bg);
}

.b2b-page-hero {
    background: linear-gradient(180deg, var(--navy-blue) 0%, var(--navy-mid) 100%);
    color: var(--white);
    text-align: center;
    padding: 90px 5% 70px;
}
.b2b-page-hero h1 {
    color: var(--gold);
    font-size: 2.6rem;
    margin-bottom: 14px;
}
.b2b-page-hero p {
    color: #E6ECF5;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.b2b-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.b2b-card {
    background: var(--navy-blue);
    color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}
.b2b-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(10,35,66,0.25);
}

.b2b-card .photo-placeholder {
    border-radius: 0;
    aspect-ratio: 16 / 10;
}

.b2b-card-body {
    padding: 30px 26px 32px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.b2b-card-body::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
}

.b2b-tag {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.b2b-card h3 {
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 1.5rem;
}

.b2b-duration {
    display: block;
    color: #A9B8CC;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.b2b-card p.b2b-desc {
    color: #D3D3D3;
    margin-bottom: 18px;
    line-height: 1.6;
}

.b2b-highlights {
    list-style: none;
    margin-bottom: 26px;
    flex: 1;
}
.b2b-highlights li {
    color: #D3D3D3;
    font-size: 0.92rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.4;
}
.b2b-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.b2b-btn {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 3px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
}

.b2b-btn:hover {
    background: var(--gold);
    color: var(--navy-blue);
}
