/* ============================================
   Move Smooth - Long Distance Page Custom CSS
   ============================================ */

.long-distance-hero {
    background: linear-gradient(rgba(10, 22, 40, 0.85), rgba(10, 22, 40, 0.85)), 
                url('/images/longdistance-hero.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: white;
}

.long-badge {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    letter-spacing: 0.5px;
}

.premium-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.05);
    border-color: rgba(255, 107, 53, 0.2);
}

.premium-card .icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 53, 0.08);
    color: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-light-peach {
    background-color: #fff9f6;
}

.cta-box-inline {
    background: #f8fafc;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
    padding: 24px;
    margin-top: 30px;
}

.cta-box-inline h5 {
    color: var(--primary);
    font-weight: 700;
}

.cta-box-inline a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cta-box-inline a:hover {
    color: var(--primary);
    padding-left: 5px;
}
