/* Premium Results Styling - Taxis-Kosten.com */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

.premium-calculator-container {
    font-family: 'Outfit', sans-serif;
}

.premium-result-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #D2B200, #FFD700);
}

.premium-result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.price-display {
    text-align: center;
    margin-bottom: 35px;
}

.price-title {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 12px;
}

.actual-price {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.actual-price span.currency {
    font-size: 32px;
    margin-left: 8px;
    color: #D2B200;
}

.result-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2B200;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Uber Specific Variants */
.uber-result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.uber-badge {
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.uber-service-name {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.premium-uber-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.uber-card-mini {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
}

.uber-card-mini h4 {
    margin: 0 0 15px 0;
    font-size: 18px;
}

.uber-card-mini .price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #333;
}

/* Custom Premium Table */
.custom-premium-table {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: white;
}

.custom-premium-table thead th {
    background: #1a1a1a;
    color: #FFD700;
    border: none;
    padding: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.custom-premium-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-color: #f0f0f0;
    color: #444;
}

.custom-premium-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Trust Signals Grid */
.trust-signals-grid {
    background: #fdfdfd;
    padding: 40px 20px;
    border-radius: 20px;
    margin-top: 40px;
    border: 1px solid #eee;
}

.trust-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    display: inline-block;
}

.trust-item h5 {
    margin-top: 15px;
    color: #1a1a1a;
}

.trust-item p {
    margin-bottom: 0;
}