/* Экран успеха */
.success-screen {
    background: #f5f5f5;
    min-height: 100vh;
    padding: 20px 16px 30px;
}

.success-header {
    text-align: center;
    margin-bottom: 25px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 10px;
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.success-header h1 {
    font-size: 24px;
    color: #333;
    margin: 0;
}

/* Карточка бронирования */
.success-booking-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.success-booking-card h2 {
    font-size: 20px;
    color: #333;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.success-details {
    margin-bottom: 16px;
}

.detail-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-emoji {
    font-size: 20px;
    width: 40px;
}

.detail-text {
    font-size: 16px;
    color: #333;
}

.success-price {
    background: #f0f7f0;
    border-radius: 12px;
    padding: 16px;
    margin-top: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #333;
}

.price-value {
    font-size: 24px;
    font-weight: 700;
    color: #4caf50;
}

.price-note {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    text-align: center;
}

/* Объединенный информационный блок */
.info-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid #667eea;
}

.company-header h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

.manager-info, .pier-info {
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 10px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    min-width: 90px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.info-value {
    color: #333;
    font-size: 15px;
    flex: 1;
}

.info-phone {
    color: #667eea;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.info-tg {
    color: #667eea;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.info-address {
    color: #333;
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
}

.info-phone:hover, .info-tg:hover {
    text-decoration: underline;
}

.btn-navigate {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 10px;
}

.btn-navigate:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Кнопки действий */
.success-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-home {
    width: 100%;
    padding: 16px;
    background: #f0f0f0;
    color: #333;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-home:hover {
    background: #e0e0e0;
}

/* Номер бронирования */
.booking-number {
    text-align: center;
    font-size: 14px;
    color: #999;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.booking-number strong {
    color: #333;
    font-weight: 600;
}